|
Getting Access to Documentation Under Linux
IntroductionOne potential problem that the new user to Linux faces is that there are lots of new commands, features, applications and other items to learn about. Often there is a limit to what one can be expected to take in. What Documentation is ForSo to give you a hand remembering which commands to use, and any options they take, there is online documentation. The online documentation is just an aid to learning, not intended as an alternative to getting experience the hard way, taking a course or having a tame Linux guru on hand. You have been warned!
The man CommandThe most powerful and useful command available is 'man' (manual). In its simplest form, one simply types 'man' and then the name of the man page. For instance brings up the man page of the wc (word count) program. man also has some very basic searching facilities. For instance the command brings up on my system. The content of the man pages is arranged in a highly technical fashion. To be blunt, man pages can seem impenetrable to the neophyte. One important facet of man pages is the way in which they are laid out. There are sections: NAME, DESCRIPTION, OPTIONS, FILES and BUGS are some standard ones. These can be helpful: if you just want to locate the program's configuration files, type: in the man commands page to search forward for the FILES section and the answer should be there. When man pages refer to other man pages (which they often do) they say something like This means that the page for 'kill' it is referring to is in section 2 of the manual. There is more than one kill man page, do a
and see what I mean. To get the kill man page from section 2, do
Other SourcesThe man page system is very comprehensive, but often it's not enough. Here are some other sources you can tap on your Linux system and on the Net. emacs Info FilesIf you have the bulky and complex emacs system installed, run emacs and press the key sequence ctrl-H I and it should drop you into the emacs info browser. Some documentation contained in there is very good--for instance, on the make command./usr/doc FilesOn all Linux distributions, there is a tremendous amount of miscellaneous documentation dumped into the /usr/doc/ directory. Each package makes its own directories under /usr/doc and puts things like FAQs and installation notes in there.LDP
On the Internet there are lots of sources of information. One central semi-official clearing house is the 'Linux documentation project'. HOWTO FilesAt http://sunsite.unc.edu/LDP/HOWTO/ (or an Internet mirror perhaps a little closer to you), the HOWTO files are held. There are 'HOWTO's detailing how to set up various aspects of your Linux system. Some are good, some are old and outdated, but they are worth a look because of their simple, recipe-based approach.
SummaryHope you find what you are looking for! Be sure to check out the related items at left.
|