Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Switch to a command-line terminal (tty5) by pressing Ctrl+Alt+F5 and log in to the terminal using the user name of root and the password of

  1. Switch to a command-line terminal (tty5) by pressing Ctrl+Alt+F5 and log in to the terminal using the user name of root and the password of LINUXrocks!.

  2. At the command prompt, type cat /etc/services and press Enter to view the /etc/services file. Next, type cat /etc/services | less at the command prompt and press Enter to perform the same task page-by-page. Explain what the | metacharacter does in the previous command. How is this different from the less /etc/services command?

  3. At the command prompt, type cat /etc/services | grep NFS and press Enter. How many lines are displayed? Why did you not need to specify a filename with the grep command?

  4. At the command prompt, type cat /etc/services | grep NFS | tr F f and press Enter. Explain the output on the terminal screen.

  5. At the command prompt, type cat /etc/services | grep NFS | tr F f | sort r and press Enter. Explain the output on the terminal screen.

  6. At the command prompt, type cat /etc/services | grep NFS | tr F f | sort r | tee file and press Enter. Explain the output on the terminal screen. Next, type cat file at the command prompt and press Enter. What are the contents? Why? What does the tee command do in the pipe above?

  7. At the command prompt, type cat /etc/services | grep NFS | tr F f | sort r | tee file | wc l and press Enter. Explain the output on the terminal screen. Next, type cat file at the command prompt and press Enter. What are the contents and why?

  8. At the command prompt, type cat /etc/services | grep NFS | tr F f | sort r | sed /udp/d | sed /tcp/s/mount/MOUNT/g and press Enter. Explain the output on the terminal screen. Can this output be obtained with the grep and tr commands instead of sed?

  9. At the command prompt, type cat /etc/hosts. Next, type cat /etc/hosts | awk /localhost/ {print $1, $3} and press Enter. Explain the output on the terminal screen.

  10. Type exit and press Enter to log out of your shell.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

The Database Experts Guide To Database 2

Authors: Bruce L. Larson

1st Edition

0070232679, 978-0070232679

More Books

Students also viewed these Databases questions