Open the manual pages with one command and resolve questions about commands, library calls and system behavior. 08.04.2026 | reading time: 2 min The `man` command opens the system manual pages and is the fastest way to read authoritative documentation for commands, system calls and library functions; use it first when a command behaves unexpectedly or when a syntax detail is missing. Hands-on example Type `man ls` to open the manual for the ls command; in the page you will find a NAME line showing that ls lists directory contents and a SYNOPSIS section that shows common usage and options, for example the `-l` option for long format. Search and locate When you do not know the exact name use `man -k network` to search the short descriptions or `man -f hostname` to display the whatis entry; use `man -a printf` to cycle through all sections with entries named printf if duplicates exist. Format and control output Control where man looks with `MANPATH` or `man -M /usr/local/share/man`, change the pager via `man -P less`, and produce printer-ready output with `man -t command` which formats the page with groff for printing or conversion to PostScript. Useful companions Complement man with `apropos` for keyword searches, `whatis` for one-line summaries and `info` for some packages that provide more tutorial-style documentation, and remember that manual sections group pages like user commands, library calls and kernel interfaces. Next steps Start using man as your daily reference and combine it with practice on a live system to build muscle memory; consider deepening skills toward certifications such as CompTIA Linux+ or LPIC-1 and use bitsandbytes.academy for intensive exam preparation. Join Bits & Bytes Academy First class LINUX exam preparation. utilities troubleshooting scripting