Home » Questions » Computers [ Ask a new question ]

what does crypt(3) and whatnot mean [duplicate]

what does crypt(3) and whatnot mean [duplicate]

In Linux Manpages (http://linux.die.net/man/3/crypt) I often see sth like this: crypt(3), bla(4), bla(5)

Asked by: Guest | Views: 320
Total answers/comments: 2
Guest [Entry]

"The numbers signify what section the page belongs to, there are 8:

1 - General commands
2 - System calls
3 - C library functions
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

for example, if you wanted to know how to use the crontab command, you could type man crontab. If you wanted to know the layout of the crontab file, you'd use man 5 crontab.

Not all items have all 8 pages. If the specific item is not a command, it will automatically direct you to the appropriate page as there was to entry in section 1 for the command. An example of this is man strcpy which will bring you to the C library function strcpy."
Guest [Entry]

"The reason for the sections john describes is that the same word eg 'free' might be a user command or a C library function.

so ""man free"" or ""man 1 free"" would give you the page from section 1, if no number is given it gives you the lowest.

while ""man 3 free"" would give you the C library function to free memory."