Getting Help?
They say: "a true linux operator never use internet for any help!"
I wondered what in the world does that line means. After understanding the basics and that whole documentation and explanation is provided in Linux itself, I realized the significance of phrase.
where simple internet search will give you a lots of simple solutions, but on the other hand facts are that neither you will get any internet access on any good production environment due to security reasons and nor you can validate the authenticity of the commands/solutions provided on any blog/forum with your version of linux you work on.
So, it is always best practice to stand up and get help to yourself from the system itself.
Help tools:
manual page:
A man page (short for manual page) is a form of online software documentation usually found on a Unix or Unix-like operating system. Topics covered include computer programs (including library and system calls), formal standards and conventions, and even abstract concepts.
How to access/read man pages
- man command: To read a manual page for a Unix command - "man <command_name>"
The syntax for accessing the non-default manual section varies between different man implementations. On Linux and BSD derivatives, for example, the syntax for reading printf(3C) is: "man 3 printf
"
The manual is generally split into eight numbered sections, organized as follows (on Research Unix, BSD, OS X and Linux):
| Section | Description |
|---|---|
| 1 | General commands |
| 2 | System calls |
| 3 | Library functions, covering in particular the C standard library |
| 4 | Special files (usually devices, those found in /dev) and drivers |
| 5 | File formats and conventions |
| 6 | Games and screensavers |
| 7 | Miscellanea |
| 8 | System administration commands and daemons |
All man pages follow a common layout that is optimized for presentation on a simple ASCII text display, possibly without any form of highlighting or font control. Sections present may include:
NAME
The name of the command or function, followed by a one-line description of what it does.
SYNOPSIS
In the case of a command, a formal description of how to run it and what command line options it takes. For program functions, a list of the parameters the function takes and which header file contains its definition.
DESCRIPTION
A textual description of the functioning of the command or function.
EXAMPLES
Some examples of common usage.