Summary
This chapter discussed some of the more advanced bash commands used by Linux system administrators and programmers. The ps
and top
commands are vital in determining the status of the system, allowing you to see what applications are running and how many resources they are consuming.
In this day of removable media, another popular topic for system administrators is mounting storage devices. The mount
command allows you to mount a physical storage device into the Linux virtual directory structure. To remove the device, use the umount
command.
Finally, the chapter discussed various utilities used for handling data. The sort
utility easily sorts large data files to help you organize data, and the grep
utility allows you to quickly scan through large data files looking for specific information. Several file compression utilities are available in Linux, including gzip
and zip
. Each one allows you to compress large files to help save space on your filesystem. The Linux tar
utility is...