Using Essential Tools
Oct 29, 2025
Search man pages
man -k {search-string}
Filter for user commands
man -k {search-string} | grep 1
Filter for admin commands
man -k {search-string} | grep 8
Lab Exercise
- Find the man section that contains admin commands
- Find the man section that contains user commands
- Find the man section that contains system calls
- Locate the man page that shows how to set a password
- Locate a man page that shows how to export an NFS share
Solution
man man-> section 8man man-> section 1man man-> section 2man -k password | grep '(1)'man -k nfs | grep export
- Clint Jordan