Chapter 10. Finding the online documentation

Table of Contents
The info system
The man command
Interactive help
Documentation available on the world wide web

The info system

The info system is started from emacs with C-h i. (Pressing C-h gives the text "C-h (Type ? for further options)-", then press i.) This give the "Directory node" where the different topics may be selected with the middle mouse button.

This is (among other things) the best way to access documentation for the C library which is at the basis of the Unix/Linux system. Either scroll down to "GNU libraries" and "Libc" and select with the middle button or press m (which gives the text "Menu item: ") and write libc.


The man command

The man command gives access to the traditional Unix manual pages.

To read the man pages with emacs type M-x. In the input window after "M-x" type man<RET>. When the text "Manual entry:" appears type the command of interest, e.g. ls.

To read the man pages from a shell:

$ man ls
The output is then put out through more and you can therefore scroll forward and backward as described in Chapter 3.


Interactive help

Many programs contain facilities for on-line help, some, e.g., gnuplot use a command-line oriented interactive help system. Others, e.g., some GNOME applications use a GUI oriented help system activated by choosing Help.


Documentation available on the world wide web

One good place to look at is The Linux Documentation Project Homepage.