vote up 12 vote down star
1

For example, when I run man ioctl the page says IOCTL(2) at the top. What does that mean? Is there an IOCTL(1)? And how does one navigate between these?

flag

52% accept rate

3 Answers

vote up 29 vote down check

It's the man page section. From memory, section 1 is user programs, 2 is system calls, and 3 is standard C library calls, and 5 is file formats.

Wikipedia has the full explanation here.

link|flag
+1. This puzzled me for years. ... ( ere long WikiPedia existed of course ) – Oscar Reyes Feb 25 at 20:51
The man page section was very useful in days of printed manuals. I still have the 4.1 BSD printed manuals in my office. (The section number also helps you know when you're calling into the kernel, versus making a library call.) – Craig S Feb 25 at 21:58
@Craig - also useful for disambiguating, as shown in eduffy's answer. – Paul Tomblin Feb 25 at 22:06
vote up 0 vote down

Here's a list of what the man page sections refer to.

http://www.december.com/unix/ref/mansec.html

link|flag
vote up 18 vote down

That's the man page section number. For example

 man printf

(should) Give you section 1, printf the bash command, while

 man 3 printf

gives you the C function printf.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.