-rw-r--r-- 1 root root 2324 Aug 16 2004 shape.dtd
-rw-r--r-- 1 root root 501 Aug 16 2004 sheet.dtd
-rw-r--r-- 1 root root 1379 Aug 19 2004 THANKS
-rw-r--r-- 1 root root 2545 Aug 16 2004 TODO
$ less KNOWN_BUGS
The less command will enable you to scroll through the specified file (
Note that this directory also contains a
4.2.2. What About...
4.2.2.1. ...printing a manpage?
The man command's -t option will format a page into PostScript; you can then send the PostScript output to your printer with the command
$ man -t ls | lpr
4.2.2.2. ...making a PDF or HTML version of a manpage?
It's easy to convert manpages into PDF or HTML formats.
For PDF, use the -t option with man and then pipe the PostScript output into the
$ man -t ls | ps2pdf -
The commands to convert a manpage to HTML are more complex:
$ zcat $(man --path
This uses man --path to find the compressed, unformatted manual page;
4.2.3. Where Can I Learn More?
Other sources of information about Fedora and Linux:
? The Fedora Project at RedHat: http://fedora.redhat.com/
? The Fedora Project Wiki: http://fedoraproject.org/wiki/
? The Fedora Forums: http://www.fedoraforum.org/
? Links to Linux-related news at LinuxToday: http://linuxtoday.com/
? O'Reilly Network: http://www.oreillynet.com/
4.3. Managing Files
A large part of system administration involves dealing with files and directories: creating directories, copying files, moving files and directories around, and deleting them. Fedora provides a powerful set of tools for managing files from the shell prompt as well as graphically.
4.3.1. How Do I Do That?
Linux, like most modern operating systems, uses a tree-like hierarchy to store and organize files. To manage files effectively, extend the hierarchy to organize your data.
4.3.1.1. Understanding Linux directory names
Fedora's master directory (or
For each user, one directory is designated as the
The root directory is always the same system-wide; the home directory is consistent for a particular user, but varies from user to user; and the current working directory is unique to each process and can be changed anytime.
A
Table 4-4. Absolute, Relative, and Relative-to-Home pathnames
Scheme |
---|