F5F Stay Refreshed Software Operating Systems Someone can assist with these tasks in Linux.

Someone can assist with these tasks in Linux.

Someone can assist with these tasks in Linux.

Pages (2): 1 2 Next
T
69
10-29-2016, 06:35 AM
#1
I understand all the instructions, but I’m unsure how to implement them on these projects. Let me clarify with an example: I know a cat comedy that shows file contents. In task 5, I need to write /etc/cpuinfo into file3. Using the cat command and redirecting it to file3 helps. Before doing this, I realized the cat command can achieve this even though I wasn’t familiar with its full capabilities online. On the web, people describe commands but rarely show step-by-step guidance for practical tasks. Could someone walk through these actions one by one? It would really help me when working on a Linux server at school. We need to know file handling, so mastering these steps is essential. Thank you ahead of time.
T
Th3PumpkinKing
10-29-2016, 06:35 AM #1

I understand all the instructions, but I’m unsure how to implement them on these projects. Let me clarify with an example: I know a cat comedy that shows file contents. In task 5, I need to write /etc/cpuinfo into file3. Using the cat command and redirecting it to file3 helps. Before doing this, I realized the cat command can achieve this even though I wasn’t familiar with its full capabilities online. On the web, people describe commands but rarely show step-by-step guidance for practical tasks. Could someone walk through these actions one by one? It would really help me when working on a Linux server at school. We need to know file handling, so mastering these steps is essential. Thank you ahead of time.

J
JewishJustin
Member
95
11-03-2016, 03:08 AM
#2
It looks like you're trying to apply these concepts but haven't fully grasped the task. You mentioned you already know the basics—cat, bash redirection, diff, head, tail, sort, etc.—but need practical experience. Also, some instructions seem unclear, like "File 4 save / dev / sda." Try testing them in a virtual environment to see what happens.
J
JewishJustin
11-03-2016, 03:08 AM #2

It looks like you're trying to apply these concepts but haven't fully grasped the task. You mentioned you already know the basics—cat, bash redirection, diff, head, tail, sort, etc.—but need practical experience. Also, some instructions seem unclear, like "File 4 save / dev / sda." Try testing them in a virtual environment to see what happens.

T
terminator578
Member
63
11-07-2016, 08:41 PM
#3
If you focus only on a couple, it’s simple, but this seems like you’re reusing homework and asking for help. To grasp BASH and scripting, practice building them yourself. Launch a VM and attempt the tasks independently. Observing someone run "cat file1.txt | wc -w" doesn’t guarantee understanding of their approach or why it works. Keep in mind that appending text with ">>" writes to a file, pipes channel output between commands (like using grep or wc), and chaining commands with "&&" lets them execute sequentially.
T
terminator578
11-07-2016, 08:41 PM #3

If you focus only on a couple, it’s simple, but this seems like you’re reusing homework and asking for help. To grasp BASH and scripting, practice building them yourself. Launch a VM and attempt the tasks independently. Observing someone run "cat file1.txt | wc -w" doesn’t guarantee understanding of their approach or why it works. Keep in mind that appending text with ">>" writes to a file, pipes channel output between commands (like using grep or wc), and chaining commands with "&&" lets them execute sequentially.

J
JohnMaiI
Member
67
11-09-2016, 08:38 PM
#4
Honestly, it goes against the rules to request someone else to complete your work. But if you're struggling with a specific part, feel free to ask for help. Just make sure you're genuinely interested in understanding the material rather than seeking shortcuts.
J
JohnMaiI
11-09-2016, 08:38 PM #4

Honestly, it goes against the rules to request someone else to complete your work. But if you're struggling with a specific part, feel free to ask for help. Just make sure you're genuinely interested in understanding the material rather than seeking shortcuts.

P
pedro_tkf
Senior Member
643
11-09-2016, 09:52 PM
#5
Not a homework assignment here.
P
pedro_tkf
11-09-2016, 09:52 PM #5

Not a homework assignment here.

B
BobbyGamer13
Junior Member
48
11-10-2016, 05:49 AM
#6
I understand. I’ll take on tasks I’m familiar with and let you know if I need clarification.
B
BobbyGamer13
11-10-2016, 05:49 AM #6

I understand. I’ll take on tasks I’m familiar with and let you know if I need clarification.

S
Salty_Cactus1
Member
205
11-15-2016, 03:14 AM
#7
To understand the process, focus on completing assignments through school exams rather than doing them at home. A diploma is earned after passing a formal assessment.
S
Salty_Cactus1
11-15-2016, 03:14 AM #7

To understand the process, focus on completing assignments through school exams rather than doing them at home. A diploma is earned after passing a formal assessment.

P
pennyboobkid
Junior Member
39
11-15-2016, 03:23 AM
#8
Apologies for the confusion earlier. As you observed, it seemed quite clear. Occasionally, dishonest individuals are involved. (It appears you simply transferred all the questions from the sheet to this post.) Although we can't be certain, we must rely on what we see. Sorry you were marked as one of those careless people. Still, I’m fully open to sharing any information I have, though I believe some of these questions might be solvable on your own. For the rest, feel free to reach out. (They pointed at the rest of the forum—they know Linux.)
P
pennyboobkid
11-15-2016, 03:23 AM #8

Apologies for the confusion earlier. As you observed, it seemed quite clear. Occasionally, dishonest individuals are involved. (It appears you simply transferred all the questions from the sheet to this post.) Although we can't be certain, we must rely on what we see. Sorry you were marked as one of those careless people. Still, I’m fully open to sharing any information I have, though I believe some of these questions might be solvable on your own. For the rest, feel free to reach out. (They pointed at the rest of the forum—they know Linux.)

T
Thomastbj
Junior Member
9
11-15-2016, 03:51 AM
#9
You're just beginning these tasks and wondering if your approach is correct. In task 6, you should save /dev/sda to a file named file4. The terminal indicates the operation is proceeding, but the process continues. For other files, such as /proc/cpuinfo, you can see processor details written to the text file, and the terminal confirms the process has completed. Refer to the photos for a clearer understanding.
T
Thomastbj
11-15-2016, 03:51 AM #9

You're just beginning these tasks and wondering if your approach is correct. In task 6, you should save /dev/sda to a file named file4. The terminal indicates the operation is proceeding, but the process continues. For other files, such as /proc/cpuinfo, you can see processor details written to the text file, and the terminal confirms the process has completed. Refer to the photos for a clearer understanding.

O
OMGitsTITAN
Junior Member
14
11-18-2016, 10:37 PM
#10
You can use the top command to view processes up to a certain limit. To see processes 1 through 50, run 'top -h' or 'top -n 50' depending on your system. This will display the first 50 running processes in the terminal.
O
OMGitsTITAN
11-18-2016, 10:37 PM #10

You can use the top command to view processes up to a certain limit. To see processes 1 through 50, run 'top -h' or 'top -n 50' depending on your system. This will display the first 50 running processes in the terminal.

Pages (2): 1 2 Next