Personal tools
You are here: Home Docs Help! Reference Manuals Debian Reference

Debian Reference

Note: Return to reference manual view.

This Debian Reference is intended to provide a broad overview of the Debian system as a post-installation user's guide.

1. Preface

This Debian Reference is intended to provide a broad overview of the Debian system as a post-installation user's guide. Its target reader is someone who is willing to read shell scripts. I expect the reader to have gained basic skills in Unix-like systems prior to reading this document.

1.1. Official document

General Information

The latest official document is in the Debian archives with the package name debian-reference-en and is also available from http://www.debian.org/doc/manuals/debian-reference/.

The latest development version is http://qref.sourceforge.net/Debian/. The project is hosted at http://qref.sourceforge.net/, where this document is available for download in plain text, HTML, PDF, SGML, and PostScript formats.

1.2. Document conventions

This Debian Reference provides information through short bash shell commands.

Here are the conventions used:

     # command in root account
     $ command in user account
     ... description of action

These shell command examples use PS2=" ". See Bash – GNU standard interactive shell, Section 13.2.1 for more information on bash.

Reference to:

  • a UNIX-style manual page is given in the form: bash(1).

  • a GNU TEXINFO page is given in the form: info libc.

  • a book is given in the form: The C Programming Language.

  • a URL is given in the form: http://www.debian.org/doc/manuals/debian-reference/.

  • a file on the system is given in the form: file:///usr/share/doc/Debian/reference/.

The following abbreviations are used:

Other abbreviations are defined in the text before they are used.

In this document only URL references are given for LDP documents. However, LDP documents have been packaged for Debian; when the packages are installed the documents are available in file:///usr/share/doc/HOWTO/.

See References, Section 15.1.

1.3. Example scripts

-

Example scripts which accompany this document in the debian-reference-en package are available in file:///usr/share/doc/Debian/reference/examples/. The initial "." in the filenames of hidden files is converted to underscore "_". An additional extension has been added to filenames when several alternatives are provided.

1.4. Basic setup

-

If the system is installed with the bare minimum of packages and you want to make the best use of this document then it is advisable to execute the following commands in order to install other packages containing useful documents:

     # aptitude install mc less ssh vim kernel-package \
                       manpages-dev doc-debian doc-linux-text \
                       debian-policy developers-reference maint-guide \
                       apt-howto harden-doc debian-reference \
                       libpam-doc glibc-doc samba-doc exim4-doc-html

1.5. Basics of the Debian distributions

Debian maintains three different distributions simultaneously.

These are:

  • testing — The preferred distribution for a workstation since it contains recent releases of desktop software which have received a bit of testing. See The testing distribution, Section 2.1.4.

When packages in unstable have no release-critical (RC) bugs filed against them after the first week or so, they are automatically promoted to testing.

Debian distributions also have code names as described in Debian distribution codenames, Section 2.1.7. Before Sarge was released in June 2005, the three distributions were Woody (stable), Sarge (testing), and Sid (unstable). After Sarge was released the three distributions were, respectively, Sarge, Etch, and Sid. When Etch is released, the stable and unstable distributions will be Etch and Sid; a new testing distribution will then be created (initially as a copy of stable) and given a new code name.

Subscribe to the low-volume mailing list debian-devel-announce@lists.debian.org for important announcements about Debian. See The Debian archives, Section 2.1.

If you want to use versions of packages that are more current than the versions that were released with the distribution you are using, then you can either upgrade to a later distribution as described in Upgrading a distribution to stable, testing, or unstable, Chapter 5, or you can upgrade only selected packages. If the package can't be upgraded easily then you may want to backport it as described in Port a package to the stable system, Section 6.4.10.

Tracking the testing distribution can have the side effect of delaying the installation of packages containing security fixes. Such packages are uploaded to unstable and migrate to testing only after a delay.

If you mix distributions, e.g., testing with stable or unstable with stable, you will eventually pull in core packages such as libc6 from testing or unstable and there is no guarantee that these will not contain bugs. You have been warned.

Running the testing or unstable distribution increases your risk of hitting serious bugs. This risk can be managed by deploying a multibooting scheme with a more stable Debian distribution or by deploying the nice trick of using chroot as described in chroot, Section 8.6.35. The latter will enable running different Debian distributions simultaneously on different consoles.

After an explanation of the fundamentals of the Debian distribution in Debian fundamentals, Chapter 2, you will be given some basic information to help you live happily with the latest software, taking advantage of the testing and unstable distributions of Debian. The impatient should proceed immediately to Debian survival commands, Section 6.3. Happy upgrading!

2. Debian fundamentals

This chapter provides fundamental information on the Debian system for non-developers.

2.1. The Debian archives

-

2.1.1. Directory structures

-

The software that has been packaged for Debian is available in one of several directory trees on each Debian mirror site through FTP or HTTP.

The following directories can be found on each Debian mirror site under the debian directory:

dists/:

This directory contains the "distributions", and this used to be the canonical way to access the currently available packages in Debian releases and pre-releases. Some old packages, the Contents-*.gz and Packages.gz files are still in here.

pool/:

The new physical location for all packages of Debian releases and pre-releases.

tools/:

DOS utilities for creating boot disks, partitioning your disk drive, compressing/decompressing files, and booting Linux.

doc/:

The basic Debian documentation, such as the FAQ, the bug reporting system instructions, etc.

indices/:

The Maintainers file and the override files.

project/:

mostly developer-only materials, such as:

project/experimental/:

This directory contains packages and tools which are still being developed, and are still in the alpha testing stage. Users shouldn't be using packages from here, because they can be dangerous and harmful even for the most experienced.

project/orphaned/:

Packages that have been orphaned by their old maintainers, and withdrawn from the distribution.


 
 

2.1.2. Debian distributions

-

Normally there are three Debian distributions in the dists directory. They are named the stable distribution, the testing distribution, and the unstable distribution. Sometimes there was also a frozen distribution (currently it is just a development stage of the testing distribution). Each distribution is defined as a symlink to the actual directory with a codename in the dists directory.

2.1.3. The stable distribution

-

Package entries for the stable distribution, Debian Etch (4.0), are recorded into the stable (symlink to etch/) directory:

  • stable/main/: This directory contains the package versions belonging to the most recent official release of the Debian system.

    These packages are all free; that is, they all comply with the Debian Free Software Guidelines (DFSG) (also available as file:///usr/share/doc/debian/social-contract.txt installed by debian-doc).

  • stable/non-free/: This directory contains packages that fail to qualify as free according to the DFSG.

    For example, some packages have licenses that prohibit commercial distribution. Others can be redistributed but are shareware.

  • stable/contrib/: Each package in this directory is itself DFSG-free but somehow Depends on a package that is not DFSG-free.

Now, in addition to the above locations, nowadays physical packages are located under the pool directory (The pool directory, Section 2.1.10).

The current status of stable distribution bugs is reported on the Stable Problems web page.

2.1.4. The testing distribution

-

Package entries for the testing distribution, Debian Lenny, are recorded into the testing (symlink to lenny/) directory after they have undergone some degree of testing in unstable. Nowadays physical packages are located under the pool directory (The pool directory, Section 2.1.10). There are also main, contrib, and non-free subdirectories in testing/, which serve the same functions as in stable/.

These packages must be in sync on all architectures where they have been built and must be installable; they must also have fewer release-critical bugs than the versions currently in unstable. This way, we hope that testing is always close to being a release candidate. More details of the testing mechanism are at http://www.debian.org/devel/testing.

The latest status of the testing distribution is reported at these sites:

2.1.5. The unstable distribution

-

Package entries for the unstable distribution, always codenamed "Sid", are recorded into the unstable (symlink to sid/) directory after they are uploaded to the Debian archive and stay here until they are moved to testing/. Nowadays physical packages are located under the pool directory (The pool directory, Section 2.1.10). There are also main, contrib, and non-free subdirectories in unstable/, which serve the same functions as in stable/.

The unstable distribution contains a snapshot of the most current development system. Users are welcome to use and test these packages, but are warned about their state of readiness. The advantage of using the unstable distribution is that you are always up-to-date with the latest in the Debian software project—but if it breaks, you get to keep both parts. :-)

The current status of unstable distribution bugs is reported on the Unstable Problems web page.

2.1.6. The frozen distribution

-

When the testing distribution is mature enough, it becomes frozen, meaning no new code is accepted anymore, just bugfixes, if necessary. Also, a new testing tree is created in the dists directory, assigned a new codename. The frozen distribution passes through a few months of testing, with intermittent updates and deep freezes called "test cycles".

We keep a record of bugs in the frozen distribution that can delay a package from being released or bugs that can hold back the whole release. Once that bug count lowers to maximum acceptable values, the frozen distribution becomes stable, it is released, and the previous stable distribution becomes obsolete (and moves to the archive).

2.1.7. Debian distribution codenames

-

Physical directory names in the dists directory, such as etch/ and lenny/, are just "codenames". When a Debian distribution is in the development stage, it has no version number, but a codename instead. The purpose of these codenames is to make the mirroring of the Debian distributions easier. (If unstable would be a real directory and it's name would suddenly change to stable/, a lot of stuff would have to be needlessly downloaded again).

Currently, stable/ is a symbolic link to etch/, and testing/ is a symbolic link to lenny/. This means that Etch is the current stable distribution and Lenny is the current testing distribution.

unstable/ is a permanent symbolic link to sid/, as Sid is always the unstable distribution.

2.1.8. Codenames used in the past

-

Codenames that have already been used are: "Buzz" for release 1.1, "Rex" for release 1.2, "Bo" for releases 1.3.x, "Hamm" for release 2.0, "Slink" for release 2.1, "Potato" for release 2.2, "Woody" for release 3.0, and "Sarge" for release 3.1.

2.1.9. The source for codenames

-

So far they have been characters taken from the movie Toy Story by Pixar.

  • Buzz (Buzz Lightyear) was the spaceman,

  • Rex was the tyrannosaurus,

  • Bo (Bo Peep) was the girl who took care of the sheep,

  • Hamm was the piggy bank,

  • Slink (Slinky Dog) was the toy dog,

  • Potato was, of course, Mr. Potato Head,

  • Woody was the cowboy,

  • Sarge was a leader of the Green Plastic Army Men,

  • Etch (Etch-a-Sketch) was the blackboard,

  • Sid was a boy next door who destroyed toys.

2.1.10. The pool directory

-

Historically, packages were kept in the subdirectory of dists corresponding to the distribution that contained them. This turned out to cause various problems, such as large bandwidth consumption on mirrors when major changes were made.

Packages are now kept in a large "pool", structured according to the name of the source package. To make this manageable, the pool is subdivided by section (main, contrib, and non-free) and by the first letter of the source package name. These directories contain several files: the binary packages for each architecture, and the source packages from which the binary packages were generated.

You can find out where each package is placed by executing a command like apt-cache showsrc mypackagename and looking at the "Directory:" line. For example, the apache packages are stored in pool/main/a/apache/. Since there are so many lib* packages, these are treated specially: for instance, libpaper packages are stored in pool/main/libp/libpaper/.

The dists directories are still used for the index files used by programs like apt.

Normally, you won't have to worry about any of this, as new apt and probably older dpkg-ftp will handle it seamlessly. If you want more information, see the RFC: implementation of package pools.

2.1.11. Historical notes about Sid

-

When the present-day Sid did not exist, the Debian archive site organization had one major flaw: there was an assumption that when an architecture was created in the current unstable/, it would be released when that distribution became the new stable. For many architectures that wasn't the case, with the result that those directories had to be moved at release time. This was impractical because the move would chew up lots of bandwidth.

The archive administrators worked around this problem for several years by placing binaries for unreleased architectures in a special directory called sid. When an architecture was released the first time there was a link from the current stable/ to sid/, and from then on they were created inside the unstable/ tree as usual. This layout was somewhat confusing to users.

With the advent of package pools (see The pool directory, Section 2.1.10) during the Woody distribution development, binary packages began to be stored in a canonical location in the pool, regardless of the distribution, so releasing a distribution no longer causes large bandwidth consumption on the mirrors (there is, however, a lot of gradual bandwidth consumption throughout the development process).

2.1.12. Uploaded packages in incoming/

-

Uploaded packages are first located at http://incoming.debian.org/ after being checked to insure that they really come from a Debian developer (and are put in the DELAYED subdirectory in the case of a Non-Maintainer Upload (NMU)). Once a day, they are moved out of incoming/ to unstable/.

In an emergency, you may want to install packages from incoming/ before they reach unstable/.

2.1.13. Retrieving an older package

-

While the most recent Debian distributions are kept under the debian directory on each Debian mirror site, archives for older Debian distributions such as Slink are kept on http://archive.debian.org/ or under the debian-archive directory on each Debian mirror site.

Older testing and unstable packages can be located at http://snapshot.debian.net/.

2.1.14. Architecture sections

-

Within each of the major directory trees (dists/stable/main, dists/stable/contrib, dists/stable/non-free, dists/unstable/main, etc.), the binary package entries reside in subdirectories whose names indicate the chip architecture for which they were compiled.

  • binary-all/, for packages which are architecture-independent. These include, for example, Perl scripts, or pure documentation.

  • binary-platform/, for packages which execute on a particular binary platform.

Please note that the actual binary packages no longer reside in these directories, but in the top-level pool directory. The index files (Packages and Packages.gz) have been kept, though, for backwards compatibility.

For the actual binary architectures supported, see the Release Notes for each distribution. They can be located at the Release Notes sites for stable and testing.

2.1.15. The source code

-

Source code is included for everything in the Debian system. Moreover, the license terms of most programs in the system require that source code be distributed along with the programs, or that an offer to provide the source code accompany the programs.

Normally the source code is distributed in the source directories, which are parallel to all the architecture-specific binary directories, or more recently in the pool directory (see The pool directory, Section 2.1.10). To retrieve the source code without having to be familiar with the structure of the Debian archive, try a command like apt-get source mypackagename.

Some packages, notably pine, are only available in a source package due to their licensing limitations. (Recently the pine-tracker package has been provided to facilitate Pine installation.) The procedures described in Port a package to the stable system, Section 6.4.10 and Packaging, Section 13.10 provide ways to build a package manually.

Source code may or may not be available for packages in the contrib and non-free directories, which are not formally part of the Debian system.

2.2. The Debian package management system

-

2.2.1. Overview of Debian packages

-

Packages generally contain all of the files necessary to implement a set of related commands or features. There are two types of Debian packages:

  • Binary packages, which contain executables, configuration files, man/info pages, copyright information, and other documentation. These packages are distributed in a Debian-specific archive format (see Debian package format, Section 2.2.2); they are usually distinguished by having a .deb file extension. Binary packages can be unpacked using the Debian utility dpkg; details are given in its manual page.

  • Source packages, which consist of a .dsc file describing the source package (including the names of the following files), a .orig.tar.gz file that contains the original unmodified source in gzip-compressed tar format, and usually a .diff.gz file that contains the Debian-specific changes to the original source. The utility dpkg-source packs and unpacks Debian source archives; details are provided in its manual page.

Installation of software by the package system uses "dependencies" which are declared by the package maintainers. These dependencies are documented in the control file associated with each package. For example, the package containing the GNU C compiler (gcc) Depends on the package binutils which includes the linker and assembler. If a user attempts to install gcc without having first installed binutils, the package management system (dpkg) will print an error message that it also needs binutils, and stop installing gcc. (However, this facility can be overridden by the insistent user; see dpkg(8).) For additional details, see Package dependencies, Section 2.2.8 below.

Debian's packaging tools can be used to:

  • manipulate and manage packages or parts of packages,

  • aid the user in the splitting of packages that must be transmitted through a limited-size medium such as floppy disks,

  • aid developers in the construction of package archives, and

  • aid users in the installation of packages which reside on a remote Debian archive site.

2.2.2. Debian package format

-

A Debian "package", or a Debian archive file, contains the executable files, libraries, and documentation associated with a particular program suite or set of related programs. Normally, a Debian archive file has a filename that ends in .deb. [1]

The internals of this Debian binary package format are described in the deb(5) manual page. Because this internal format is subject to change (between major releases of Debian), always use dpkg-deb(1) for manipulating .deb files.

Through at least the Sarge distribution, all Debian archive files have been manipulable by the standard Unix commands ar and tar, even when dpkg commands are not available.

2.2.3. Naming conventions for Debian package filenames

-

The Debian package filenames conform to the following convention:

     foo_ver-rev_arch.deb

where, usually, foo is the package name, ver is the upstream version number, rev is the Debian revision number, and arch is the target architecture. Files are easily renamed, of course. You can find out what package is really contained in any given file of name filename by running the following command:

     dpkg --info filename

The Debian revision number is specified by the Debian developer or by whoever built the package. A change in revision number usually indicates that some aspect of the packaging has changed.

2.2.4. Preservation of local configuration

-

Files that are intended to be changeable by the local administrator are kept in /etc/. Debian policy dictates that all changes to locally configurable files be preserved across package upgrades.

If a default version of a locally configurable file is shipped in the package itself then the file is listed as a "conffile". The package management system does not upgrade conffiles that have been changed by the administrator since the package was last installed without getting the administrator's permission. On the other hand, if the conffile has not been changed by the administrator then the conffile will be upgraded along with the rest of the package. This is almost always desirable and so it is advantageous to minimize changes to conffiles.

To list the conffiles belonging to a package run the following command:

     dpkg --status package

The list follows the "Conffiles:" line.

For more information about conffiles you can read the section of the Debian Policy Manual entitled "Configuration files". (See References, Section 15.1).

2.2.5. Debian maintenance scripts

-

Debian maintenance scripts are executable scripts which are automatically run before or after a package is installed. Along with a file named control, all of these files are part of the "control" section of a Debian archive file.

The individual files are:

preinst

This script executes before its package is unpacked from its Debian archive (.deb) file. Many "preinst" scripts stop services for packages which are being upgraded until their installation or upgrade is completed (following the successful execution of the "postinst" script).

postinst

This script typically completes any required configuration of a package once it has been unpacked from its Debian archive (.deb) file. Often, "postinst" scripts ask the user for input, and/or warn the user that if he accepts default values, he should remember to go back and reconfigure the package as the situation warrants. Many "postinst" scripts then execute any commands necessary to start or restart a service once a new package has been installed or upgraded.

prerm

This script typically stops any daemons which are associated with a package. It is executed before the removal of files associated with the package.

postrm

This script typically modifies links or other files associated with a package, and/or removes files created by it. (Also see Virtual packages, Section 2.2.7.)

Currently all of the control files can be found in the directory /var/lib/dpkg/info. The files relevant to package foo begin with the name "foo" and have file extensions of "preinst", "postinst", etc., as appropriate. The file foo.list in that directory lists all of the files that were installed with the package foo. (Note that the location of these files is a dpkg internal, and may be subject to change.)

2.2.6. Package priorities

-

Each Debian package is assigned a priority by the distribution maintainers, as an aid to the package management system. The priorities are:

  • Required packages are necessary for the proper functioning of the system.

    This includes all tools that are necessary to repair system defects. You must not remove these packages or your system may become totally broken and you may not even be able to use dpkg to restore things. Systems with only the Required packages are probably inadequate for most purposes, but they do have enough functionality to allow the sysadmin to boot and install more software.

  • Important packages should be found on any Unix-like system.

    Other packages without which the system will not run well or be usable will carry this priority. This does not include Emacs or X11 or TeX or any other large applications. These packages only constitute the bare infrastructure.

  • Standard packages are standard on any Linux system, including a reasonably small but not too limited character-mode system.

    This is what will install by default if users do not select anything else. "Standard" does not include many large applications, but it does include Emacs (this is more a piece of infrastructure than an application) and a reasonable subset of TeX and LaTeX (if this turns out to be possible without X).

  • Optional packages include all those that you might reasonably want to install even if you are unfamiliar with them, and if you don't have specialized requirements.

    This includes X11, a full TeX distribution, and lots of applications.

  • Extra packages either conflict with others with higher priorities, have little use to users who are unfamiliar with them, or have specialized requirements that make them unsuitable for "Optional".

Please note the differences among "Priority: required", "Section: base" and "Essential: yes" in the package description. "Section: base" means that this package is installed before everything else on a new system. Most of the packages in "Section: base" have the "Priority: required" or at least "Priority: important", and many of them are tagged with "Essential: yes". "Essential: yes" means that this package requires to specify an extra force option to the package management system such as dpkg when removing from the system. For example, libc6, mawk, and makedev are "Priority: required" and "Section: base" but are not "Essential: yes".

2.2.7. Virtual packages

-

A virtual package is a generic name that applies to any one of a group of packages, all of which provide similar basic functionality. For example, both the tin and trn programs are news readers, and either one should therefore satisfy the need of a program that requires a news reader on the system in order to be useful. They are therefore both said to Provide the "virtual package" called news-reader.

Similarly, many packages such as exim, exim4, sendmail, and postfix, provide the functionality of a mail transport agent. They are therefore said to Provide the virtual package mail-transport-agent. If either one is installed, then any program that Depends on the installation of a mail transport agent will be satisfied by the existence of this virtual package.

Debian has a mechanism such that, if more than one package which Provides the same virtual package is installed on a system, the system administrator can set one as the preferred package. The relevant command is update-alternatives, and is described further in Alternative commands, Section 6.5.3.

2.2.8. Package dependencies

-

The Debian packaging system handles dependency declarations which are used to express the fact that one package requires another package to be installed in order to work or in order to work better.

  • Package A Depends on Package B if B absolutely must be installed in order to use A. In some cases, A Depends not only on B, but on a specific version of B. In this case, the version dependency is usually a lower limit, in the sense that A Depends on any version of B more recent than some specified version.

  • Package A Recommends Package B if the package maintainer judges that most users would not want A without also having the functionality provided by B.

  • Package A Suggests Package B if B contains files that are related to and enhance the functionality of A. The same relationship is expressed by declaring that Package B Enhances Package A.

  • Package A Conflicts with Package B when A will not operate properly if B is installed on the system. "Conflicts" status is often combined with "Replaces".

  • Package A Replaces Package B when files installed by B are removed or overwritten by files in A.

  • Package A Provides Package B when all of the files and functionality of B are incorporated into A.

More detailed information on the use of each these terms can be found in the Packaging Manual and the Policy Manual.

Note that aptitude and dselect have more fine-grained control over packages specified by Recommends and Suggests than apt-get, which simply pulls all the packages specified by Depends and leaves all the packages specified by Recommends and Suggests. Both programs in modern form use APT as their back end.

2.2.9. The meaning of "Pre-Depends"

-

dpkg always configures a package upon which another package Depends before it configures the package that Depends on it. However, dpkg normally unpacks archive files in arbitrary order, independently of dependencies. (Unpacking consists of extracting files from the archive file and putting them in the right place.) If, however, a package Pre-Depends on another then the other package is unpacked and configured before the one that Pre-Depends is even unpacked. [2] The use of this dependency is kept to a minimum.

2.2.10. Package status

-

Package status can be "unknown", "install", "remove", "purge", or "hold". These "want" flags indicate what the user wanted to do with a package (either by making choices in the "Select" section of dselect, or by directly invoking dpkg).

Their meanings are:

  • unknown - the user has never indicated whether he wants the package.

  • install - the user wants the package installed or upgraded.

  • remove - the user wants the package removed, but does not want to remove any existing configuration files.

  • purge - the user wants the package to be removed completely, including its configuration files.

  • hold - the user wants this package not to be processed, i.e., he wants to keep the current version with the current status, whatever that is.

2.2.11. Holding back packages from an upgrade

-

There are two mechanisms for holding back packages from an upgrade, through dpkg, or, beginning with Woody, through APT.

With dpkg, first export the list of package selections:

     dpkg --get-selections \* > selections.txt

Then edit the resulting file selections.txt, changing the line containing the package you wish to hold, e.g. libc6, from this:

     libc6                       install

to this:

     libc6                       hold

Save the file, and reload it into dpkg database with:

     dpkg --set-selections < selections.txt

Or, if you know the package name to hold, simply run:

     echo libc6 hold | dpkg --set-selections

This procedure holds packages at the install process of each package file.

The same effect can be obtained through dselect. Simply enter the [S]elect screen, find the package you wish to hold in its present state, and press the `=' key (or `H'). The changes will take effect immediately after you exit the [S]elect screen.

The APT system in the Woody distribution has a new alternative mechanism for holding packages during the archive retrieval process using Pin-Priority. See the manual page apt_preferences(5), along with http://www.debian.org/doc/manuals/apt-howto/ or the apt-howto package.

2.2.12. Source packages

-

Source packages are distributed in a directory called source, and you can either download them manually, or use

     apt-get source foo

to fetch them (see the apt-get(8) manual page on how to set up APT for doing that).

2.2.13. Building binary packages from a source package

-

For a package foo, you will need all of foo_*.dsc, foo_*.tar.gz, and foo_*.diff.gz to compile the source (note: there is no .diff.gz for a Debian native package).

Once you have them, if you have the dpkg-dev package installed, the command

     $ dpkg-source -x foo_version-revision.dsc

will extract the package into a directory called foo-version.

Issue the following command to build the binary package:

     $ cd foo-version
     $ su -c "apt-get update ; apt-get install fakeroot"
     $ dpkg-buildpackage -rfakeroot -us -uc

Then,

     # su -c "dpkg -i ../foo_version-revision_arch.deb"

to install the newly built package. See Port a package to the stable system, Section 6.4.10.

2.2.14. Creating new Debian packages

-

For detailed information on creating new packages, read the New Maintainers' Guide, available in the maint-guide package, or at http://www.debian.org/doc/manuals/maint-guide/.

2.3. Upgrading a Debian system

One of Debian's goals is to provide a smooth, secure and reliable upgrade process. The packaging system alerts the administrator to important changes and sometimes asks the administrator to take decisions.

2.3.1. dpkg

-

This is the main program for manipulating package files; read dpkg(8) for a full description.

dpkg comes with several primitive supplemental programs.

  • dpkg-deb: Manipulate .deb files. dpkg-deb(1)

  • dpkg-ftp: An older package file retrieval command. dpkg-ftp(1)

  • dpkg-mountable: An older package file retrieval command. dpkg-mountable(1)

  • dpkg-split: Splits a large package into smaller files. dpkg-split(1)

dpkg-ftp and dpkg-mountable have been superseded by the introduction of the APT system.

2.3.2. APT

-

APT (the Advanced Packaging Tool) is an advanced interface to the Debian packaging system consisting of several programs whose names typically begin with "apt-". apt-get, apt-cache, and apt-cdrom are the command-line tools for handling packages. These also function as the user's "back end" programs to other tools, such as dselect and aptitude. Currently aptitude is the preferred tool for system maintenance.

For more information, install packages apt and aptitude and read aptitude(8), apt-get(8), apt-cache(8), apt-cdrom(8), apt.conf(5), sources.list(5), and apt_preferences(5).

An alternative source of information is the APT HOWTO. This can be installed by apt-howto at file:///usr/share/doc/Debian/apt-howto/.

apt-get upgrade and apt-get dist-upgrade pull only the packages listed under "Depends:" and overlook all the packages listed under "Recommends:" and "Suggests:". To avoid this, use dselect.

2.3.3. dselect

-

This program is a menu-driven user interface to the Debian package management system. It is particularly useful for first-time installations and large-scale upgrades. See dselect, Section 6.2.4.

For more information, read dselect Documentation for Beginners.

2.3.4. Upgrading a running system

-

The kernel (filesystem) in Debian systems supports replacing files even while they're being used. When packages are upgraded any services provided by those packages are restarted if they are configured to run in the current runlevel. The Debian system does not require use of the single-user mode to upgrade a running system.

2.3.5. Downloaded and cached .deb archive file

-

If you have manually downloaded package files to your disk (which is not absolutely necessary, see above for the description of dpkg-ftp or APT), then after you have installed the packages, you can remove the .deb files from your system.

If APT is used, these files are cached in the /var/cache/apt/archives directory. You may erase them after installation (apt-get clean) or copy them to another machine's /var/cache/apt/archives directory to save downloading during subsequent installations.

2.3.6. Record-keeping for upgrades

-

dpkg keeps a record of the packages that have been unpacked, configured, removed, and/or purged, but does not (currently) keep a log of terminal activity that occurred while a package was being so manipulated.

The simplest way to work around this is to run your dpkg, dselect, apt-get, etc., sessions within the script(1) program.

2.4. The Debian boot process

-

2.4.1. The init program

-

Like all Unixes, Debian boots up by executing the program init. The configuration file for init (which is /etc/inittab) specifies that the first script to be executed should be /etc/init.d/rcS.

What happens next depends on whether the sysv-rc package or the file-rc package is installed. The following assumes that the sysv-rc package is installed. (file-rc contains its own /etc/init.d/rcS script and uses a file instead of symlinks in rc directories to control which services are started in which runlevels.)

The /etc/init.d/rcS file from the sysv-rc package runs all of the scripts in /etc/rcS.d/ in order to perform initialization such as checking and mounting file systems, loading modules, starting the network services, setting the clock, and so on. Then, for compatibility, it also runs all the files (except those with a `.' in the filename) in /etc/rc.boot/. The latter directory is reserved for system administrator use, and using it is deprecated. See System initialization, Section 9.1 and System run levels and init.d scripts in the Debian Policy Manual for more info.

Debian does not use a BSD-style rc.local directory.

2.4.2. Runlevels

-

After completing the boot process, init starts all services that are configured to run in the default runlevel. The default runlevel is given by the entry for id in /etc/inittab. Debian ships with id=2.

Debian uses the following runlevels:

  • 1 (single-user mode),

  • 2 through 5 (multiuser modes), and

  • 0 (halt the system),

  • 6 (reboot the system).

Runlevels 7, 8, and 9 can also be used but their rc directories are not populated when packages are installed.

Switch runlevels using the telinit command.

When entering a runlevel all scripts in /etc/rcrunlevel.d/ are executed. The first letter in the name of the script determines the way in which the script is run: scripts whose names begin with K are run with the argument stop. Scripts beginning with S are run with the argument start. The scripts are run in the alphabetical order of their names; thus "stop" scripts are run before "start" scripts and the two-digit numbers following the K or S determine the order in which the scripts are run.

The scripts in /etc/rcrunlevel.d are in fact just symbolic links back to scripts in /etc/init.d/. These scripts also accept "restart" and "force-reload" as argument; the latter methods can be used after a system has been booted in order to restart services or force them to reload their configuration files.

For example:

     # /etc/init.d/exim4 force-reload

2.4.3. Customizing runlevels

-

Customizing runlevels is an advanced system administration task. The following advice holds for most services.

To enable service service in runlevel R create the symbolic link /etc/rcR.d/Sxyservice with target ../init.d/service. The sequence number xy should be the sequence number that was assigned to the service when the package was installed.

To disable the service, rename the symbolic link so that its name begins with a K instead of with an S and its sequence number is 100 minus xy.

It is convenient to use a runlevel editor such as sysv-rc-conf or ksysv for these purposes.

It is possible to delete the S symlink for a service in a particular runlevel directory instead of renaming it. This does not disable the service but leaves it in a "floating" state as far as the sysv-rc init system is concerned: on runlevel changes the service will be neither started nor stopped but will be left as it was, whether running or not running. Note, however, that a service left in such a floating state will be started if its package is upgraded whether or not it was running before the upgrade. This is a known shortcoming of the current Debian system. Note also that you should retain a service's K symlinks in runlevels 0 and 6. If you delete all the symlinks for a service then on upgrade the service's package will restore the symlinks to their factory default state.

It is not advisable to make any changes to symlinks in /etc/rcS.d/.

2.5. Supporting diversity

-

Debian offers several avenues to accommodate any wishes of the system administrator without breaking the system.

Any files under /usr/local/ belong to the system administrator and Debian will not touch them. Most files under /etc/ are conffiles and Debian will not overwrite them upon upgrade unless the system administrator requests so explicitly.

2.6. Internationalization

-

The Debian system is internationalized and provides support for character display and entry in many languages, both within the console and under X. Many documents, manual pages, and system messages have been translated into a growing number of languages. During installation, Debian prompts the user to choose an installation language (and sometimes a local language variant).

If your installed system does not support all the language features you need, or if you need to change languages or install a different keyboard to support your language, see Localization (l10n), Section 9.7.

2.7. Debian and the kernel

-

2.7.1. Compiling a kernel from non-Debian source

-

One has to understand the Debian policy with respect to headers.

The Debian C libraries are built with the most recent stable releases of the kernel headers.

For example, the Debian-1.2 release used version 5.4.13 of the headers. This practice contrasts with the Linux kernel source packages distributed at all Linux FTP archive sites, which use even more recent versions of the headers. The kernel headers distributed with the kernel source are located in /usr/include/linux/include/.

If you need to compile a program with kernel headers that are newer than those provided by libc6-dev, then you must add -I/usr/src/linux/include/ to your command line when compiling. This came up at one point, for example, with the packaging of the automounter daemon (amd). When new kernels changed some internals dealing with NFS, amd needed to know about them. This required the inclusion of the latest kernel headers.

2.7.2. Tools to build custom kernels

-

Users who wish to (or must) build a custom kernel are encouraged to download the package kernel-package. This package contains the script to build the kernel package, and provides the capability to create a Debian kernel-image package just by running the command

     # make-kpkg kernel_image

in the top-level kernel source directory. Help is available by executing the command

     # make-kpkg --help

and through the manual page make-kpkg(1) and The Linux kernel under Debian, Chapter 7.

Users must separately download the source code for the most recent kernel (or the kernel of their choice) from their favorite Linux archive site, unless a kernel-source-version package is available (where version stands for the kernel version). The Debian initrd boot script requires a special kernel patch called initrd; see http://bugs.debian.org/149236.

Detailed instructions for using the kernel-package package are given in the file /usr/share/doc/kernel-package/README.gz.

2.7.3. Special provisions for dealing with modules

-

Debian's modconf package provides a shell script (/usr/sbin/modconf) which can be used to customize the configuration of modules. This script presents a menu-based interface, prompting the user for particulars on the loadable device drivers in his system. The responses are used to customize the file /etc/modules.conf (which lists aliases, and other arguments that must be used in conjunction with various modules) through files in /etc/modutils/, and /etc/modules (which lists the modules that must be loaded at boot time).

Like the (new) Configure.help files that are now available to support the construction of custom kernels, the modconf package comes with a series of help files (in /usr/share/modconf/) which provide detailed information on appropriate arguments for each of the modules.

2.7.4. De-installing an old kernel package

-

The kernel-image-NNN.prerm script checks to see whether the kernel you are currently running is the same as the kernel you are trying to de-install. Therefore you can safely remove unwanted kernel image packages using this command:

     # dpkg --purge --force-remove-essential kernel-image-NNN

(Replace NNN with your kernel version and revision number, of course.)

3. Debian System installation hints

Although this chapter was initially written during the days of the Potato installer, most of the contents have been updated to the Woody installer and they are very similar installers.

3.1. General Linux system installation hints

Running the testing or unstable distribution increases the risk of hitting serious bugs.

3.1.1. Hardware compatibility basics

-

Linux is compatible with most PC hardware and can be installed to almost any system. For me it was as easy as installing Windows 95/98/Me. The hardware compatibility list just seems to keep growing.

If you have a laptop PC, check Linux on Laptops for installation pointers by brand and model.

My recommendation for desktop PC hardware is "Just be conservative":

  • SCSI rather than IDE for work, IDE/ATAPI HD for private use.

  • IDE/ATAPI CD-ROM (or CD-RW).

  • PCI rather than ISA, especially for the network card (NIC).

  • Use a cheap NIC. Tulip for PCI, NE2000 for ISA are good.

  • Avoid PCMCIA (notebook) as your first Linux install.

  • No USB keyboard, mouse, ... unless you want a challenge.

If you have a slow machine, yanking out the hard drive and plugging it into another faster machine for installation is a good idea.

3.1.2. Determining a PC's hardware and chip set

-

During installation, one will be asked to identify the hardware or chip set of the PC. Sometimes that information may not seem easy to find. Here is one method:

  • Open your PC's case and look inside.
  • Record the product ID codes on the large chips on the graphics card, network card, chip near serial ports, chip near IDE ports.
  • Record card names printed on the back of the PCI and ISA cards.

3.1.3. Determining a PC's hardware via Debian

-

The following commands on a Linux system should give some idea of actual hardware and configuration.

     $ pager /proc/pci
     $ pager /proc/interrupts
     $ pager /proc/ioports
     $ pager /proc/bus/usb/devices

These commands can be run during the install process from the console screen by pressing Alt-F2.

After the initial installation, with the installation of optional packages such as pciutils, usbutils, and lshw, you can obtain more extensive system information.

     $ lspci -v |pager
     $ lsusb -v |pager
     # lshw  |pager

Typical uses of interrupts:

  • IRQ0: timer output (8254)

  • IRQ1: keyboard controller

  • IRQ2: cascade to IRQ8–IRQ15 on PC-AT

  • IRQ3: secondary serial port (io-port=0x2F8) (/dev/ttyS1)

  • IRQ4: primary serial port (io-port=0x3F8) (/dev/ttyS0)

  • IRQ5: free [sound card (SB16: io-port=0x220, DMA-low=1, DMA-high=5)]

  • IRQ6: floppy disk controller (io-port=0x3F0) (/dev/fd0, /dev/fd1)

  • IRQ7: parport (io-port=0x378) (/dev/lp0)

  • IRQ8: rtc

  • IRQ9: software interrupt (int 0x0A), redirect to IRQ2

  • IRQ10: free [network interface card (NE2000: io-port=0x300)]

  • IRQ11: free [(SB16-SCSI: io-port=0x340, SB16-IDE: io-port=0x1E8,0x3EE)]

  • IRQ12: PS/2 Mouse

  • IRQ13: free (was 80287 math coprocessor)

  • IRQ14: primary IDE controller (/dev/hda, /dev/hdb)

  • IRQ15: secondary IDE controller (/dev/hdc, /dev/hdd)

For old non-PnP ISA cards, you may want to set IRQ5, IRQ10, and IRQ11 as non-PnP from the BIOS.

For USB devices, device classes are listed in /proc/bus/usb/devices as Cls=nn:

  • Cls=00 : Unused

  • Cls=01 : Audio (speaker etc.)

  • Cls=02 : Communication (MODEM, NIC, ...)

  • Cls=03 : HID (Human Interface Device: KB, mouse, joystick)

  • Cls=07 : Printer

  • Cls=08 : Mass storage (FDD, CD/DVD drive, HDD, Flash, ...)

  • Cls=09 : Hub (USB hub)

  • Cls=255 : Vendor specific

If the device class of a device is not 255, Linux supports the device.

3.1.4. Determining a PC's hardware via other OSs

-

Hardware information can also be obtained from other OSs:

Install another commercial Linux distribution. Hardware detection on those tends to be better than on Debian as of now. (This situation should even out once debian-installer is introduced with Sarge.)

Install Windows. Hardware configuration can be obtained by right-clicking "My Computer" to get to Properties / Device Manager. Record all resource information such as IRQ, I/O port address, and DMA. Some old ISA cards may need to be configured under DOS and used accordingly.

3.1.5. A Lilo myth

-

"Lilo is limited to 1024 cylinders." Wrong!

The newer lilo used after Debian Potato has lba32 support. If the BIOS of your motherboard is recent enough to support lba32, lilo should be able to load beyond the old 1024-cylinder limitation.

Just make sure to add a line reading "lba32" somewhere near the beginning of your lilo.conf file if you have kept an old lilo.conf. See file:///usr/share/doc/lilo/Manual.txt.gz.

3.1.6. GRUB

-

The new boot loader grub from the GNU Hurd project can be installed on a Debian Woody system:

     # apt-get update
     # apt-get install grub-doc
     # mc file:///usr/share/doc/grub-doc/html/
     ... read contents
     # apt-get install grub
     # pager file:///usr/share/doc/grub/README.Debian.gz
     ... read it :)

To edit the GRUB menu, edit /boot/grub/menu.lst. See Setting GRUB boot parameters, Section 8.1.6 for how to set boot parameters during the boot process since it is slightly different from lilo configuration.

3.1.7. Choice of boot floppies

-

For Potato, I liked the IDEPCI disk set for normal install to a desktop. For Woody, I like the bf2.4 boot disk set. They both use a version of boot-floppies to create boot floppies.

If you have a PCMCIA network card, you need to use the standard boot disk set (largest number of floppies but all driver modules available) and configure the NIC in the PCMCIA setup; do not try to set up an NIC card in the standard network setup dialog.

For special systems, you may need to create a custom rescue disk. This can be done by replacing the kernel image named "linux" on the Debian rescue disk by overwriting it with another compressed kernel image compiled off-site for the machine. Details are documented in readme.txt on the rescue disk. The rescue floppy uses the MS-DOS filesystem, so you can use any system to read and edit it. This should make life easier for people with a special network card, etc.

For Sarge, debian-installer and/or pgi is expected to be used for creating boot floppies.

3.1.8. Installation

-

Follow the official instructions found in http://www.debian.org/releases/stable/installmanual or http://www.debian.org/releases/testing/installmanual (work in progress, sometimes this may not exist).

If you are installing a system using boot-floppies in the testing distribution, you may need to open a console terminal during the install process by pressing Alt-F2 and manually edit /etc/apt/sources.list entries, changing "stable" to "testing" to adjust APT sources.

I tend to install lilo into places like /dev/hda3, while installing mbr into /dev/hda. This minimizes the risk of overwriting boot information.

Here is what I choose during the install process.

  • MD5 passwords "yes"

  • shadow passwords "yes"

  • Install "advanced" (dselect **) and select

    • Exclude emacs (if selected), nvi, tex, telnet, talk(d);

    • Include mc, vim, either one of nano-tiny or elvis-tiny.

      See dselect, Section 6.2.4. Even if you are an Emacs fan, avoid it now and be content with nano during install. Also avoid installing other large packages such as TeX (Potato used to do this) at this stage. See Rescue editors, Section 11.2 for the reason for installing nano-tiny or elvis-tiny here.

  • All configuration questions = "y" (replace current) during each package install dialog.

  • exim: select 2 for machine since I send mail through my ISP's SMTP server.

For more information on dselect, see dselect, Section 6.2.4.

3.1.9. Hosts and IP to use for LAN

-

Example of LAN configuration (C subnet: 192.168.1.0/24):

     Internet
        |
        +--- External ISP provides POP service (accessed by fetchmail)
        | 
       Access point ISP provides DHCP service and SMTP relay service
        |                     :
       Cable modem         (Dialup)
        |                     :
     LAN Gateway machine external port: eth0 (IP given by ISP's DHCP)
      use old notebook PC (IBM Thinkpad, 486 DX2 50MHz, 20MB RAM)
      run Linux 2.4 kernel with ext3 filesystem.
      run "ipmasq" package (with stronger patch, NAT, and firewall)
      run "dhcp-client" package configured for eth0 (override DNS setting)
      run "dhcp" package configured for eth1
      run "exim" as the smarthost (mode 2)
      run "fetchmail" with a long interval (fallback)
      run "bind" as the cache nameserver for Internet from LAN
                 as authoritative nameserver for LAN domain from LAN
      run "ssh" on port 22 and 8080 (connect from anywhere)
      run "squid" as the cache server for the Debian archive (for APT)
     LAN Gateway machine internal port: eth1 (IP = 192.168.1.1, fixed)
                              |
              +--- LAN Switch (100base T) ---+
              |                              |
     Some fixed IP clients on LAN     Some DHCP clients on LAN
     (IP = 192.168.1.2-127, fixed)    (IP = 192.168.1.128-200, dynamic)

See Network configuration, Chapter 10 for the details of configuring the network. See Building a gateway router, Section 10.12 for the details of configuring the LAN gateway server.

3.1.10. User accounts

-

In order to have a consistent feel across machines, the first few accounts are always the same in my system.

I always create a first user account with a name like "admin" (uid=1000). I forward all root email there. This account is given membership in the adm group (see "Why GNU su does not support the wheel group", Section 9.2.2), which can be given a good amount of root privilege through su using PAM or the sudo command. See Add a user account, Section 4.1.3 for details.

3.1.11. Creating filesystems

-

3.1.11.1. Hard disk partition

-

I prefer to use different partitions for different directory trees to limit damage upon system crash. E.g.,

     /          == (/ + /boot + /bin + /sbin)
                == 50MB+
     /tmp       == 100MB+
     /var       == 100MB+
     /home      == 100MB+
     /usr       == 700MB+ with X
     /usr/local == 100MB

The size of the /usr directory is very dependent on X Window applications and documentation. /usr/ can be 300MB if one runs a console terminal only, whereas 2GB–3GB is not an unusual size if one has installed many Gnome applications. When /usr/ grows too big, moving out /usr/share/ to a different partition is the most effective cure. With the new large prepackaged Linux 2.4 kernels, / may need more than 200MB.

For example, the current status of my Internet gateway machine is as follows (output of the df -h command):

     Filesystem            Size  Used Avail Use% Mounted on
     /dev/hda3             300M  106M  179M  38% /
     /dev/hda7             100M   12M   82M  13% /home
     /dev/hda8             596M   53M  513M  10% /var
     /dev/hda6             100M  834k   94M   1% /var/lib/cvs
     /dev/hda9             596M  222M  343M  40% /usr
     /dev/hda10            596M  130M  436M  23% /var/cache/apt/archives
     /dev/hda11            1.5G  204M  1.2G  14% /var/spool/squid

(The large area reserved for /var/spool/squid/ is for a proxy cache for package downloading.)

Following is fdisk -l output to provide an idea of partition structure:

     # fdisk -l /dev/hda # comment
     
     /dev/hda1             1        41    309928+   6  FAT16 # DOS
     /dev/hda2            42        84    325080   83  Linux # (not used)
     /dev/hda3   *        85       126    317520   83  Linux # Main
     /dev/hda4           127       629   3802680    5  Extended
     /dev/hda5           127       143    128488+  82  Linux swap
     /dev/hda6           144       157    105808+  83  Linux
     /dev/hda7           158       171    105808+  83  Linux
     /dev/hda8           172       253    619888+  83  Linux
     /dev/hda9           254       335    619888+  83  Linux
     /dev/hda10          336       417    619888+  83  Linux
     /dev/hda11          418       629   1602688+  83  Linux

A few unused partitions exist. These are for installing a second Linux distribution or as expansion space for growing directory trees.

3.1.11.2. Mount filesystems

-

Mounting the above filesystems properly is accomplished with the following /etc/fstab:

     
     # /etc/fstab: static filesystem information.
     #
     # filesystem    mount point     type    options                dump pass
     /dev/hda3       /               ext2    defaults,errors=remount-ro 0 1
     /dev/hda5       none            swap    sw                      0 0
     proc            /proc           proc    defaults                0 0
     /dev/fd0        /floppy         auto    defaults,user,noauto    0 0
     /dev/cdrom      /cdrom          iso9660 defaults,ro,user,noauto 0 0
     #
     # keep partitions separate
     /dev/hda7       /home           ext2    defaults                0 2
     /dev/hda8       /var            ext2    defaults                0 2
     /dev/hda6       /var/lib/cvs    ext2    defaults                0 2
     # noatime will speed up file access for read access
     /dev/hda9       /usr            ext2    defaults,noatime        0 2
     /dev/hda10      /var/cache/apt/archives ext2    defaults        0 2
     
     # very big partition for proxy cache
     /dev/hda11      /var/spool/squid ext2   rw                      0 2
     
     # backup bootable DOS
     /dev/hda1       /mnt/dos        vfat    rw,noauto               0 0
     # backup bootable Linux system (not done)
     /dev/hda2       /mnt/linux      ext2    rw,noauto               0 0
     #
     # nfs mounts
     mickey:/        /mnt/mickey     nfs     ro,noauto,intr          0 0
     goofy:/         /mnt/goofy      nfs     ro,noauto,intr          0 0
     # minnie:/ /mnt/minnie smbfs ro,soft,intr,credentials={filename} 0 2

For NFS, I use noauto,intr combined with the default hard option. This way, it is possible to recover from a hung process due to a dead connection using Ctrl-C.

For a Windows machine connected with Samba (smbfs), rw,auto,soft,intr may be good idea. See Samba configuration, Section 3.5.

For a floppy drive, using noauto,rw,sync,user,exec instead prevents file corruption after accidental disk eject before unmount, but this slows the write process.

3.1.11.3. Autofs mount

-

Key points to auto mount:

  • Load the vfat module to allow /etc/auto.misc to contain -fstype=auto:

         # modprobe vfat # prior to the floppy access attempt
          ... or to automate this setting,
         # echo "vfat" >> /etc/modules
          ... and reboot the system.
    
  • Set /etc/auto.misc as follows:

         floppy -fstype=auto,sync,nodev,nosuid,gid=100,umask=000 :/dev/fd0
          ... where gid=100 is "users".
    
  • Create cdrom and floppy links in /home/user, that point to /var/autofs/misc/cdrom and /var/autofs/misc/floppy respectively.

  • Add user to the "users" group.

3.1.11.4. NFS mount

-

The external Linux NFS server (goofy) resides behind a firewall (gateway). I have a very relaxed security policy on my LAN since I am the only user. To enable NFS access, the NFS server side needs to add /etc/exports as follows:

     # /etc/exports: the access control list for filesystems which may be
     #               exported to NFS clients.  See exports(5).
     /       (rw,no_root_squash)

This is needed to activate the NFS server in addition to installing and activating the NFS server and client packages.

For simplicity, I usually create a single partition of 2GB for an experimental or secondary lazy Linux install. I optionally share swap and /tmp partitions for these installs. A multipartition scheme is too involved for these usages. If only a simple console system is needed, 500MB may be more than sufficient.

3.1.12. DRAM memory guidelines

-

Following are rough guidelines for DRAM.

       4MB:  Bare minimum for Linux kernel to function.
      16MB:  Minimum for reasonable console system.
      32MB:  Minimum for simple X system.
      64MB:  Minimum for X system with GNOME/KDE.
     128MB:  Comfortable for X system with GNOME/KDE.
     256MB (or more): Why not if you can afford it?  DRAM is cheap.

Using the boot option mem=4m (or lilo append="mem=4m") will show how the system would perform with 4MB of memory installed. A lilo boot parameter is needed for a system containing more than 64MB of memory with an old BIOS.

3.1.13. Swap space

-

I use the following guidelines for swap space:

  • Each swap partition is < 128MB (if using an old 2.0 kernel), < 2GB (with recent kernels)

  • Total = either (1 to 2 times installed RAM) or (128MB to 2GB) as a guideline

  • Spread them on different drives and mount all of them with sw,pri=1 options in /etc/fstab. This ensures that the kernel does a striping RAID of the swap partitions and offers the maximum swap performance.

  • Use a central portion of the hard disk when possible.

Even if you never need it, some swap space (128MB) is desirable so the system will slow down before it crashes hard with a program which leaks memory.

3.2. Bash configuration

-

I modify shell startup scripts to my taste across the system:

     /etc/bash.bashrc        Replace with private one
     /etc/profile            Keep distribution copy ( \w -> \W)
     /etc/skel/.bashrc       Replace with private copy
     /etc/skel/.profile      Replace with private copy
     /etc/skel/.bash_profile Replace with private copy
     ~/.bashrc               Replace with private copy for all accounts
     ~/.profile              Replace with private copy for all accounts
     ~/.bash_profile         Replace with private copy for all accounts

See details in my example scripts. I like a transparent system, so I set umask to 002 or 022.

PATH is set by the following configuration files in this order:

     /etc/login.defs  - before the shell sets PATH
     /etc/profile     (may call /etc/bash.bashrc)
     ~/.bash_profile  (may call ~/.bashrc)

3.3. Mouse configuration

-

3.3.1. PC/2 mice

-

3.3.1.1. In General

-

In the case of a PS/2-connector mouse on an ATX motherboard, the signal flow should be:

     mouse -> /dev/psaux -> gpm -> /dev/gpmdata = /dev/mouse -> X

Here, a symlink /dev/mouse is created and is pointing to /dev/gpmdata to make some configuration utilities happy and to make reconfiguration easy. (E.g., if you decide not to use the gpm daemon after all, just point the symlink /dev/mouse to /dev/psaux after getting rid of the gpm daemon.)

This signal flow allows the keyboard and mouse to be unplugged and reinitialized by restarting gpm upon reconnect. X will stay alive!

The protocol of the signal flow between gpm output and X input can be implemented in either of two ways, as "ms3" (use the Microsoft 3-button serial mouse protocol) or "raw" (use the same protocol as the mouse that is connected), and this choice dictates the choice of protocol used in X configuration.

I will demonstrate the configuration examples using a Logitech 3-button (traditional Unix-style mouse) PS/2 mouse as an example in the following.

If you are one of the unfortunate whose graphics card is not supported by the new X4 and need to use the old X3 (some ATI 64 bit cards), configure /etc/X11/XF86Config instead of /etc/X11/XF86Config-4 in the following examples while installing X3 packages.

3.3.1.2. The ms3 protocol approach

-

     /etc/gpm.conf            | /etc/X11/XF86Config-4
     =========================+======================================
     device=/dev/psaux        | Section "InputDevice"
     responsiveness=          |  Identifier "Configured Mouse"
     repeat_type=ms3          |  Driver     "mouse"
     type=autops2             |  Option     "CorePointer"
     append=""                |  Option     "Device"   "/dev/mouse"
     sample_rate=             |  Option     "Protocol" "IntelliMouse"
                              | EndSection

If this approach is used, the mouse type adjustment is done only by editing gpm.conf and X configuration stays constant. See my example scripts.

3.3.1.3. The raw protocol approach

-

     /etc/gpm.conf            | /etc/X11/XF86Config-4
     =========================+======================================
     device=/dev/psaux        | Section "InputDevice"
     responsiveness=          |  Identifier "Configured Mouse"
     repeat_type=raw          |  Driver     "mouse"
     type=autops2             |  Option     "CorePointer"
     append=""                |  Option     "Device"   "/dev/mouse"
     sample_rate=             |  Option     "Protocol" "MouseManPlusPS/2"
                              | EndSection

If this approach is used, the mouse type adjustment is done by editing gpm.conf as well as adjusting X configuration.

3.3.1.4. How to adjust to different mice

-

The gpm device type autops2 is supposed to autodetect most of the PS/2 mice in the market. Unfortunately it doesn't always work and it isn't available in pre-Woody versions. Try using ps2, or imps2 in gpm.conf instead of autops2 for such cases. To find out the specific types of mouse gpm knows about, type: gpm -t help. See gpm(8).

If a 2-button PS/2 mouse is used, set the X protocol to enable Emulate3Buttons. The difference of protocol between the 2-button mouse and the 3-button mouse is autodetected and auto-adjusted for gpm after tapping the middle button once.

For X protocol with The raw protocol approach, Section 3.3.1.2 or without gpm, use:

  • IntelliMouse: serial port mouse (gpm repeater with "ms3")

  • PS/2: PS/2 port mouse (always test this first)

  • IMPS/2: any PS/2 port mice (2, 3, or scroll mice, better)

  • MouseManPlusPS/2: Logitech PS/2 port mouse

  • ...

See more at Mouse Support in XFree86.

A typical Microsoft scroll mouse is reported to work best with:

     /etc/gpm.conf            | /etc/X11/XF86Config-4
     =========================+======================================
     device=/dev/psaux        | Section "InputDevice"
     responsiveness=          |  Identifier "Configured Mouse"
     repeat_type=raw          |  Driver     "mouse"
     type=autops2             |  Option     "CorePointer"
     append=""                |  Option     "Device"   "/dev/mouse"
     sample_rate=             |  Option     "Protocol" "IMPS/2"
                              |  Option     "Buttons" "5"
                              |  Option  "ZAxisMapping" "4 5"
                              | EndSection

For some recent thin Toshiba notebook PCs, activating gpm before PCMCIA in the System-V init script may help prevent system lockup. Weird but true.

3.3.2. USB mice

-

Make sure you have all required kernel functions activated through kernel compile time configuration or modules:

  • Under "Input core support":

    • "Input core support" (CONFIG_INPUT, input.o),

    • "Mouse support" (CONFIG_INPUT_MOUSEDEV, mousedev.o),

  • Under "USB support":

    • "Support for USB" (CONFIG_USB, usbcore.o),

    • "Preliminary USB device filesystem" (CONFIG_USB_DEVICEFS),

    • "UHCI" or "OHCI" (CONFIG_USB_UHCI || CONFIG_USB_UHCI_ALT || CONFIG_USB_OHCI, usb-uhci.o || uhci.o || usb-ohci.o),

    • "USB Human Interface Device (full HID) support" (CONFIG_USB_HID, hid.o), and

    • "HID input layer support" (CONFIG_USB_HIDINPUT)

Here, lower case names are module names.

If you're not using devfs, create a device node /dev/input/mice with major 13 and minor 63 as follows:

     # cd /dev
     # mkdir input
     # mknod input/mice c 13 63

For typical scroll USB mice, configuration combinations should be:

     /etc/gpm.conf            | /etc/X11/XF86Config-4
     =========================+======================================
     device=/dev/input/mice   | Section "InputDevice"
     responsiveness=          |  Identifier "Generic Mouse"
     repeat_type=raw          |  Driver     "mouse"
     type=autops2             |  Option     "SendCoreEvents" "true"
     append=""                |  Option     "Device"   "/dev/input/mice"
     sample_rate=             |  Option     "Protocol" "IMPS/2"
                              |  Option     "Buttons" "5"
                              |  Option  "ZAxisMapping" "4 5"
                              | EndSection

See the Linux USB Project for more information.

3.3.3. Touchpad

-

Although the touchpad on a laptop computer emulates a 2-button PS/2 mouse as the default behavior, the tpconfig package enables full control of the device. For example, setting OPTIONS="--tapmode=0" in /etc/default/tpconfig will disable pesky "click by tap" behavior. Set /etc/gpm.conf as follows to use both touchpad and USB external mouse on the console:

     device=/dev/psaux
     responsiveness=
     repeat_type=ms3
     type=autops2
     append="-M -m /dev/input/mice -t autops2"
     sample_rate=

3.4. NFS configuration

-

Set up NFS by setting /etc/exports.

     # apt-get install nfs-kernel-server
     # echo "/ *.domainname-for-lan-hosts(rw,no_root_squash,nohide)" \
             >> /etc/exports

See my example scripts for details.

3.5. Samba configuration

-

References:

Setting up Samba with "share" mode is much easier since this creates WfW-type share drives. But it is preferable to set it up with "user" mode.

Samba can be configured through debconf or vi:

     # dpkg-reconfigure --priority=low samba # in Woody
     # vi /etc/samba/smb.conf

See my example scripts for details.

Adding a new user to the smbpasswd file can be done via smbpasswd:

     $ su -c "smbpasswd -a username"

Make sure to use encrypted passwords for optimum compatibility.

Set os level according to the following system equivalences (the larger the number, the higher the priority as server):

     0:      Samba with a loose attitude (will never become a master browser)
     1:      WfW 3.1, Win95, Win98, Win/Me?
     16:     Win NT WS 3.51
     17:     Win NT WS 4.0
     32:     Win NT SVR 3.51
     33:     Win NT SVR 4.0
     255:    Samba with mighty power

Make sure that users are members of the group owning the directory that gives shared access and that the directory path has its execution bit set to access.

3.6. Printer configuration

The traditional method is lpr/lpd. There is a new CUPS™ system (Common UNIX Printing System). PDQ is another approach. See the Linux Printing HOWTO for more information.

3.6.1. lpr/lpd

-

For the lpr/lpd type spoolers (lpr, lprng, and gnulpr), set up /etc/printcap as follows if they are connected to a PostScript or text-only printer (the basics):

     lp|alias:\
             :sd=/var/spool/lpd/lp:\
             :mx#0:\
             :sh:\
             :lp=/dev/lp0:

Meaning of the above lines:

  • Head line: lp – name of spool, alias = alias

  • mx#0 – max file size unlimited

  • sh – suppress printing of burst page header

  • lp=/dev/lp0 – local printer device, or port@host for remote

This is a good configuration if you are connected to a PostScript printer. Also, when printing from a Windows machine through Samba, this is a good configuration for any Windows-supported printer (no bidirectional communication is supported). You have to select the corresponding printer configuration on the Windows machine.

If you do not have a PostScript printer, you need to set up a filtering system using gs. There are many autoconfiguration tools provided for setting up /etc/printcap. Any of these combinations is an option:

  • gnulpr, (lpr-ppd) and printtool—I use this.

  • lpr and apsfilter

  • lpr and magicfilter

  • lprng and lprngtool

  • lprng and apsfilter

  • lprng and magicfilter

In order to run GUI configuration tools such as printtool, see Getting root in X, Section 9.4.12 to gain root privilege. Printer spools created with printtool use gs and act like PostScript printers. So when accessing them, use PostScript printer drivers. On the Windows side, "Apple LaserWriter" is the standard one.

3.6.2. CUPS™

-

The Common UNIX Printing System (or CUPS™) is installed by using aptitude and installing all packages under "Tasks" -> "Servers" -> "Print Server". (Sarge) For the best result, you should set aptitude with "F10" -> "Options" -> "Dependency handling" -> "[X] Install Recommended packages automatically".

KDE and Gnome Desktop Environments provide easy printer configuration. Alternatively, you can configure the system using any web browser if swat is installed:

     $ mybrowser http://localhost:631

For example, to add your printer on some port to the list of accessible printers:

  • click "Printers" from the main page, and then "Add Printer",

  • enter "root" for the username and its password,

  • proceed to add the printer following the prompts,

  • go back to the "Printers" page and click "Configure Printer", and

  • proceed to configure the paper size, resolution, and other parameters.

See more information at http://localhost:631/documentation.html and http://www.cups.org/cups-help.html.

3.7. CRON for desktop PCs

-

The Vixie cron is installed as the default for the scheduled execution of programs. It does not function well unless your system is up 24/7. For the desktop use PC, you need to install anacron over cron to address this problem. fcron package may be used as alternative.

See Schedule activity (cron, at), Section 8.6.27 for the configuration of CRON jobs.

3.8. Other host installation hints

-

3.8.1. Install a few more packages after initial install

-

Once you have made it this far, you have a small but functioning Debian system. It is a good time to install bigger packages.

Here the first thing you may want to do is select your favorite editor and any programs you need with aptitude. You can install many Emacs variants at the same time. See Popular editors, Section 11.1.

Then, again with aptitude, select (almost) all packages under "Tasks" --> "End-user" to obtain very complete end-user oriented system.

I usually edit /etc/inittab for easy shutdown.

     ...
     # What to do when CTRL-ALT-DEL is pressed.
     ca:12345:ctrlaltdel:/sbin/shutdown -t1 -a -h now

3.8.2. Modules

-

Modules for the device drivers are configured during the initial installation. modconf provides menu-driven module configuration afterward. This program is quite useful when some modules were left out during the initial installation or a new kernel was installed after the initial installation.

All preloading module names need to be listed in /etc/modules. I also use lsmod and depmod to control them manually.

Also make sure to add a few lines in /etc/modules to handle IP masquerading (FTP, etc.) if you did not enable it.

3.8.3. CD-RW basic setup

-

For IDE connected CD-RW drive with 2.4 kernel, edit the following files:

     /etc/lilo.conf  (add append="hdc=ide-scsi ignore=hdc", 
                      run lilo to activate)
     /dev/cdrom      (symlink # cd /dev; ln -sf scd0 cdrom)
     /etc/modules    (add "ide-scsi" and "sg". If needed "sr" after this.)

See CD writers, Section 9.3 for details.

3.8.4. Large memory and auto power-off

-

Edit /etc/lilo.conf as follows to set boot-prompt parameters for large memory (for 2.2 kernels) and auto power-off (for APM):

     append="mem=128M apm=on apm=power-off noapic"

Run lilo to install these settings. apm=power-off is needed for a SMP kernel and noapic is needed to avoid problems for my buggy SMP hardware. The same can be done directly by entering options at the boot prompt. See Other boot tricks with the boot prompt, Section 8.1.5.

If APM is compiled as a module, as in Debian default 2.4 kernels, run insmod apm power_off=1 after boot or set /etc/modules by:

     # echo "apm power_off=1" >>/etc/modules

Alternatively, compiling ACPI support achieves the same goal with newer kernels and seems to be more SMP-friendly (this requires a newer motherboard). The 2.4 kernel on newer motherboards should detect large memory correctly.

     CONFIG_PM=y
     CONFIG_ACPI=y
     ...
     CONFIG_ACPI_BUSMGR=m
     CONFIG_ACPI_SYS=m

and add the following lines in /etc/modules in this order:

     ospm_busmgr
     ospm_system

Or recompile the kernel with all of the kernel options above set to "y". In any case, none of the boot-prompt parameters are needed with ACPI.

3.8.5. Strange access problems with some websites

-

Recent Linux kernels enable ECN by default, which may cause access problems with some websites on bad routers. To check ECN status:

     # cat /proc/sys/net/ipv4/tcp_ecn
      ... or
     # sysctl net.ipv4.tcp_ecn

To turn it off, use:

     # echo "0" > /proc/sys/net/ipv4/tcp_ecn
      ... or
     # sysctl -w net.ipv4.tcp_ecn=0

To disable TCP ECN on every boot, edit /etc/sysctl.conf and add:

     net.ipv4.tcp_ecn = 0

3.8.6. Dialup PPP configuration

-

Install the pppconfig package to set up dialup PPP access.

     # apt-get install pppconfig
     # pppconfig
      ... follow the directions to configure dialup PPP
     # adduser user_name dip
      ... allow user_name to access dialup PPP

Dialup PPP access can be initiated by the user (user_name):

     $ pon ISP_name  # start PPP access to your ISP
      ... enjoy the Internet
     $ poff ISP_name # stop PPP access, ISP_name optional

See Configuring a PPP interface, Section 10.2.4 for more details.

3.8.7. Other configuration files to tweak in /etc/

-

You may want to add an /etc/cron.deny file, missing from the standard Debian install (you can copy /etc/at.deny).

4. Debian tutorials

This section provides a basic orientation to the Debian world for the real newbie. If you have been using any Unix-like system for a while, you probably know everything I explained here. Please use this as a reality check.

4.1. Getting started

After the installation of the Debian system on your PC, you need to learn few things to make it useful. Let us give you an express training.

4.1.1. Login to a shell prompt as root

-

Upon rebooting the system, you will be presented either the graphical login screen or the character based login screen depending on your initial selection of packages. For the sake of simplicity, if you are presented with the graphical login screen, press Ctrl-Alt-F1 [3] to gain the character based login screen.

Suppose your hostname is foo, the login prompt looks like:

     foo login:

Type root , press the Enter-key and type the password which you selected during the install process. In the Debian system, following the Unix tradition, the password is case sensitive. Then the system starts with the greeting message and presents you with the root command prompt waiting for your input. [4]

     foo login: root
     Password: 
     Last login: Sun Oct 26 19:04:09 2003 on tty3
     Linux foo 2.4.22-1-686 #6 Sat Oct 4 14:09:08 EST 2003 i686 GNU/Linux
     
     Most of the programs included with the Debian GNU/Linux system are
     freely redistributable; the exact distribution terms for each program
     are described in the individual files in /usr/share/doc/*/copyright
     
     Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
     permitted by applicable law.
     
     root@foo:root#

You are ready to perform the system administration from this root command prompt. This root account is also called superuser or privileged user. From this account, you can do anything:

  • read, write, and remove any files on the system irrespective of their file permissions

  • set file ownership and permission of any files on the system

  • set the password of any non-privileged users on the system

  • login to any accounts without their passwords

It is extremely bad idea to share the access to the root account by sharing the password. Use of program such as sudo(8) is the good way to share the administrative privileges.

Please note that it is considered a good Unix habit to login to the non-privileged user account first even when you plan to perform administrative activities. Use commands sudo, super, or su -c to gain the limited root privileged when needed. See Working more safely – sudo, Section 9.2.4. [5]

4.1.2. Set up minimal newbie environment

-

I think learning a computer system is like learning a new foreign language. Although tutorial books are helpful, you have to practice it with helper tools. In this context, I think it is a good idea to install few additional packages such as mc, vim, lynx, doc-linux-text, and debian-policy. [6]

     # apt-get update
      ...
     # apt-get install mc vim lynx doc-linux-text debian-policy 
      ...

If you already had these packages installed, nothing will be installed.

4.1.3. Add a user account

-

During the installation, you usually created a non-privileged user account who receives e-mails sent to the root account. [7] Since you do not want to use this special user account for the following training activities either, you should create another new user account.

Suppose you wish this new username to be penguin, type:

     root@foo:root# adduser penguin
     ... answer all the questions

will create it. [8] Before going further, let's learn few things first.

4.1.4. Switch between virtual console

-

In the default Debian system, there are six independent pseudo-terminals available, i.e., you can use the PC's VGA character console screen as 6 switchable VT-100 terminals. Switch from one to another by pressing the Left-Alt-key and one of the F1–F6 keys simultaneously. Each pseudo-terminal allows independent login to accounts. The multiuser environment is a great Unix feature, and very addictive.

If you accidentally typed Alt-F7 on a system running the X Window System and the console screen displays graphic screen, regain the access to the character console by pressing Ctrl-Alt-F1. Just try to move to different console and come back to the original one to get used to this.

4.1.5. How to shut down

-

Just like any other modern OSs where the file operation involves caching data in the memory, the Debian system needs the proper shutdown procedure before power can safely be turned off to maintain the integrity of files. Use the following command from the root command prompt to shutdown the system:

     # shutdown -h now

This is for the normal multiuser mode. If you are in the single-user mode, use following from the root command prompt:

     # poweroff -i -f

Alternatively, you may type Ctrl-Alt-Delete to shutdown. [9]

Wait until the system displays "System halted" then shut off power. If the APM or ACPI function has been turned on by the BIOS and Linux properly, the system will power down by itself. See Large memory and auto power-off, Section 3.8.4 for the detail.

4.1.6. Play time

-

Now you are ready to play with the Debian system without risks as long as you use this non-privileged user account penguin. [10]

Let's login to the penguin. If you are at root shell prompt, type Ctrl-D [11] at the root command prompt to close the root shell activity and return to the login prompt. Enter your newly created username penguin and the corresponding password. [12] You will be presented with the following command prompt.

     penguin@foo:penguin$

From here on, the example given will use simplified command prompt for the sake of simplicity. I will use:

  • # : root shell prompt

  • $ : non-privileged user shell prompt

We will start learning the Debian system first with the easy way Midnight Commander (MC), Section 4.2 and later with the proper way Unix-like work environment, Section 4.3.

4.2. Midnight Commander (MC)

Midnight Commander (MC) is a GNU "Swiss army knife" for the Linux console and other terminal environments. This gives newbie a menu driven console experience which is much easier to learn than standard Unix commands.

4.2.1. Enhance MC

-

In order to make MC to change working directory upon exit, you need to modify ~/.bashrc (or /etc/bash.bashrc, called from .bashrc), as detailed in its manual page, mc(1), under the -P option. [13]

4.2.2. Start MC

-

MC takes care of all file operations through its menu, requiring minimal user effort. Just press F1 to get the help screen. You can play with MC just by pressing cursor-keys and function-keys. [14]

4.2.3. File manager in MC

-

The default is two directory panels containing file lists. Another useful mode is to set the right window to "information" to see file access privilege information, etc. Following are some essential keystrokes. With the gpm daemon running, one can use a mouse, too. (Make sure to press the shift-key to obtain the normal behavior of cut and paste in MC.)

  • F1: Help menu

  • F3: Internal file viewer

  • F4: Internal editor

  • F9: Activate pulldown menu

  • F10: Exit Midnight Commander

  • Tab: Move between two windows

  • Insert: Mark file for a multiple-file operation such as copy

  • Del: Delete file (be careful—set MC to safe delete mode)

  • Cursor keys: Self-explanatory

4.2.4. Command-line tricks in MC

-

  • Any cd command will change the directory shown on the selected screen.

  • Ctrl-Enter or Alt-Enter will copy a filename to the command line. Use this with the cp or mv command together with command-line editing.

  • Alt-Tab will show shell filename expansion choices.

  • One can specify the starting directory for both windows as arguments to MC; for example, mc /etc /root.

  • Esc + numberkey == Fn (i.e., Esc + `1' = F1, etc.; Esc + `0' = F10)

  • Esc-key == Alt-key (= Meta, M-); i.e., type Esc + `c' for Alt-C.

4.2.5. Editor in MC

-

The internal editor has an interesting cut-and-paste scheme. Pressing F3 marks the start of a selection, a second F3 marks the end of selection and highlights the selection. Then you can move your cursor. If you press F6, the selected area will be moved to the cursor location. If you press F5, the selected area will be copied and inserted at the cursor location. F2 will save the file. F10 will get you out. Most cursor keys work intuitively.

This editor can be directly started on a file:

     $ mc -e filename_to_edit
     $ mcedit filename_to_edit

This is not a multi-window editor, but one can use multiple Linux consoles to achieve the same effect. To copy between windows, use Alt-Fn keys to switch virtual consoles and use "File->Insert file" or "File->Copy to file" to move a portion of a file to another file.

This internal editor can be replaced with any external editor of choice.

Also, many programs use environment variables EDITOR or VISUAL to decide which editor to use. If you are uncomfortable with vim, set these to mcedit by adding these lines to ~/.bashrc:

     ...
     export EDITOR=mcedit
     export VISUAL=mcedit
     ...

I do recommend setting these to vim if possible. Getting used to vim commands is the right thing to do, since Vi-editor is always there in the Linux/Unix world. [15]

4.2.6. Viewer in MC

-

Very smart viewer. This is a great tool for searching words in documents. I always use this for files in the /usr/share/doc directory. This is the fastest way to browse through masses of Linux information. This viewer can be directly started like so:

     $ mc -v filename_to_view

4.2.7. Auto-start features of MC

-

Press Enter on a file, and the appropriate program will handle the content of the file. This is a very convenient MC feature.

     executable file:   Execute command
     man, html file:    Pipe content to viewer software
     tar.gz, deb file:  Browse its contents as if subdirectory

In order to allow these viewer and virtual file features to function, viewable files should not be set as executable. Change their status using the chmod command or via the MC file menu.

4.2.8. FTP virtual filesystem of MC

-

MC can be used to access files over the Internet using FTP. Go to the menu by pressing F9, then type `p' to activate the FTP virtual filesystem. Enter a URL in the form username:passwd@hostname.domainname, which will retrieve a remote directory that appears like a local one.

Try http.us.debian.org/debian as URL and browse Debian file archive. See The Debian archives, Section 2.1 for how these are organized.

4.3. Unix-like work environment

Although MC enables you to do almost everything, it is very important for you to learn how to use the command line tools invoked from the shell prompt and become familiar with the Unix-like work environment. [16]

4.3.1. Special key strokes

-

In the Unix-like environment, there are few key strokes which have special meanings. [17]

  • Ctrl-U: Erase line before cursor.

  • Ctrl-H: Erase a character before cursor.

  • Ctrl-D: Terminate input. (exit shell if you are using shell)

  • Ctrl-C: Terminate a running program.

  • Ctrl-Z: Temporarily stop program. (put it to the background job, see command &, Section 4.3.10.1)

  • Ctrl-S: Halt output to screen. [18]

  • Ctrl-Q: Reactivate output to screen.

The default shell, bash, has history-editing and tab-completion capabilities to aide the interactive use.

  • up-arrow: Start command history search.

  • Ctrl-R: Start incremental command history search.

  • TAB: Complete input of the filename to the command line.

  • Ctrl-V TAB: Input TAB without expansion to the command line.

Other important keystrokes to remember:

  • Ctrl-Alt-Del: Reboot/halt the system, see Install a few more packages after initial install, Section 3.8.1.

  • Left-click-and-drag mouse: Select and copy to the clipboard.

  • Click middle mouse button: Paste clipboard at the cursor.

  • Meta-key (Emacs terminology) is assigned traditionally to Left-Alt-key. Some system may be configured to use Windows-key for Meta-key.

Here, in order to use a mouse in the Linux character console, you need to have gpm running as daemon. [19] See Mouse configuration, Section 3.3.

4.3.2. Basic Unix commands

-

Let's learn the basic Unix commands. [20] Try all the following commands from the non-privileged user account penguin :

  • pwd

    • Display name of current/working directory.

  • whoami

    • Display current user name.

  • file foo

    • Display a type of file for the file foo.

  • type -p commandname

    • Display a file location of command commandname.

    • which commandname does the same. [21]

  • type commandname

    • Display information on command commandname.

  • apropos key-word

    • Find commands related to key-word.

    • man -k key-word does the same.

  • whatis commandname

    • Display one line explanation on command commandname.

  • man -a commandname

    • Display explanation on command commandname. (Unix style)

  • info commandname

    • Display rather long explanation on command commandname. (GNU style)

  • ls

    • List contents of directory. (non-dot files and directories) [22]

  • ls -a

    • List contents of directory. (all files and directories)

  • ls -A

    • List contents of directory. (almost all files and directories, i.e., skip ".." and ".")

  • ls -la

  • ls -d

    • List all directories under the current directory.

  • lsof foo

    • List open status of file foo.

  • mkdir foo

    • Make a new directory foo in the current directory.

  • rmdir foo

    • Remove a directory foo in the current directory.

  • cd foo

    • Change directory to the directory foo in the current directory or in the directory listed in the variable CDPATH. See cd command in builtins(7).

  • cd /

    • Change directory to the root directory.

  • cd

    • Change directory to the current user's home directory.

  • cd /foo

    • Change directory to the absolute path directory /foo.

  • cd ..

    • Change directory to the parent directory.

  • cd ~foo

    • Change directory to the home directory of the user foo.

  • cd -

    • Change directory to the previous directory.

  • </etc/motd pager

  • touch junkfile

    • Create a empty file junkfile.

  • cp foo bar

    • Copy a existing file foo to a new file bar.

  • rm junkfile

    • Remove a file junkfile.

  • mv foo bar

    • Rename an existing file foo to a new name bar.

  • mv foo bar/baz

    • Move an existing file foo to a new location with a new name bar/baz. The directory bar must exist.

  • chmod 600 foo

    • Make an existing file foo to be non-readable and non-writable by the other people. (non-executable for all)

  • chmod 644 foo

    • Make an existing file foo to be readable but non-writable by the other people. (non-executable for all)

  • chmod 755 foo

    • Make an existing file foo to be readable but non-writable by the other people. (executable for all)

  • top

    • Display process information using full screen. Type "q" to quit.

  • ps aux | pager

  • ps -ef | pager

    • Display information on all the running processes using Unix system-V style output.

  • ps aux | grep -e "[e]xim4*"

    • Display all processes running exim or exim4. Learn the regular expression from grep(1) manual page by typing man grep. [24]

  • ps axf | pager

    • Display information on all the running processes with ASCII art output.

  • kill 1234

  • grep -e "pattern" *.html

    • Find a "pattern" in all of the files ending with .html in current directory and display them all.

  • gzip foo

    • Compress foo to create foo.gz using the Lempel-Ziv coding (LZ77).

  • gunzip foo.gz

    • Decompress foo.gz to create foo.

  • bzip2 foo

    • Compress foo to create foo.bz2 using the Burrows-Wheeler block sorting text compression algorithm, and Huffman coding. (Better compression than gzip)

  • bunzip2 foo.bz2

    • Decompress foo.bz2 to create foo.

  • tar -xvvf foo.tar

    • Extract files from foo.tar archive.

  • tar -xvvzf foo.tar.gz

    • Extract files from gzipped foo.tar.gz archive.

  • tar -xvvf --bzip2 foo.tar.bz2

    • Extract files from foo.tar.bz2 archive. [25]

  • tar -cvvf foo.tar bar/

    • Archive contents of folder bar/ in foo.tar archive.

  • tar -cvvzf foo.tar.gz bar/

    • Archive contents of folder bar/ in compressed foo.tar.gz archive.

  • tar -cvvf --bzip2 foo.tar.bz2 bar/

    • Archive contents of folder bar/ in foo.tar.bz2 archive. [26]

  • zcat README.gz | pager

    • Display contents of compressed README.gz using the default pager.

  • zcat README.gz > foo

    • Create a file foo with the decompressed content of README.gz.

  • zcat README.gz >> foo

    • Append the decompressed content of README.gz to the end of the file foo. (If it does not exist, create it first.)

  • find . -name pattern

    • find matching filenames using shell pattern. (slower)

  • locate -d . pattern

    • find matching filenames using shell pattern. (quicker using regularly generated database)

Please traverse directories and peek into the system using above commands as a training. If you have questions on any of the console commands, please make sure to read the manual page. For example, these commands are the good start:

     $ man man
     $ man bash
     $ man ls

Also this is a good timing to start vim and press F1-key. You should at least read the first 35 lines. Then do the online training course by moving cursor to |tutor| and pressing Ctrl-]. See Editors, Chapter 11 to learn more about editors.

Please note that many Unix-like commands including ones from GNU and BSD will display brief help information if you invoke them in one of the following ways (or without any arguments in some cases):

     $ commandname --help
     $ commandname -h

Try also examples in Debian tips, Chapter 8 as your self training.

4.3.3. The command execution

-

Now you have some feel on how to use the Debian system. Let's look deep into the mechanism of the command execution in the Debian system. [27]

4.3.4. Simple command

-

A simple command is a sequence of

  • variable assignments (optional)
  • command name arguments (optional)
  • redirections (optional: > , >> , < , << , etc.)
  • control operator (optional: && , || ; <newline> , ; , & , ( , ) )

For more complex commands with quotations and substitutions, see Command-line processing, Section 13.2.6.

4.3.5. Command execution and environment variable

-

Typical command execution uses a shell line sequence like the following: [28]

     $ date
     Sun Oct 26 08:17:20 CET 2003
     $ LC_ALL=fr_FR date
     dim oct 26 08:17:39 CET 2003

Here, the program date is executed in the foreground job. The environment variable LC_ALL is:

  • unset (system default, same as C) for the first command

  • set to fr_FR (French locale) for the second command

Most command executions usually do not have preceding environment variable definition. For the above example, you can alternatively execute:

     $ LC_ALL=fr_FR
     $ date
     dim oct 26 08:17:39 CET 2003

As you can see here, the output of command is affected by the environment variable to produce French output. If you want the environment variable to be inherited to the subprocesses (e.g., when calling shell script), you need to "export" it instead by using:

     $ export LC_ALL

4.3.6. Command search path

-

When you type a command into the shell, the shell searches the command in the list of directories contained in the PATH environment variable. The value of the PATH environment variable is also called the shell's search path.

In the default Debian installation, the PATH environment variable of user accounts may not include /sbin/. So if you want to run any commands such as ifconfig from /sbin/, you must change the PATH environment variable to include it. The PATH environment variable is usually set by the initialization file ~/.bash_profile, see Bash configuration, Section 3.2.

4.3.7. Command line options

-

Some commands take arguments. The arguments starting with - or -- are called options and control the behavior of the command.

     $ date
     Mon Oct 27 23:02:09 CET 2003
     $ date -R
     Mon, 27 Oct 2003 23:02:40 +0100

Here the command-line argument -R changes the date command behavior to output RFC-2822 compliant date string.

4.3.8. Shell wildcards

-

Often you want a command to work with a group of files without typing all of them. The filename expansion pattern using the shell wildcards facilitate this needs.

  • *

    • This matches any group of 0 or more characters.

    • This does not match a filename started with ".".

  • ?

    • This matches exactly one character.

  • [...]

    • This matches exactly one character with any character enclosed in brackets

  • [a-z]

    • This matches exactly one character with any character between a and z.

  • [^...]

    • This matches exactly one character other than any character enclosed in brackets (excluding "^").

For example, try the following and think yourself:

     $ mkdir junk; cd junk; touch 1.txt 2.txt 3.c 4.h .5.txt
     $ echo *.txt
     1.txt 2.txt
     $ echo *
     1.txt 2.txt 3.c 4.h
     $ echo *.[hc]
     3.c 4.h
     $ echo .*
     . .. .5.txt
     $ echo .[^.]*
     .5.txt
     $ echo [^1-3]*
     4.h
     $ cd ..; rm -rf junk

4.3.9. Return value of the command

-

Each command returns its exit status as the return value.

  • return value = 0 if the command executes successfully.

  • return value = non-zero if the command exits with error.

This return value can be accessed by the $? shell variable immediately after the execution.

     $ [ 1 = 1 ] ; echo $?
     0
     $ [ 1 = 2 ] ; echo $?
     1

Please note that, when the return value is used in the logical context for the shell, success is treated as the logical TRUE. This is somewhat non-intuitive since success bears value zero.

See Shell conditionals, Section 13.2.5.

4.3.10. Typical command sequences

-

4.3.10.1. command &

-

The command is executed in the subshell in the background. Background jobs allow users to run multiple programs in a single shell.

The management of the background process involves the shell built-ins: jobs, fg, bg, and kill. Please read the sections of the bash(1) manual page under "SIGNALS", "JOB CONTROL", and "SHELL BUILTIN COMMANDS". [29]

4.3.10.2. command1 | command2

-

The standard output of command1 is fed to the standard input of command2 . Both commands may be running concurrently. This is called pipeline.

4.3.10.3. command1 ; command2

-

The command1 and command2 are executed sequentially.

4.3.10.4. command1 && command2

-

The command1 is executed. If successful, command2 is also executed sequentially. Return success if both command1 and command2 are successful.

4.3.10.5. command1 || command2

-

The command1 is executed. If not successful, command2 is also executed sequentially. Return success if command1 or command2 are successful.

4.3.10.6. command > foo

-

Redirect standard output of command to a file foo. (overwrite)

4.3.10.7. command >> foo

-

Redirect standard output of command to a file foo. (append)

4.3.10.8. command > foo 2>&1

-

Redirect both standard output and standard error of command to a file foo.

4.3.10.9. command < foo

-

Redirect standard input of command to a file foo. Try:

     $ </etc/motd pager
      ... (the greetings)
     $ pager </etc/motd
      ... (the greetings)
     $ pager /etc/motd
      ... (the greetings)
     $ cat /etc/motd | pager
      ... (the greetings)

Although all 4 syntaxes display the same thing, the last example runs extra cat command and wastes resources with no reason.

4.3.11. Command alias

-

You can set an alias for the frequently used command. For example:

     $ alias la='ls -la'

Now, la works as a short hand for ls -la which lists all files in the long listing format.

You can identity exact path or identity of the command using type command. For example:

     $ type ls
     ls is hashed (/bin/ls)
     $ type la
     la is aliased to `ls -la'
     $ type echo
     echo is a shell builtin
     $ type file
     file is /usr/bin/file

Here ls was recently searched while file was not, thus ls is "hashed", i.e., the shell has an internal record for the quick access to the location of the ls command.

4.4. Unix-like text processing

There are few standard text processing tools which are used very often on the Unix-like system.

4.4.1. Regular expressions

-

Regular expressions are used in many text processing tools. They are analogous to the shell wildcards (see Shell wildcards, Section 4.3.8), but they are both more complicated and more powerful.

The regular expression describes the matching pattern and is made up of text characters and metacharacters. The metacharacter is just a character with a special meaning. There are 2 major styles, BRE and ERE, depending on the text tools as described in Unix-like text processing, Section 4.4.

For the EREs, the metacharacters include "\ . [ ] ^ $ * + ? ( ) { } |". The regular expression means:

  • c

    • This matches the non-metacharacter "c".

  • \c

    • This matches the literal character "c".

  • .

    • This matches any character including newline.

  • ^

    • This matches the beginning of a string.

  • $

    • This matches the end of a string.

  • \<

    • This matches the beginning of a word.

  • \>

    • This matches the end of a word.

  • [abc...]

    • This character list matches any of the characters "abc...".

  • [^abc...]

    • This negated character list matches any of the characters except "abc...".

  • r*

    • This matches zero or more regular expressions identified by "r".

  • r+

    • This matches one or more regular expressions identified by "r".

  • r?

    • This matches zero or one regular expressions identified by "r".

  • r1|r2

    • This matches one of the regular expressions identified by "r1" or "r2".

  • (r1|r2)

    • This matches one of the regular expressions identified by "r1" or "r2" and treats it as a bracketed regular expression.

In BREs the metacharacters "+ ? ( ) { } |" lose their special meaning; instead use the backslashed versions "\+ \? \( \) \{ \} \|". Thus the grouping construct (r1|r2) needs to be quoted as \(r1|r2\) in BREs. Since emacs, although being basically BRE, treats "+ ?" as the metacharacters. Thus there are no needs to quote them. See Replacement expressions, Section 4.4.2 for how the grouping construct is used.

For example, grep can be used to perform the text search using the regular expression:

     $ egrep 'GNU.*LICENSE|Yoyodyne' /usr/share/common-licenses/GPL
                         GNU GENERAL PUBLIC LICENSE
                         GNU GENERAL PUBLIC LICENSE
       Yoyodyne, Inc., hereby disclaims all copyright interest in the program

4.4.2. Replacement expressions

-

For the replacement expression, following characters have special meanings:

  • &

    • This represents what the regular expression matched. (use \& in emacs)

  • \n

    • This represents what the n-th bracketed regular expression matched.

For Perl replacement string, $n is used instead of \n and & has no special meaning.

For example:

     $ echo zzz1abc2efg3hij4 | \
       sed -e 's/\(1[a-z]*\)[0-9]*\(.*\)$/=&=/'
     zzz=1abc2efg3hij4=
     $ echo zzz1abc2efg3hij4 | \
       sed -e 's/\(1[a-z]*\)[0-9]*\(.*\)$/\2===\1/'
     zzzefg3hij4===1abc
     $ echo zzz1abc2efg3hij4 | \
       perl -pe 's/(1[a-z]*)[0-9]*(.*)$/$2===$1/'
     zzzefg3hij4===1abc
     $ echo zzz1abc2efg3hij4 | \
       perl -pe 's/(1[a-z]*)[0-9]*(.*)$/=&=/'
     zzz=&=

Here please pay extra attention to the style of the bracketed regular expression and how the matched strings are used in the text replacement process on different tools.

These regular expressions can be used for the cursor movements and the text replacement actions in the editors too.

Please read all the related manual pages to learn these commands.

4.5. Unix-like filesystem

In the GNU/Linux and other Unix-like OS systems, the files are organized into directories. [30] All files and directories are arranged in one big tree, the file hierarchy, rooted at /. These files and directories can be spread out over several devices. The mount(8) command serves to attach the file system found on some device to the big file tree. Conversely, the umount(8) command will detach it again.

4.5.1. Unix file basics

-

Here are the basics:

  • Filenames are case sensitive. That is, MYFILE and MyFile are different files.

  • The root directory is referred to as simply /. Don't confuse this "root" with the root user. See Login to a shell prompt as root, Section 4.1.1.

  • Every directory has a name which can contain any letters or symbols except /. [31] The root directory is an exception; its name is / (pronounced "slash" or "the root directory") and it cannot be renamed.

  • Each file or directory is designated by a fully-qualified filename, absolute filename, or path, giving the sequence of directories which must be passed through to reach it. The three terms are synonymous. All absolute filenames begin with the / directory, and there's a / between each directory or file in the filename. The first / is the name of a directory, but the others are simply separators to distinguish the parts of the filename.

    The words used here can be confusing. Take the following example:

         /usr/share/keytables/us.map.gz
    

    This is a fully-qualified filename; some people call it a path. However, people will also refer to us.map.gz alone as a filename. [32]

  • The root directory has a number of branches, such as /etc/ and /usr/. These subdirectories in turn branch into still more subdirectories, such as /etc/init.d/ and /usr/local/. The whole thing together is called the directory tree.

    You can think of an absolute filename as a route from the base of the tree (/) to the end of some branch (a file). You'll also hear people talk about the directory tree as if it were a family tree: thus subdirectories have parents, and a path shows the complete ancestry of a file.

    There are also relative paths that begin somewhere other than the root directory. You should remember that the directory ../ refers to the parent directory.

  • There's no directory that corresponds to a physical device, such as your hard disk. This differs from CP/M, DOS, and Windows, where all paths begin with a device name such as C:\. See The filesystem concept in Debian, Section 4.5.2.

The detailed best practices for the file hierarchy are described in the Filesystem Hierarchy Standard. You should remember the following facts as the starter:

  • /

    • A simple / represents the root directory.

  • /etc/

    • This is the place for the system wide configuration files.

  • /var/log/

    • This is the place for the system log files.

  • /home/

    • This is the directory which contains all the home directories for all non-privileged users.

4.5.2. The filesystem concept in Debian

-

Following the Unix tradition, the Debian system provides the filesystem under which physical data on harddisks and other storage devices, and the interaction with the hardware devices such as console screens and remote serial consoles are represented in an unified manner.

Each file, directory, named pipe, or physical device on a Debian system has a data structure called an inode which describes its associated attributes such as the user who owns it (owner), the group that it belongs to, the time last accessed, etc. See /usr/include/linux/fs.h for the exact definition of struct inode in the Debian GNU/Linux system.

This unified representation of physical entities is very powerful since this allows us to use the same command for the same kind of operation on many totally different devices.

All your files could be on one disk --- or you could have 20 disks, some of them connected to a different computer elsewhere on the network. You can't tell just by looking at the directory tree, and nearly all commands work just the same way no matter what physical device(s) your files are really on.

4.5.3. File and directory access permissions

-

File and directory access permissions are defined separately for the following three categories of affected users:

  • the user who owns the file (u),

  • other users in the group which the file belongs to (g), and

  • all other users (o).

For a file, each corresponding permission allows:

  • read (r): to examine contents of the file,

  • write (w): to modify the file, and

  • execute (x): to run the file as a command.

For a directory, each corresponding permission allows:

  • read (r): to list contents of the directory,

  • write (w): to add or remove files in the directory, and

  • execute (x): to access files in the directory.

Here, execute permission on the directory means not only to allow reading of files in its directory but also to allow viewing their attributes, such as the size and the modification time.

To display permission information (and more) for files and directories, ls is used. See ls(1). When ls invoked with the -l option, it displays the following information in the order given:

  • the type of file (first character)

    • -: normal file

    • d: directory

    • l: symlink

    • c: character device node

    • b: block device node

    • p: named pipe

    • s: socket

  • the file's access permissions (the next nine characters, consisting of three characters each for user, group, and other in this order)

  • the number of hard links to the file

  • the name of the user who owns the file

  • the name of the group which the file belongs to

  • the size of the file in characters (bytes)

  • the date and time of the file (mtime)

  • the name of the file.

To change the owner of the file, chown is used from the root account. To change the group of the file, chgrp is used from the file's owner or root account. To change file and directory access permissions, chmod is used from the file's owner or root account. Basic syntax to manipulate foo file is:

     # chown newowner foo
     # chgrp newgroup foo 
     # chmod  [ugoa][+-=][rwx][,...] foo

See chown(1), chgrp(1), and chmod(1) for the detail.

For example, in order to make a directory tree to be owned by a user foo and shared by a group bar, issue the following commands from the root account:

     # cd /some/location/
     # chown -R foo:bar .
     # chmod -R ug+rwX,o=rX .

There are three more special permission bits:

  • set user ID (s or S instead of user's x),

  • set group ID (s or S instead of group's x), and

  • sticky bit (t or T instead of other's x).

Here the output of ls -l for these bits is capitalized if execution bits hidden by these outputs are unset.

Setting set user ID on an executable file allows a user to execute the executable file with the owner ID of the file (for example root). Similarly, setting set group ID on an executable file allows a user to execute the executable file with the group ID of the file (for example root). Because these settings can cause security risks, enabling them requires extra caution.

Setting set group ID on a directory enables the BSD-like file creation scheme where all files created in the directory belong to the group of the directory.

Setting the sticky bit on a directory prevents a file in the directory from being removed by a user who is not the owner of the file. In order to secure the contents of a file in world-writable directories such as /tmp or in group-writable directories, one must not only set write permission off for the file but also set the sticky bit on the directory. Otherwise, the file can be removed and a new file can be created with the same name by any user who has write access to the directory.

Here are a few interesting examples of the file permissions.

     $ ls -l /etc/passwd /etc/shadow /dev/ppp /usr/sbin/pppd
     crw-rw----    1 root     dip      108,   0 Jan 18 13:32 /dev/ppp
     -rw-r--r--    1 root     root         1051 Jan 26 08:29 /etc/passwd
     -rw-r-----    1 root     shadow        746 Jan 26 08:29 /etc/shadow
     -rwsr-xr--    1 root     dip        234504 Nov 24 03:58 /usr/sbin/pppd
     $ ls -ld /tmp /var/tmp /usr/local /var/mail /usr/src
     drwxrwxrwt    4 root     root         4096 Feb  9 16:35 /tmp
     drwxrwsr-x   10 root     staff        4096 Jan 18 13:31 /usr/local
     drwxrwsr-x    3 root     src          4096 Jan 19 08:36 /usr/src
     drwxrwsr-x    2 root     mail         4096 Feb  2 22:19 /var/mail
     drwxrwxrwt    3 root     root         4096 Jan 25 02:48 /var/tmp

There is an alternative numeric mode to describe file permissions in chmod(1) commands. This numeric mode uses 3 to 4 digit wide octal (radix=8) numbers. Each digit corresponds to:

  • 1st optional digit: sum of set user ID (=4), set group ID (=2), and sticky bit (=1)

  • 2nd digit: sum of read (=4), write (=2), and execute (=1) permissions for user

  • 3rd digit: ditto for group

  • 4th digit: ditto for other

This sounds complicated but it is actually quite simple. If you look at the first few (2-10) columns from ls -l command output and read it as a binary (radix=2) representation of file permissions ("-" being "0" and "rwx" being "1"), this numeric mode value should make sense as an octal (radix=8) representation of file permissions to you. [33] For example, try:

     $ touch foo bar
     $ chmod u=rw,go=r foo
     $ chmod 644 bar
     $ ls -l foo bar
     -rw-r--r--    1 penguin  penguin  0 Nov  3 23:30  foo
     -rw-r--r--    1 penguin  penguin  0 Nov  3 23:30  bar

The default file permission mask can be set by using the umask shell built-in command. See builtins(7).

4.5.4. Timestamps

-

There are three types of timestamps for a GNU/Linux file:

  • mtime: the modification time (ls -l),

  • ctime: the status change time (ls -lc), and

  • atime: the last access time (ls -lu).

Note that ctime is not file creation time.

  • Overwriting a file will change all of mtime, ctime, and atime of the file.

  • Changing permission or owner of a file will change ctime and atime of the file.

  • Reading a file will change atime of the file.

Note that even simply reading a file on the Debian system will normally cause a file write operation to update atime information in the inode. Mounting a filesystem with the noatime option will let the system skip this operation and will result in faster file access for the read. See mount(8).

Use touch(1) command to change timestamps of existing files.

4.5.5. Links

-

There are two methods of associating a file foo with a different filename bar.

  • a hard link is a duplicate name for an existing file (ln foo bar),

  • a symbolic link, or "symlink", is a special file that points to another file by name (ln -s foo bar).

See the following example for the changes in link counts and the subtle differences in the result of the rm command.

     $ echo "Original Content" > foo
     $ ls -l foo
     -rw-r--r--    1 osamu    osamu           4 Feb  9 22:26 foo
     $ ln foo bar     # hard link
     $ ln -s foo baz  # symlink
     $ ls -l foo bar baz
     -rw-r--r--    2 osamu    osamu           4 Feb  9 22:26 bar
     lrwxrwxrwx    1 osamu    osamu           3 Feb  9 22:28 baz -> foo
     -rw-r--r--    2 osamu    osamu           4 Feb  9 22:26 foo
     $ rm foo
     $ echo "New Content" > foo
     $ cat bar
     Original Content
     $ cat baz
     New Content

The symlink always has nominal file access permissions of "rwxrwxrwx", as shown in the above example, with the effective access permissions dictated by the permissions of the file that it points to.

The . directory links to the directory that it appears in, thus the link count of any new directory starts at 2. The .. directory links to the parent directory, thus the link count of the directory increases with the addition of new subdirectories.

4.5.6. Named pipes (FIFOs)

-

A named pipe is a file that acts like a pipe. You put something into the file, and it comes out the other end. Thus it's called a FIFO, or First-In-First-Out: the first thing you put in the pipe is the first thing to come out the other end.

If you write to a named pipe, the process which is writing to the pipe doesn't terminate until the information being written is read from the pipe. If you read from a named pipe, the reading process waits until there's something to read before terminating. The size of the pipe is always zero --- it doesn't store data, it just links two processes like the shell |. However, since this pipe has a name, the two processes don't have to be on the same command line or even be run by the same user.

You can try it by doing the following:

     $ cd; mkfifo mypipe
     $ echo "hello" >mypipe & # put into background
     [1] 5952
     $ ls -l mypipe
     prw-r--r--    1 penguin penguin  0 2003-11-06 23:18 mypipe
     $ cat mypipe
     hello
     [1]+  Done                    echo hello >mypipe
     $ ls mypipe
     prw-r--r--    1 penguin penguin  0 2003-11-06 23:20 mypipe
     $ rm mypipe

4.5.7. Sockets

-

The socket is similar to the named pipe (FIFO) and allows processes to exchange information. For the socket, those processes do not need to be running at the same time nor need to be the children of the same ancestor process. This is the endpoint for the inter process communication. The exchange of information may occur over the network between different hosts.

4.5.8. Device files

Device files refer to physical or virtual devices on your system, such as your hard disk, video card, screen, or keyboard.

4.5.8.1. /dev/null etc.

-

/dev/null is a special device file that discards anything you write to it. If you don't want something, throw it in /dev/null. It's essentially a bottomless pit. If you read /dev/null, you'll get an end-of-file (EOF) character immediately.

/dev/zero is similar, only if you read from it you get the \0 character (not the same as the number zero ASCII). See Dummy files, Section 8.6.34.

4.5.8.2. Device node number

-

The device node number are displayed by executing ls as:

     $ ls -l /dev/hda /dev/ttyS0 /dev/zero
     brw-rw----    1 root     disk       3,   0 Mar 14  2002 /dev/hda
     crw-rw----    1 root     dialout    4,  64 Nov 15 09:51 /dev/ttyS0
     crw-rw-rw-    1 root     root       1,   5 Aug 31 03:03 /dev/zero

Here,

  • /dev/hda has the major device number 3 and the minor device number 0. This is read/write accessible by the user who belongs to disk group,

  • /dev/ttyS0 has the major device number 4 and the minor device number 64. This is read/write accessible by the user who belongs to dialout group, and

  • /dev/zero has the major device number 1 and the minor device number 5. This is read/write accessible by anyone.

In the older system, the installation process creates the device nodes using /sbin/MAKEDEV command. See MAKEDEV(8).

In the newer system, the filesystem under in the /dev is automatically populated by the device filesystem similar to the /proc filesystem.

4.5.9. /proc filesystem

-

The /proc filesystem is a pseudo-filesystem and contains information about the system and running processes.

People frequently panic when they notice one file in particular - /proc/kcore - which is generally huge. This is (more or less) a copy of the contents of your computer's memory. It's used to debug the kernel. It doesn't actually exist anywhere, so don't worry about its size.

See Tuning the kernel through the proc filesystem, Section 7.2 and proc(5).

4.6. X Window System

See X, Section 9.4.

4.6.1. Start the X Window System

-

The X Window System can be started automatically with xdm-like graphical login daemon or type following from the console.

     $ exec startx

4.6.2. Menu in the X Window System

-

Since X environment can accommodate many window managers, their user interfaces vary quite a bit. Please remember that right-clicking the root window will bring up menu selections. This is always available.

  • To gain the shell command prompt, start Xterm from menu:

    • "XShells" --> "XTerm".

  • For graphical browsing of the web pages, start Mozilla from menu:

    • "Apps" --> "Net" --> "Mozilla Navigator".

  • For graphical browsing of the PDF files, start Xpdf from menu:

    • "Apps" --> "Viewers" --> "Xpdf".

If you do not find menu entry, install the pertinent packages. See Beginning Debian package management, Section 6.2.

4.6.3. Keyboard sequence for the X Window System

-

Followings are the important keystrokes to remember when running the X Window System.

  • Ctrl-Alt-F1 through F6: Switch to other pseudo-terminals (from an X window, DOSEMU, etc.)

  • Alt-F7: Switch back to X window

  • Ctrl-Alt-minus: Change screen resolution in X window (minus refers to the keys on the numeric keypad)

  • Ctrl-Alt-plus: Change screen resolution opposite way in X window (plus refers to the keys on the numeric keypad)

  • Ctrl-Alt-Backspace: Terminate the X Server program

  • Alt-X, Alt-C, Alt-V: Usual Windows/Mac Cut, Copy, Paste keys combinations with Ctrl- keys are replaced by these Alt- keys in some programs such as Netscape Composer.

4.7. Further study

-

At this moment, I recommend you to read the key guide books from The Linux Documentation Project: Guides:

  • "The Linux System Administrators' Guide",

  • "The Linux Network Administrator's Guide, Second Edition",

  • "Linux: Rute User's Tutorial and Exposition"

    • A nice online and hardcover book covering GNU/Linux system administration.

    • By Paul Sheer

    • Published by Prentice Hall

    • Package: rutebook (from non-free)

    • File: file:///usr/share/doc/rutebook/

See Support for Debian, Chapter 15 for more learning resources.

5. Upgrading a distribution to stable, testing, or unstable

Upgrading a system to the stable, testing, or unstable distribution may require several steps which must be in the following order: * Upgrade to Woody (if your system is older than Woody) * Upgrade to stable * Upgrade to testing * Upgrade to unstable.

5.1. Upgrading from Potato to Woody

-

This procedure is described separately because Potato's APT did not have all the features described in the current apt_preferences(5) manpage.

After including only Woody sources in /etc/apt/sources.list, upgrade APT and required core packages to Woody versions by doing the following:

     # apt-get update
     # apt-get install libc6 perl libdb2 debconf
     # apt-get install apt apt-utils dselect dpkg

Then upgrade the rest of the system to Woody.

     # apt-get upgrade
     # apt-get dist-upgrade

5.2. Preparing for upgrade

-

You can upgrade from one distribution to another one by fetching packages over the network. This can be done as follows.

Get a clean list of repositories for stable:

     # cd /etc/apt
     # cp -f sources.list sources.list.old
     # :>sources.list  
     # apt-setup noprobe

If you want to upgrade to testing then add testing sources to this new list. If you want to upgrade to unstable then also add unstable sources.

     # cd /etc/apt
     # grep -e "^deb " sources.list >srcs
     # :>sources.list  
     # cp -f srcs sources.list
     # sed -e "s/stable/testing/" srcs >>sources.list
     # sed -e "s/stable/unstable/" srcs >>sources.list
     # apt-get update
     # apt-get install apt apt-utils

See Beginning Debian package management, Section 6.2 for the art of tuning /etc/apt/sources.list and /etc/apt/preferences.

5.3. Upgrading

After properly setting up /etc/apt/sources.list and /etc/apt/preferences as described above you can begin the upgrade. Note that tracking the testing distribution of Debian can have the side effect of delaying the installation of packages containing security fixes, since such packages are uploaded to unstable and only later migrate to testing.

5.3.1. Using dselect

-

If a system has many packages which include -dev packages, etc., the following method using dselect is recommended for fine-grained package control.

     # dselect update  # always do this before upgrade
     # dselect select  # select additional packages

All your current packages will be selected when dselect starts. dselect may prompt you with additional packages based on Depends, Suggests, and Recommends. If you do not want to add any packages, just type Q to exit dselect again.

     # dselect install

You will have to answer some package configuration questions during this part of the process, so have your notes ready and allow some time for this part. See dselect, Section 6.2.4.

Use dselect. It always works :)

5.3.2. Using apt-get

-

     # apt-get update
     # apt-get -t stable upgrade
     # apt-get -t stable dist-upgrade
     # apt-get -t testing upgrade
     # apt-get -t testing dist-upgrade
     # apt-get -t unstable upgrade
     # apt-get -t unstable dist-upgrade

Once your system has reached Sarge it is advisable to use aptitude instead of apt-get. (aptitude accepts many of the options that apt-get accepts, including those above.)

To upgrade and stay with current dselect settings:

     # apt-get dselect-upgrade

See Package dependencies, Section 2.2.8.

6. Debian package management

aptitude is now the preferred text front end for APT, the Advanced Package Tool. It remembers which packages you deliberately installed and which packages were pulled in through dependencies; the latter packages are automatically de-installed by aptitude when they are no longer needed by any deliberately installed packages. It has advanced package-filtering features but these can be difficult to configure. synaptic is now the preferred Gtk GUI front end for APT. Its package filtering capability is easier to use than aptitude's. It also has experimental support for Debian Package Tags. To reduce the network load on the Debian repositories and to speed up your downloads you should get packages from Debian mirror sites. If you need to install the same package on several machines on your local network then you can set up a local HTTP proxy using squid for packages downloaded through APT. If necessary, set the http_proxy environment variable or set the http value in /etc/apt/apt.conf. Although APT's pinning feature, described in apt_preferences(5), is powerful, its effects can be difficult to understand and manage. You should consider it an Advanced Feature.

6.1. Introduction

If reading all the developer documentation is too much for you, read this chapter first and start enjoying the full power of Debian with testing/unstable :-)

6.1.1. Main package management tools

-

     dpkg      – Debian package file installer
     apt-get   – Command line front end for APT
     aptitude  – Advanced text and command line front end for APT
     synaptic  – Gtk GUI front end for APT
     dselect   – Menu-driven package manager
     tasksel   – Task installer

These tools aren't all alternatives to one another. For example, dselect uses both APT and dpkg.

APT uses /var/lib/apt/lists/* for tracking available packages while dpkg uses /var/lib/dpkg/available. If you have installed packages using aptitude or other APT front ends and you want to use dselect to install packages then the first thing you should do is update /var/lib/dpkg/available by selecting [U]pdate from dselect's menu (or by running "dselect update").

apt-get automatically installs all packages upon which a requested package Depends. It does not install the packages that a requested package merely Recommends or Suggests.

aptitude, in contrast, can be configured to install packages that a requested package Recommends or Suggests.

dselect presents the user with a list of packages that a selected package Recommends or Suggests and allows these to be selected or deselected individually. See Package dependencies, Section 2.2.8.

6.1.2. Convenience tools

-

     dpkg-reconfigure  - reconfigure an already installed package
                         (if it uses debconf)
     dpkg-source       - manage source package file
     dpkg-buildpackage - automate the building of a package file
     apt-cache         - check package archive in local cache

6.2. Beginning Debian package management

-

6.2.2. Installing tasks

-

You can install sets of packages typically required in order to put a Debian system to a certain use. These sets of packages are called "tasks".

The simplest way to install tasks at the time of initial installation is to use tasksel. Note that you must run

     dselect update

before using it.

aptitude can also install tasks and is the tool recommended for this purpose. It enables you to deselect individual packages within tasks before proceeding to the installation step.

6.2.3. aptitude

-

aptitude is a new menu-driven package installer similar to dselect but built from scratch on top of APT. It can be used as an alternative to apt-get for most commands. See aptitude(1) and file:///usr/share/doc/aptitude/README.

Once you start using aptitude it is best to continue using it rather than alternative methods of installing packages; otherwise you lose the advantage of aptitude keeping track of which packages you have deliberately installed.

aptitude in full screen mode accepts single-key commands which are usually lowercase. Notable key strokes are:

     Keystroke   Action
     F10         Menu
     ?           Help for keystroke (complete listing)
     u           Update package archive information
     +           Mark the package to be upgraded or newly installed
     -           Mark the package to be removed (keep config)
     _           Mark the package to be purged (remove config)
     =           Place the package on hold
     U           Mark all upgradable packages to be upgraded
     g           Download and install selected packages
     q           Quit current screen and save changes
     x           Quit current screen and discard changes
     Enter       View information about a package
     C           View a package's changelog
     l           Change the limit for the displayed packages
     /           Search for the first match
     \           Repeat the last search

Like apt-get, aptitude installs packages upon which a selected package Depends. aptitude also offers the option to pull in packages that a to-be-installed package Recommends or Suggests. You can change the default behavior by choosing F10 -> Options -> Dependency handling in its menu.

Other advantages of aptitude are:

  • aptitude offers access to all versions of a package.

  • aptitude logs its actions in /var/log/aptitude.

  • aptitude makes it easy to keep track of obsolete software by listing under "Obsolete and Locally Created Packages".

  • aptitude includes a fairly powerful system for searching particular packages and limiting the package display. Users familiar with mutt will pick up quickly, as mutt was the inspiration for the expression syntax. See "SEARCHING, LIMITING, AND EXPRESSIONS" in file:///usr/share/doc/aptitude/README.

  • aptitude in full screen mode has su functionality embedded and can be run from normal user until you really need administrative privileges.

6.2.4. dselect

-

In stable releases up to and including Potato, dselect was the principal package maintenance tool. For Sarge, you should consider using aptitude instead.

When started, dselect automatically selects all "Required", "Important", and "Standard" packages.

dselect has a somewhat strange user interface. Most people get used to it, however. It has four commands (Capital means CAPITAL!):

     Key-stroke  Action
     Q           Quit. Confirm current selection and quit anyway. 
                 (override dependencies)
     R           Revert! I did not mean it.
     D           Damn it! I do not care what dselect thinks.  Just Do it!
     U           Set all to sUggested state

With D and Q, you can select conflicting selections at your own risk. Handle these commands with care.

Add a line containing the option "expert" in /etc/dpkg/dselect.cfg to reduce noise.

If your machine runs dselect slowly then you might consider running dselect on another (faster) machine in order to determine the packages you want to install, then use apt-get install on the slow machine to install them.

6.2.5. Tracking a distribution using APT

-

To track the testing distribution as it changes, make your /etc/apt/preferences file look like this:

     Package: *
     Pin: release a=testing
     Pin-Priority: 800
     
     Package: *
     Pin: release a=stable
     Pin-Priority: 600

Note that tracking the testing distribution can have the side effect of delaying the installation of packages containing security fixes. Such packages are uploaded to unstable and migrate to testing only after a delay.

See apt_preferences(5) for more complicated examples which will allow you, for example, to track testing while installing selected packages from unstable.

Examples which lock particular packages at particular versions while tracking other packages as they are released are available in the examples subdirectory as preferences.testing and preferences.unstable.

If you mix distributions, e.g., testing with stable or unstable with stable, you will eventually pull in core packages such as libc6 from testing or unstable and there is no guarantee that these will not contain bugs. You have been warned.

Another example, preferences.stable, forces all packages to be downgraded to stable.

Downgrading from a later release of a package to an earlier one is not officially supported in Debian. However, you may find that you have to downgrade a specific package in order to re-install a version of a package that works when a new version malfunctions. You may find these previous package files locally in /var/cache/apt/archives/ or remotely at http://snapshot.debian.net/. See also Rescue using dpkg, Section 6.3.3.

Downgrading from a later release of a distribution to an earlier one is not officially supported either and is very likely to cause problems. However, this may be worth trying as a last resort if you are desperate.

6.2.6. aptitude, apt-get and apt-cache commands

-

While tracking testing as described in the above example you can manage the system by using the following commands:

  • aptitude update (or apt-get update)

    These update the list of available packages at the repositories.

  • aptitude upgrade (or apt-get upgrade or aptitude dist-upgrade or apt-get dist-upgrade)

    These track the testing distribution — they upgrade each package on the system, after installing versions of packages upon which it Depends, from the testing distribution. [35]

  • apt-get dselect-upgrade

    This tracks the testing distribution — it upgrades each package on the system according to the selections of dselect.

  • aptitude install package/unstable

    This installs package from the unstable distribution while installing its dependencies from the testing distribution.

  • aptitude install -t unstable package

    This installs package from the unstable distribution while installing its dependencies also from the unstable distribution by setting the Pin-Priority of unstable to 990.

  • apt-cache policy foo bar ...

    This checks the status of packages foo bar ....

  • aptitude show foo bar ... | less (or apt-cache show foo bar ... | less)

    This checks the information for packages foo bar ....

  • aptitude install foo=2.2.4-1

    This installs the particular version 2.2.4-1 of the foo package.

  • aptitude install foo bar-

    This installs the foo package and removes the bar package

  • aptitude remove bar

    This removes the bar package but not its configuration files.

  • aptitude purge bar

    This removes the bar package together with all its configuration files.

In the above examples, giving apt-get the -u option causes it to print a list of all packages that are to be upgraded and to prompt the user before taking action. aptitude does this by default. The following makes apt-get always do this:

     $ cat >> /etc/apt/apt.conf << .
     // Always show packages to be upgraded (-u)
     APT::Get::Show-Upgraded "true";
     .

Use the --no-act option to simulate actions without actually installing, removing, etc., any packages.

6.3. Debian survival commands

With this knowledge you can live the life of eternal upgrade :-)

6.3.1. Check bugs in Debian and seek help

-

If you are experiencing problems with a specific package, make sure to check out these sites first before you seek help or file a bug report. (lynx, links, and w3m work equally well):

     $ lynx http://bugs.debian.org/
     $ lynx http://bugs.debian.org/package-name  # if you know package name
     $ lynx http://bugs.debian.org/bugnumber     # if you know bug number

Search Google (www.google.com) with search words including "site:debian.org".

When in doubt, read the fine manual. Set CDPATH as follows:

     export CDPATH=.:/usr/local:/usr/share/doc

and type

     $ cd packagename
     $ pager README.Debian # if this exists
     $ mc

More support resources are listed at Support for Debian, Chapter 15.

6.3.2. APT upgrade troubleshooting

-

Package dependency problems may occur when upgrading in unstable or testing as described in Upgrading, Section 5.3. Most of the time this is because a package that will be upgraded Depends on a package that is not yet available. These problems are fixed by using

     # aptitude dist-upgrade

If this does not work, then repeat one of the following until the problem resolves itself:

     # aptitude -f upgrade        # continue upgrade even after error
     ... or
     # aptitude -f dist-upgrade   # continue dist-upgrade even after error

Some really broken upgrade scripts may cause persistent trouble. It is usually better to resolve this type of situation by inspecting the /var/lib/dpkg/info/packagename.{post,pre}{inst,rm} scripts of the offending package and then running:

     # dpkg --configure -a    # configures all partially installed packages

If a script complains about a missing configuration file, look in /etc/ for the corresponding configuration file. If one exists with an extension of .dpkg-new (or something similar), mv it to remove the suffix.

Package dependency problems may occur when installing in unstable or testing. There are ways to circumvent dependencies.

     # aptitude -f install package # override broken dependencies

An alternative method to fix these situations is to use the equivs package. See file:///usr/share/doc/equivs/README.Debian and The equivs package, Section 6.5.2.

6.3.3. Rescue using dpkg

-

If you reach a dead end using APT you can download package files from Debian mirrors and install them using dpkg. If you do have not access to the network you can look for cached copies of package files in /var/cache/apt/archives/.

     # dpkg -i fetchmail_6.2.5-4_i386.deb

If attempting to install a package this way fails due to dependency violations and you really need to install the package then you can override dependency checks using dpkg's --ignore-depends, --force-depends and other options. See dpkg(8) for details.

6.3.4. Recover package selection data

-

If /var/lib/dpkg/status becomes corrupt for any reason, the Debian system loses package selection data and suffers severely. Look for the old /var/lib/dpkg/status file at /var/lib/dpkg/status-old or /var/backups/dpkg.status.*.

Keeping /var/backups/ in a separate partition may be a good idea since this directory contains lots of important system data.

If no old /var/lib/dpkg/status file is available, you can still recover information from directories in /usr/share/doc/.

     # ls /usr/share/doc | \
       grep -v [A-Z] | \
       grep -v '^texmf$' | \
       grep -v '^debian$' | \
       awk '{print $1 " install"}' | \
       dpkg --set-selections
     # dselect --expert # reinstall system, de-select as needed

6.3.5. Rescue system after crashing /var

-

Since the /var directory contains regularly updated data such as mail, it is more susceptible of corruption than, e.g., /usr/. Putting /var/ on a separate partition reduces risks. If disaster happens, you may have to rebuild the /var directory to rescue your Debian system.

Obtain the skeleton content of the /var directory from a minimum working Debian system based on the same or older Debian version, for example var.tar.gz, and place it in the root directory of the broken system. Then

     # cd /
     # mv var var-old      # if any useful contents are left
     # tar xvzf var.tar.gz # use Woody skeleton file
     # aptitude            # or dselect

This should provide a working system. You can expedite the recovery of package selections by using the technique described in Recover package selection data, Section 6.3.4. ([FIXME]: This procedure needs more experiments to verify.)

6.3.6. Install a package into an unbootable system

-

Boot into Linux using a Debian rescue floppy/CD or an alternative partition in a multiboot Linux system. See Booting the system, Section 8.1. Mount the unbootable system on /target and use the chroot install mode of dpkg.

     # dpkg --root /target -i packagefile.deb

Then configure and fix problems.

By the way, if a broken lilo is all that prevents booting, you can boot using a standard Debian rescue disk. At boot prompt, assuming the root partition of your Linux installation is in /dev/hda12 and you want runlevel 3, enter:

     boot: rescue root=/dev/hda12 3

Then you are booted into an almost fully functional system with the kernel on floppy disk. (There may be minor glitches due to lack of kernel features or modules.)

6.3.7. What to do if the dpkg command is broken

-

A broken dpkg may make it impossible to install any .deb files. A procedure like the following will help you recover from this situation. (In the first line, you can replace "links" with your favorite browser command.)

     $ links http://http.us.debian.org/debian/pool/main/d/dpkg/
       ... download the good dpkg_version_arch.deb
     $ su
     password: *****
     # ar x dpkg_version_arch.deb
     # mv data.tar.gz /data.tar.gz
     # cd /
     # tar xzfv data.tar.gz

For i386, http://packages.debian.org/dpkg may also be used as the URL.

6.4. Debian nirvana commands

Enlightenment with these commands will save a person from the eternal karmic struggle of upgrade hell and let him reach Debian nirvana. :-)

6.4.1. Information on a file

-

To find the package to which a particular filename pattern belongs in the installed packages:

     $ dpkg {-S|--search} pattern

Or to find the similar in the Debian archive:

     $ wget http://ftp.us.debian.org/debian/dists/sarge/Contents-i386.gz
     $ zgrep -e pattern Contents-i386.gz

Or use specialized package commands:

     # aptitude install dlocate  
     $ dlocate filename         # fast alternative to dpkg -L and dpkg -S
     ...
     # aptitude install auto-apt # on-demand package installation tool
     # auto-apt update          # create db file for auto-apt
     $ auto-apt search pattern  
                     # search for pattern in all packages, installed or not

6.4.2. Information on a package

-

Search and display information from package archives. Make sure to point APT to the proper archive(s) by editing /etc/apt/sources.list. If you want to see how packages in testing/unstable do against the currently installed one, use apt-cache policy—quite nice.

     # apt-get   check           # update cache and check for broken packages
     $ apt-cache search  pattern # search package from text description
     $ apt-cache policy  package # package priority/dists information
     $ apt-cache show -a package # show description of package in all dists
     $ apt-cache showsrc package # show description of matching source package
     $ apt-cache showpkg package # package information for debugging
     # dpkg  --audit|-C          # search for partially installed packages
     $ dpkg {-s|--status} package ... # description of installed package
     $ dpkg -l package ...       # status of installed package (1 line each)
     $ dpkg -L package ...       # list filenames installed by the package

apt-cache showsrc is not documented as of the Woody release but works :)

You can also find package information in (I use mc to browse these):

     /var/lib/apt/lists/*
     /var/lib/dpkg/available

The comparison of the following files provides information on what exactly has happened in the last few install sessions.

     /var/lib/dpkg/status
     /var/backups/dpkg.status*

6.4.3. Unattended installation with APT

-

For an unattended installation, add the following line in /etc/apt/apt.conf:

     Dpkg::Options {"--force-confold";}

This equivalent to running aptitude -y install packagename or apt-get -q -y install packagename. Because this automatically answers "yes" to all prompts, it may cause problems, so use this trick with care. See apt.conf(5) and dpkg(1).

You can configure any particular packages later by following Reconfigure installed packages, Section 6.4.4.

6.4.4. Reconfigure installed packages

-

Use the following to reconfigure any already-installed package.

     # dpkg-reconfigure --priority=medium package [...]
     # dpkg-reconfigure --all   # reconfigure all packages
     # dpkg-reconfigure locales # generate any extra locales
     # dpkg-reconfigure --p=low xserver-xfree86 # reconfigure X server

Do this for debconf if you need to change the debconf dialog mode permanently.

Some programs come with special configuration scripts. [36]

     apt-setup     - create /etc/apt/sources.list
     install-mbr   - install a Master Boot Record manager
     tzconfig      - set the local time zone
     gpmconfig     - set gpm mouse daemon
     eximconfig    - configure Exim (MTA)
     texconfig     - configure teTeX
     apacheconfig  - configure Apache (httpd)
     cvsconfig     - configure CVS
     sndconfig     - configure sound system
     ...
     update-alternatives - set default command, e.g., vim as vi
     update-rc.d         - System-V init script management
     update-menus        - Debian menu system

6.4.5. Remove and purge packages

-

Remove a package while maintaining its configuration:

     # aptitude remove package ...
     # dpkg   --remove package ...

Remove a package and all configuration:

     # aptitude purge  package ...
     # dpkg   --purge  package ...

6.4.6. Holding older packages

-

For example, holding of libc6 and libc6-dev for dselect and aptitude install package can be done as follows:

     # echo -e "libc6 hold\nlibc6-dev hold" | dpkg --set-selections

aptitude install package will not be hindered by this "hold". To hold a package through forcing automatic downgrade for aptitude upgrade package or aptitude dist-upgrade, add the following to /etc/apt/preferences:

     Package: libc6
     Pin: release a=stable
     Pin-Priority: 2000

Here the "Package:" entry cannot use entries such as "libc6*". If you need to keep all binary packages related to the glibc source package in a synchronized version, you need to list them explicitly.

The following will list packages on hold:

     dpkg --get-selections "*"|grep -e "hold$"

6.4.7. Mixed stable/testing/unstable system

-

apt-show-versions can list available package versions by distribution.

     $ apt-show-versions | fgrep /testing | wc
     ... how many packages you have from testing
     $ apt-show-versions -u
     ... list of upgradeable packages
     $ aptitude install `apt-show-versions -u -b | fgrep /unstable`
     ... upgrade all unstable packages to their newest versions

6.4.8. Prune cached package files

-

Package installation with APT leaves cached package files in /var/cache/apt/archives/ and these need to be cleaned.

     # aptitude autoclean # removes only useless package files
     # aptitude clean     # removes all cached package files

6.4.9. Record/copy system configuration

-

To make a local copy of the package selection states:

     # dpkg --get-selections "*" >myselections   # or use \*
     # debconf-get-selections > debconfsel.txt

"*" makes myselections include package entries for "purge" too.

You can transfer this file to another computer, and install it there with:

     # dselect update
     # debconf-set-selections < debconfsel.txt
     # dpkg --set-selections <myselections
     # apt-get -u dselect-upgrade    # or dselect install

6.4.10. Port a package to the stable system

-

For partial upgrades of the stable system, rebuilding a package within its environment using the source package is desirable. This avoids massive package upgrades due to their dependencies. First, add the following entries to /etc/apt/sources.list:

     deb-src http://http.us.debian.org/debian testing \
      main contrib non-free
     deb-src http://http.us.debian.org/debian unstable \
      main contrib non-free

Here each entry for deb-src is broken into two lines because of printing constraints, but the actual entry in sources.list should consist of a single line.

Then get the source and make a local package:

     $ apt-get update  # update the source package search list
     $ apt-get source package
     $ dpkg-source -x package.dsc
     $ cd package-version
       ... inspect required packages (Build-Depends in .dsc file) and
           install them too.  You need the "fakeroot" package also.
     
     $ dpkg-buildpackage -rfakeroot 
     
       ...or (no sig)
     $ dpkg-buildpackage -rfakeroot -us -uc # use "debsign" later if needed
     
       ...Then to install
     $ su -c "dpkg -i packagefile.deb"

Usually, one needs to install a few packages with the "-dev" suffix to satisfy package dependencies. debsign is in the devscripts package. auto-apt may ease satisfying these dependencies. Use of fakeroot avoids unnecessary use of the root account.

In Woody, these dependency issues can be simplified. For example, to compile a source-only pine package:

     # apt-get build-dep pine
     # apt-get source -b pine

6.4.11. Local package archive

-

In order to create a local package archive which is compatible with APT and the dselect system, Packages needs to be created and package files need to be populated in a particular directory tree.

A local deb repository similar to an official Debian archive can be made in this way:

     # aptitude install dpkg-dev
     # cd /usr/local
     # install -d pool # physical packages are located here
     # install -d dists/unstable/main/binary-i386
     # ls -1 pool | sed 's/_.*$/ priority section/' | uniq > override
     # editor override # adjust priority and section
     # dpkg-scanpackages pool override /usr/local/ \
        > dists/unstable/main/binary-i386/Packages
     # cat > dists/unstable/main/Release << EOF
     Archive: unstable
     Version: 3.0
     Component: main
     Origin: Local
     Label: Local
     Architecture: i386
     EOF
     # echo "deb file:/usr/local unstable main" \
        >> /etc/apt/sources.list

Alternatively, a quick-and-dirty local deb repository can be made:

     # aptitude install dpkg-dev
     # mkdir /usr/local/debian
     # mv /some/where/package.deb /usr/local/debian
     # dpkg-scanpackages /usr/local/debian /dev/null | \
       gzip - > /usr/local/debian/Packages.gz
     #  echo "deb file:/usr/local/debian ./" >> /etc/apt/sources.list

These archives can be remotely accessed by providing access to these directories through either HTTP or FTP methods and changing entries in /etc/apt/sources.list accordingly.

6.4.12. Convert or install an alien binary package

-

alien enables the conversion of binary packages provided in Red Hat rpm, Stampede slp, Slackware tgz, and Solaris pkg file formats into a Debian deb package. If you want to use a package from another Linux distribution than the one you have installed on your system, you can use alien to convert it to your preferred package format and install it. alien also supports LSB packages.

6.4.13. Automatically install command

-

auto-apt is an on-demand package installation tool.

     $ sudo auto-apt update
      ... update database
     $ auto-apt -x -y run
     Entering auto-apt mode: /bin/bash
     Exit the command to leave auto-apt mode.
     $ less /usr/share/doc/med-bio/copyright # access non-existing file
      ...  Install the package which provide this file.
      ... Also install dependencies

6.4.14. Verify installed package files

-

debsums enables verification of installed package files against MD5 checksums. Some packages do not have available MD5 checksums. A possible temporary fix for sysadmins:

     # cat >>/etc/apt/apt.conf.d/90debsums
     DPkg::Post-Install-Pkgs {"xargs /usr/bin/debsums -sg";};
     ^D

per Joerg Wendland joergland@debian.org (untested).

6.4.15. Optimized sources.list

-

In short, fancy efforts to create an optimized sources.list did not produce a significant improvement for me from a location in the USA. I manually chose a nearby site using apt-setup.

apt-spy creates sources.list automatically, based on latency and bandwidth. netselect-apt creates a more complete sources.list, but uses an inferior method of choosing the best mirror (ping time comparison).

     # aptitude install apt-spy
     # cd /etc/apt ; mv sources.list sources.list.org
     # apt-spy -d testing -l sources.apt

6.5. Other Debian peculiarities

-

6.5.1. The dpkg-divert command

-

File diversions are a way of forcing dpkg not to install a file into its default location, but to a diverted location. Diversions can be used through the Debian package scripts to move a file away when it causes a conflict. System administrators can also use a diversion to override a package's configuration file, or whenever some files (which aren't marked as conffiles) need to be preserved by dpkg, when installing a newer version of a package which contains those files (see Preservation of local configuration, Section 2.2.4).

     # dpkg-divert [--add]  filename # add "diversion"
     # dpkg-divert --remove filename # remove "diversion"

It's usually a good idea not to use dpkg-divert unless it is absolutely necessary.

6.5.2. The equivs package

-

If you compile a program from source, it is best to make it into a real local debianized package (*.deb). Use equivs as a last resort.

     Package: equivs
     Priority: extra
     Section: admin
     Description: Circumventing Debian package dependencies
      This is a dummy package which can be used to create Debian
      packages, which only contain dependency information.

6.5.3. Alternative commands

-

To make the command vi run vim, use update-alternatives:

     # update-alternatives --display vi
     ...
     # update-alternatives --config vi
       Selection    Command
     -----------------------------------------------
           1        /usr/bin/elvis-tiny
           2        /usr/bin/vim
     *+    3        /usr/bin/nvi
     
     Enter to keep the default[*], or type selection number: 2

Items in the Debian alternatives system are kept in /etc/alternatives/ as symlinks.

To set your favorite X Window environment, apply update-alternatives to /usr/bin/x-session-manager and /usr/bin/x-window-manager. For details, see Custom X sessions, Section 9.4.5.1.

/bin/sh is a direct symlink to /bin/bash or /bin/dash. It's safer to use /bin/bash to be compatible with old Bashism-contaminated scripts but better discipline to use /bin/dash to enforce POSIX compliance. Upgrading to a 2.4 Linux kernel tends to set this to /bin/dash.

6.5.4. Runlevel usage

-

When installed, most Debian packages configure their services to run in runlevels 2 through 5. Thus, there are no differences between runlevels 2, 3, 4 and 5 on a Debian system that has not been customized; Debian leaves it up to the local administrator to customize runlevels as described in Customizing runlevels, Section 2.4.3. This differs from the way runlevels are used by some other popular GNU/Linux distributions. One change you may want to make is to disable xdm or gdm in runlevel 2 so that the X display manager is not started at the end of the boot sequence; you can then start it by switching to runlevel 3.

For more information about runlevels see Runlevels, Section 2.4.2.

6.5.5. Disabled daemon services

-

Debian developers take system security seriously. Many daemon services are installed with the fewest services and features enabled.

Run ps aux or check the contents of /etc/init.d/* and /etc/inetd.conf, if you have any doubts (about Exim, DHCP, ...). Also check /etc/hosts.deny as in Restricting logins with PAM, Section 9.2.1. The pidof command is also useful (see pidof(8)).

X11 doesn't allow TCP/IP (remote) connections by default in recent versions of Debian. See Using X over TCP/IP, Section 9.4.6. X forwarding in SSH is also disabled. See Connecting to a remote X server – ssh, Section 9.4.8.

7. The Linux kernel under Debian

Debian has its own method of recompiling the kernel and related modules. See also Debian and the kernel, Section 2.7.

7.1. Kernel (re)compile

The use of gcc, binutils, and module-init-tools from Debian unstable may help when compiling the latest Linux kernel. See file:///usr/share/doc/kernel-package/README.gz, especially the bottom of this, for the official information.

7.1.1. Kernel headers

-

Most "normal" programs don't need kernel headers and in fact may break if you use them directly; instead they should be compiled against the headers with which glibc was built, which are the versions in /usr/include/linux and /usr/include/asm of the Debian system.

So do not put symlinks to the directories in /usr/src/linux from /usr/include/linux and /usr/include/asm, as suggested by some outdated documents.

If you need particular kernel headers for some kernel-specific application programs, alter the makefile(s) so that their include path points to dir-of-particular-kernel-headers/include/linux and dir-of-particular-kernel-headers/include/asm.

7.2. Tuning the kernel through the proc filesystem

The behavior of the Linux kernel can be changed on the fly using the proc filesystem. For basic information on changing kernel parameters through the /proc filesystem, read Documentation/sysctl/* in the Linux source.

7.2.1. Too many open files

-

The Linux kernel may complain "Too many open files". This is due to the small default value (8096) for file-max. To fix this problem, run the following command as root:

     # echo "65536"  > /proc/sys/fs/file-max  # for 2.2 and 2.4 kernel
     # echo "131072" > /proc/sys/fs/inode-max # for 2.2 kernel only

or put the following into /etc/sysctl.conf for the permanent change:

     file-max=65536   # for 2.2 and 2.4 kernel
     inode-max=131072 # for 2.2 kernel only

7.2.2. Disk flush intervals

-

You can change disk flush intervals through the proc filesystem. The following will shorten its interval from the default five seconds to one second.

     # echo "40 0 0 0 100 30000 60 0 0"  > /proc/sys/vm/bdflush

This may negatively impact file I/O performance a little bit. But this secures file contents except for the last one second which is shorter than the default five seconds. This is true even for journaling filesystems.

7.2.3. Sluggish old low memory machines

-

For some old low memory systems, it may still be useful to enable over-commit of memory through the proc filesystem:

     # echo 1 > /proc/sys/vm/overcommit_memory

7.2.4. The 2.6 kernel with ud

-

The udev is a dynamic replacement for /dev/. Device names can be chosen to be very short ones. The devfs used in the 2.4 kernel is now obsolete.

Installing the new Debian 2.6 kernel provided by kernel-image-2.6.NN with udev package will enable this.

8. Debian tips

See the LDP BootPrompt-HOWTO for detailed information on the boot prompt.

8.1. Booting the system

See the LDP BootPrompt-HOWTO for detailed information on the boot prompt.

8.1.1. "I forgot the root password!" (1)

-

It is possible to boot a system and log on to the root account without knowing the root password as long as one has access to the console keyboard. (This assumes there are no password requests from the BIOS or from a boot loader such as lilo that would prevent one from booting the system.)

This is a procedure which requires no external boot disks and no change in BIOS boot settings. Here, "Linux" is the label for booting the Linux kernel in the default Debian install.

At the lilo boot screen, as soon as boot: appears (you must press a shift key at this point on some systems to prevent automatic booting and when lilo uses the framebuffer you have to press TAB to see the options you type), enter:

     boot: Linux init=/bin/sh

This causes the system to boot the kernel and run /bin/sh instead of its standard init. Now you have gained root privileges and a root shell. Since / is currently mounted read-only and many disk partitions have not been mounted yet, you must do the following to have a reasonably functioning system.

     init-2.03# mount -n -o remount,rw /
     init-2.03# mount -avt nonfs,noproc,nosmbfs
     init-2.03# cd /etc
     init-2.03# vi passwd
     init-2.03# vi shadow

(If the second data field in /etc/passwd is "x" for every username, your system uses shadow passwords, and you must edit /etc/shadow.) To disable the root password, edit the second data field in the password file so that it is empty. Now the system can be rebooted and you can log on as root without a password. When booting into runlevel 1, Debian (at least after Potato) requires a password, which some older distributions did not.

It is a good idea to have a minimal editor in /bin/ in case /usr/ is not accessible (see Rescue editors, Section 11.2).

Also consider installing the sash package. When the system becomes unbootable, execute:

     boot: Linux init=/bin/sash

sash serves as an interactive substitute for sh even when /bin/sh is unusable. It's statically linked, and includes many standard utilities as built-ins (type "help" at the prompt for a reference list).

8.1.2. "I forgot the root password!" (2)

-

Boot from any emergency boot/root disk set. If /dev/hda3 is the original root partition, the following will let one edit the password file just as easily as the above.

     # mkdir fixit
     # mount /dev/hda3 fixit
     # cd fixit/etc
     # vi shadow
     # vi passwd

The advantage of this approach over the previous method is one does not need to know the lilo password (if any). But to use it one must be able to access the BIOS setup to allow the system to boot from floppy disk or CD, if that is not already set.

8.1.3. Cannot boot the system

-

No problem, even if you didn't bother to make a boot disk during install. If lilo is broken, grab the boot disk from the Debian installation set and boot your system from it. At the boot prompt, assuming the root partition of your Linux installation is on /dev/hda12 and you want runlevel 3, enter:

     boot: rescue root=/dev/hda12 3

Then you are booted into an almost fully functional system using the kernel on the floppy. (There may be minor glitches due to lack of kernel features or modules.)

See also Install a package into an unbootable system, Section 6.3.6 if you have a broken system.

If you need a custom boot floppy, follow readme.txt on the rescue disk.

8.1.4. "Let me disable X on boot!"

-

Chasing unstable/sid is fun, but buggy xdm, gdm, kdm, or wdm started during the boot process can bite you bad.

First get the root shell by entering the following at the boot prompt:

     boot: Linux vga=normal s

Here, Linux is the label for the kernel image you are booting; "vga=normal" will make sure lilo runs in normal VGA screen, and "s" (or "S") is the parameter passed to init to invoke single-user mode. Enter the root password at the prompt.

There are few ways to disable all the X starting daemons:

  • run update-rc.d -f ?dm remove ; update-rc.d ?dm stop 99 1 2 3 4 5 6 .

  • insert "exit 0" at the start of all /etc/init.d/?dm files.

  • rename all /etc/rc2.d/S99?dm files to /etc/rc2.d/K99?dm.

  • remove all /etc/rc2.d/S99?dm files.

  • run :>/etc/X11/default-display-manager

Here, number in rc2.d must correspond to the runlevel specified in the /etc/inittab. Also ?dm means that you need to run the command multiple times by substituting it with all of the xdm, gdm, kdm, and wdm.

Only the first one in the list is "the one true way" in Debian. The last one is easy but only works on Debian and requires you to set the display manager again later using dpkg-reconfigure. Others are generic methods to disable daemons.

You can still start X with the startx command from any console shell.

8.1.5. Other boot tricks with the boot prompt

-

The system can be booted into a particular runlevel and configuration using the lilo boot prompt. Details are given in the BootPrompt-HOWTO (LDP).

If you want to boot the system into runlevel 4, use the following input at the lilo boot prompt.

     boot: Linux 4

If you want to boot the system into normally functioning single-user mode and you know the root password, one of the following examples at the lilo boot prompt will work.

     boot: Linux S
     boot: Linux 1
     boot: Linux -s

If you want to boot the system with less memory than system actually has (say 48MB for a system with 64MB), use this input at the lilo boot prompt:

     boot: Linux mem=48M

Make sure not to specify more than the actual memory size here, otherwise the kernel will crash. If one has more than 64MB of memory, e.g. 128MB, unless one executes mem=128M at the boot prompt or includes a similar append line in /etc/lilo.conf, old kernels and/or a motherboard with an old BIOS will not use memory beyond 64MB.

8.1.6. Setting GRUB boot parameters

-

GRUB is a new boot manager from the GNU Hurd project and is much more flexible than Lilo but has slightly different handling of boot parameters.

     grub> find /vmlinuz
     grub> root (hd0,0)
     grub> kernel /vmlinuz root=/dev/hda1
     grub> initrd /initrd
     grub> boot

Here, you must be aware of the Hurd device names:

     the Hurd/GRUB       Linux               MS-DOS/Windows
      (fd0)               /dev/fd0            A:
      (hd0,0)             /dev/hda1           C: (usually)
      (hd0,3)             /dev/hda4           F: (usually)
      (hd1,3)             /dev/hdb4           ?

See file:///usr/share/doc/grub/README.Debian.gz and file:///usr/share/doc/grub-doc/html/ for details.

8.2. Recording activities

-

8.2.1. Recording shell activities

-

System administration involves much more elaborate tasks in a Unix environment than in an ordinary personal computer environment. Make sure to know the most basic means of configuration in case you need to recover from system trouble. X11-based GUI configuration tools look nice and convenient but are often unsuitable in these emergency situations.

In this context, recording shell activities is a good practice, especially as root.

Emacs: Use M-x shell to start recording into a buffer, and use C-x C-w to write the buffer to a file.

Shell: Use the screen command with "^A H" as described in Console switching with screen, Section 8.6.28; or use the script command.

     $ script
     Script started, file is typescript
      ... do whatever ...
      Ctrl-D
     $ col -bx <typescript >savefile
     $ vi savefile

The following can be used instead of script:

     $ bash -i 2>&1 | tee typescript

8.2.2. Recording X activities

-

If you need to record the graphic image of an X application, including an xterm display, use gimp (GUI). It can capture each window or the whole screen. Alternatives are xwd (xbase-clients), import (imagemagick), and scrot (scrot).

8.3. Copy and archive a whole subdirectory

These copy and archive commands provide basics for the backup of the system and the data. An example of simple backup script is provided as backup in the example scripts.

8.3.1. Basic commands for copying a whole subdirectory

-

If you need to rearrange file structure, move content including file links by:

     Standard method:
     # cp -a /source/directory /dest/directory # requires GNU cp
     # (cd /source/directory && tar cf - . ) | \
             (cd /dest/directory && tar xvfp - )
     If a hard link is involved, a pedantic method is needed:
     # cd /path/to/old/directory
     # find . -depth -print0 | afio -p -xv -0a /mount/point/of/new/directory
     If remote:
     # (cd /source/directory && tar cf - . ) | \
             ssh user@host.dom (cd /dest/directory && tar xvfp - )
     If there are no linked files:
     # scp -pr user1@host1.dom:/source/directory \
               user2@host2.dom:/dest/directory

The following comparative information on copying a whole subdirectory was presented by Manoj Srivastava srivasta@debian.org to debian-user@lists.debian.org.

8.3.2. cp

-

Traditionally, cp was not really a candidate for this task since it did not dereference symbolic links, or preserve hard links either. Another thing to consider was sparse files (files with holes).

GNU cp has overcome these limitations; however, on a non-GNU system, cp could still have problems. Also, you can't generate small, portable archives using cp.

     % cp -a . newdir

8.3.3. tar

-

Tar overcame some of the problems that cp had with symbolic links. However, although cpio handles special files, traditional tar doesn't.

tar's way of handling multiple hard links to a file places only one copy of the link on the tape, but the name attached to that copy is the only one you can use to retrieve the file; cpio's way puts one copy for every link, but you can retrieve it using any of the names.

The tar command changed its option for .bz2 files between Potato and Woody, so use --bzip2 in scripts instead of its short form -I (Potato) or -j (Woody).

8.3.4. pax

-

The new, POSIX (IEEE Std 1003.2-1992, pages 380–388 (section 4.48) and pages 936–940 (section E.4.48)), all-singing, all-dancing, Portable Archive Interchange utility. pax will read, write, and list the members of an archive file, and will copy directory hierarchies. pax operation is independent of the specific archive format, and supports a wide variety of different archive formats.

pax implementations are still new and wet behind the ears.

     # apt-get install pax
     $ pax -rw -p e . newdir
      or
     $ find . -depth  | pax -rw -p e  newdir

8.3.5. cpio

-

cpio copies files into or out of a cpio or tar archive. The archive can be another file on the disk, a magnetic tape, or a pipe.

     $ find . -depth -print0 | cpio --null --sparse -pvd new-dir

8.3.6. afio

-

afio is a better way of dealing with cpio-format archives. It is generally faster than cpio, provides more diverse magnetic tape options and deals somewhat gracefully with input data corruption. It supports multivolume archives during interactive operation. afio can make compressed archives that are much safer than compressed tar or cpio archives. afio is best used as an "archive engine" in a backup script.

     $ find . -depth -print0 | afio -px -0a new-dir

All my backups onto tape use afio.

8.4. Differential backup and data synchronization

Differential backup and data synchronization can be implemented with several methods.

8.4.1. Differential backup with rdiff

-

rdiff-backup offers nice and simple backup with differential history for any types of files, including symlinks. To back up most of ~/ to /mnt/backup:

     $ rdiff-backup --include ~/tmp/keep --exclude ~/tmp  ~/ /mnt/backup

To restore three-day-old data from this archive to ~/old:

     $ rdiff-backup -r 3D /mnt/backup ~/old

See rdiff-backup(1).

8.4.2. Daily backup with pdumpfs

-

pdumpfs is a simple daily backup system similar to Plan9's dumpfs which preserves every daily snapshot. You can access the past snapshots at any time for retrieving a certain day's file. Let's backup your home directory with pdumpfs and cron!

pdumpfs constructs the snapshot YYYY/MM/DD in the destination directory. All source files are copied to the snapshot directory when pdumpfs is run for the first time. On and after the second time, pdumpfs copies only updated or newly created files and stores unchanged files as hard links to the files of the previous day's snapshot in order to save disk space.

     $ pdumpfs src-dir dest-dir [dest-basename]

See pdumpfs(8).

8.4.3. Regular differential backup with RCS

-

Changetrack will record changes to the text-based configuration files in RCS archives regularly. See changetrack(1).

     # apt-get install changetrack
     # vi changetrack.conf

8.5. System freeze recovery

-

8.5.1. Kill a process

-

Run top to see what process is acting funny. Press `P' to sort by CPU usage, `M' to sort by memory, and `k' to kill a process. Alternatively, BSD-style ps aux | less or System-V-style ps -efH | less may be used. The System-V-style syntax displays parent process IDs (PPID) which can be used for killing zombie (defunct) children.

Use kill to kill (or send a signal to) a process by process ID, killall to do the same by process command name. Frequently used signals:

      1: HUP,  restart daemon

8.5.2. Alt-SysRq

-

Insurance against system malfunction is provided by the kernel compile option "Magic SysRq key". Pressing Alt-SysRq on an i386, followed by one of the keys r 0 k e i s u b, does the magic.

Un`r'aw restores the keyboard after things like X crashes. Changing the console loglevel to `0' reduces error messages. sa`k' (system attention key) kills all processes on the current virtual console. t`e'rminate kills all processes on the current terminal except init. k`i'll kills all processes except init.

`S'ync, `u'mount, and re`b'oot are for getting out of really bad situations.

Detailed information is in /usr/share/doc/kernel-doc-version/Documentation/sysrq.txt.gz or /usr/src/kernel-version/Documentation/sysrq.txt.gz.

8.6. Nifty little commands to remember

-

8.6.1. Pager

-

less is the default pager (file content browser). Hit `h' for help. It can do much more than more. less can be supercharged by executing eval $(lesspipe) or eval $(lessfile) in the shell startup script. See more in file:///usr/share/doc/less/LESSOPEN. The -R option allows raw character output and enables ANSI color escape sequences. See less(1).

w3m may be a useful alternative pager for some code systems (EUC).

8.6.2. Free memory

-

free and top give good information on memory resources. Do not worry about the size of "used" in the "Mem:" line, but read the one under it (38792 in the example below).

     $ free -k # for 256MB machine
                  total       used       free     shared    buffers cached
     Mem:        257136     230456      26680      45736     116136 75528
     -/+ buffers/cache:      38792     218344
     Swap:       264996          0     264996

The exact amount of physical memory can be confirmed by grep '^Memory' /var/log/dmesg, which in this case gives "Memory: 256984k/262144k available (1652k kernel code, 412k reserved, 2944k data, 152k init)".

     Total         = 262144k = 256M (1k=1024, 1M=1024k)
     Free to dmesg = 256984k = Total - kernel - reserved - data - init
     Free to shell = 257136k = Total - kernel - reserved - data

About 5MB is not usable by the system because the kernel uses it.

8.6.3. Set time (BIOS)

-

     # date MMDDhhmmCCYY
     # hwclock --utc --systohc
     # hwclock --show

This will set system and hardware time to MM/DD hh:mm, CCYY. Times are displayed in local time but hardware time uses UTC.

If the hardware (BIOS) time is set to GMT, change the setting to UTC=yes in the /etc/default/rcS.

8.6.4. Set time (NTP)

-

8.6.4.1. Set time with permanent Internet connection

-

Set system clock to the correct time automatically via a remote server:

     # ntpdate server

This is good to have in /etc/cron.daily/ if your system has a permanent Internet connection.

8.6.4.2. Set time with sporadic Internet connection

-

Use the chrony package.

8.6.5. How to control console features such as the screensaver

-

For disabling the screensaver, use following commands.

In the Linux console:

     # setterm -powersave off

Start the kon2 (kanji) console with:

     # kon -SaveTime 0

While running X:

     # xset s off
      or
     # xset -dpms
      or
     # xscreensaver-command -prefs

Read the corresponding manpages for controlling other console features. See also stty(1) for changing and printing terminal line settings.

8.6.6. Search administrative database

-

Glibc offers getent(1) for searching entries from administrative databases, i.e., passwd, group, hosts, services, protocols, or networks.

     getent database [key ...]

8.6.7. Disable sound (beep)

-

One can always unplug the PC speaker. ;-) For the Bash shell:

     echo "set bell-style none">> ~/.inputrc

8.6.8. Error messages on the console screen

-

In order to quiet on-screen error messages, the first place to check is /etc/init.d/klogd. Set KLOGD="-c 3" in this script and run /etc/init.d/klogd restart. An alternative method is to run dmesg -n3.

Here error levels mean:

  • 0: KERN_EMERG, system is unusable

  • 1: KERN_ALERT, action must be taken immediately

  • 2: KERN_CRIT, critical conditions

  • 3: KERN_ERR, error conditions

  • 4: KERN_WARNING, warning conditions

  • 5: KERN_NOTICE, normal but significant condition

  • 6: KERN_INFO, informational

  • 7: KERN_DEBUG, debug-level messages

If one particular useless error message bothers you a lot, consider making a trivial kernel patch like shutup-abit-bp6 (available in the examples subdirectory).

Another place to look may be /etc/syslog.conf; check to see whether any messages are logged to a console device.

8.6.9. Set console to the correct type

-

Console screens in Unix-like systems are usually accessed using (n)curses library routines. These give the user a terminal-independent method of updating character screens with reasonable optimization. See ncurses(3X) and terminfo(5).

On a Debian system, there are quite a lot of predefined entries:

     $ toe | less                  # all entries
     $ toe /etc/terminfo/ | less   # user reconfigurable entries

Export your selection as environment variable TERM.

If the terminfo entry for xterm doesn't work with a non-Debian xterm, change your terminal type from "xterm" to one of the feature-limited versions such as "xterm-r6" when you log in to a Debian system remotely. See file:///usr/share/doc/libncurses5/FAQ for more. "dumb" is the lowest common denominator for terminfo.

8.6.10. Get the console back to a sane state

-

When the screen goes berserk after cat some-binary-file (you may not be able to see the command echoed as you type):

     $ reset

8.6.11. Convert a text file from DOS to Unix style

-

Convert a DOS text file (end-of-line = ^M^J) to a Unix text file (end-of-line = ^J).

     # apt-get install sysutils
     $ dos2unix dosfile

8.6.12. Convert a text file with recode

-

Following will convert text files between DOS, Mac, and Unix line ending styles:

     $ recode /cl../cr <dos.txt >mac.txt
     $ recode /cr.. <mac.txt >unix.txt
     $ recode ../cl <unix.txt >dos.txt

Free recode converts files between various character sets and surfaces with:

     $ recode charset1/surface1..charset2/surface2 \
       <input.txt >output.txt

Common character sets used are (see also Introduction to locales, Section 9.7.3) [37] :

  • us — ASCII (7 bits)

  • l1 — ISO Latin-1 (ISO-8859-1, Western Europe, 8 bits)

  • EUCJP — EUC-JP for Japanese (Unix)

  • SJIS — Shift-JIS for Japanese (Microsoft)

  • ISO2022JP — Mail encoding for Japanese (7 bits)

  • u2 — UCS-2 (Universal Character Set, 2 bytes)

  • u8 — UTF-8 (Universal Transformation Format, 8 bits)

Common surfaces used are [38] :

  • /cr — Carriage return as end of line (Mac text)

  • /cl — Carriage return line feed as end of line (DOS text)

  • / — Line feed as end of line (Unix text)

  • /d1 — Human readable bytewise decimal dump

  • /x1 — Human readable bytewise hexidecimal dump

  • /64 — Base64 encoded text

  • /QP — Quoted-Printable encoded text

For more, see pertinent description in the info recode.

There are also more specialized conversion tools:

  • character set conversion:

    • iconv — locale encoding conversions

    • konwert — fancy encoding conversions

  • binary file conversion:

    • uuencode and uudecode — for Unix.

    • mimencode — for the mail.

8.6.13. Regular-expression substitution

-

Replace all instances of FROM_REGEX with TO_TEXT in all of the files FILES ...:

     $ perl -i -p -e 's/FROM_REGEX/TO_TEXT/g;' FILES ...

-i is for "in-place editing", -p is for "implicit loop over FILES ...". If the substitution is complex, you can make recovery from errors easier by using the parameter -i.bak instead of -i; this will keep each original file, adding .bak as a file extension.

8.6.14. Edit a file in place using a script

-

The following script will remove lines 5–10 and lines 16–20 in place.

     #!/bin/bash
     ed $1 <<EOF
     16,20d
     5,10d
     w
     q
     EOF

Here, ed commands are the same as vi command-mode commands. Editing from the back of file makes it easy for scripting.

8.6.15. Extract differences and merge updates for source files

-

Following one of these procedures will extract differences between two source files and create unified diff files file.patch0 or file.patch1 depending on the file location:

     $ diff -u file.old file.new > file.patch0
     $ diff -u old/file new/file > file.patch1

The diff file (alternatively called patch file) is used to send a program update. The receiving party will apply this update to another file by:

     $ patch -p0 file < file.patch0
     $ patch -p1 file < file.patch1

If you have three versions of source code, you can merge them more effectively using diff3:

     $ diff3 -m file.mine file.old file.yours > file

8.6.16. Convert a large file into small files

-

     $ split -b 650m file   # split file into 650MB chunks
     $ cat x* >largefile    # merge files into 1 large file

8.6.17. Extract data from text file table

-

Let's consider a text file called DPL in which all previous Debian project leader's names and their initiation days are listed in a space-separated format.

     Ian     Murdock   August  1993
     Bruce   Perens    April   1996
     Ian     Jackson   January 1998
     Wichert Akkerman  January 1999
     Ben     Collins   April   2001
     Bdale   Garbee    April   2002
     Martin  Michlmayr March   2003

Awk is frequently used to extract data from these types of files.

     $ awk '{ print $3 }' <DPL                   # month started
     August
     April
     January
     January
     April
     April
     March
     $ awk '($1=="Ian") { print }' <DPL          # DPL called Ian
     Ian     Murdock   August  1993
     Ian     Jackson   January 1998
     $ awk '($2=="Perens") { print $3,$4 }' <DPL # When Perens started
     April 1996

Shells such as Bash can be also used to parse this kind of file:

     $ while read first last month year; do 
         echo $month
       done <DPL
     ... same output as the first Awk example

Here, read built-in command uses the characters in $IFS (internal field separators) to split lines into words.

If you change IFS to ":", you can parse /etc/passwd with shell nicely:

     $ oldIFS="$IFS"   # save old value
     $ IFS=":"
     $ while read user password uid gid rest_of_line; do
         if [ "$user" = "osamu" ]; then 
           echo "$user's ID is $uid"
         fi
       done < /etc/passwd
     osamu's ID is 1001
     $ IFS="$oldIFS"   # restore old value

(If Awk is used to do the equivalent, use FS=":" to set the field separator.)

IFS is also used by the shell to split results of parameter expansion, command substitution, and arithmetic expansion. These do not occur within double or single quoted words. The default value of IFS is <space>, <tab>, and <newline> combined.

Be careful about using this shell IFS tricks. Strange things may happen, when shell interprets some parts of the script as its input.

     $ IFS=":,"                        # use ":" and "," as IFS
     $ echo IFS=$IFS,   IFS="$IFS"     # echo is a Bash built-in
     IFS=  , IFS=:,
     $ date -R                         # just a command output
     Sat, 23 Aug 2003 08:30:15 +0200
     $ echo $(date -R)                 # sub shell --> input to main shell
     Sat  23 Aug 2003 08 30 36 +0200
     $ unset IFS                       # reset IFS to the default
     $ echo $(date -R)
     Sat, 23 Aug 2003 08:30:50 +0200

8.6.18. Script snippets for piping commands

-

The following scripts will do nice things as a part of a pipe.

     find /usr | egrep -v "/usr/var|/usr/tmp|/usr/local"
                          # find all files in /usr excluding some files
     xargs -n 1 command   # run command for all items from stdin
     xargs -n 1 echo |    # split white-space-separated items into lines
     xargs echo      |    # merge all lines into a line
     grep -e pattern|     # extract lines containing pattern
     cut -d: -f3 -|
             # extract third field separated by : (passwd file etc.)
     awk '{ print $3 }' | # extract third field separated by whitespaces
     awk -F'\t' '{ print $3 }' |
             # extract third field separated by tab
     col -bx |            # remove backspace and expand tabs to spaces
     expand -|            # expand tabs
     sort -u|             # sort and remove duplicates
     
     tr '\n' ' '|         # concatenate lines into one line
     tr '\r' ''|          # remove CR
     tr 'A-Z' 'a-z'|      # convert uppercase to lowercase
     sed 's/^/# /'|       # make each line a comment
     sed 's/\.ext//g'|    # remove .ext
     sed  -n -e 2p|       # print the second line 
     head -n 2 -|         # print the first 2 lines
     tail -n 2 -|         # print the last 2 lines

8.6.19. Script snippets for looping over each file

-

The following ways of looping over each file matching *.ext ensures proper handling of funny file names such as ones with spaces and performs equivalent process:

  • Shell loop (This example is multi line style with PS2=" ". To do the same in one line, you insert a semicolon for each line break.):

         for x in *.ext; do
           if test -f "$x"; then
             command "$x"
           fi
         done
    
  • find and xargs combination:

         find . -type f -maxdepth 1 -name '*.ext' -print0 | \
          xargs -0 -n 1 command
    
  • find with -exec option with a command:

         find . -type f -maxdepth 1 -name '*.ext' \
          -exec command '{}' \;
    
  • find with -exec option with a short shell script:

         find . -type f -maxdepth 1 -name '*.ext' \
          -exec sh -c "command '{}' && echo 'successful'" \;
    

8.6.20. Perl short script madness

-

Although any Awk scripts can be automatically rewritten in Perl using a2p(1), one-liner Awk scripts are best converted to one-liner perl scripts manually. For example

     awk '($2=="1957") { print $3 }' |

is equivalent to any one of the following lines:

     perl -ne '@f=split; if ($f[1] eq "1957") { print "$f[2]\n"}' |
     perl -ne 'if ((@f=split)[1] eq "1957") { print "$f[2]\n"}' |
     perl -ne '@f=split; print $f[2] if ( $f[1]==1957 )' |
     perl -lane 'print $F[2] if $F[1] eq "1957"' |

Since all the whitespace in the arguments to perl in the line above can be removed, and taking advantage of the automatic conversions between numbers and strings in Perl:

     perl -lane 'print$F[2]if$F[1]eq+1957' |

See perlrun(1) for the command-line options. For more crazy Perl scripts, http://perlgolf.sourceforge.net may be interesting.

8.6.21. Get text or a mailing list archive from a web page

-

The following will read a web page into a text file. Very useful when copying configurations off the Web.

     $ lynx -dump http://www.remote-site.com/help-info.html >textfile

links and w3m can be used here, too, with slight differences in rendering.

If this is a mailing list archive, use munpack to obtain mime contents from text.

8.6.22. Pretty print a web page

-

The following will print a web page into a PostScript file/printer.

     $ apt-get install html2ps
     $ html2ps URL | lpr

See lpr/lpd, Section 3.6.1. Also check a2ps and mpage packages for creating PostScript files.

8.6.23. Pretty print a manual page

-

The following will print a manual page into a PostScript file/printer.

     $ man -Tps some-manpage | lpr
     $ man -Tps some-manpage | mpage -2 | lpr

8.6.24. Merge two PostScript or PDF files

-

You can merge two PostScript or PDF files.

     $ gs -q -dNOPAUSE -dBATCH -sDEVICE=pswrite \
       -sOutputFile=bla.ps -f foo1.ps foo2.ps
     $ gs -q -dNOPAUSE -dBATCH -sDEVICE=pdfwrite \
       -sOutputFile=bla.pdf -f foo1.pdf foo2.pdf

8.6.25. Time a command

-

Display time used by a process.

     # time some-command >/dev/null
     real    0m0.035s       # time on wall clock (elapsed real time)
     user    0m0.000s       # time in user mode
     sys     0m0.020s       # time in kernel mode

8.6.26. nice command

-

Use nice (from the GNU shellutils package) to set a command's nice value when starting. renice (bsdutils) and top can renice a process. A nice value of 19 represents the slowest (lowest priority) process; negative values are "not-nice", with -20 being a very fast (high priority) process. Only the superuser can set negative nice values.

     # nice  -19 top                                      # very nice
     # nice --20 wodim -v -eject speed=2 dev=0,0 disk.img # very fast

Sometimes an extreme nice value does more harm than good to the system. Use this command carefully.

8.6.27. Schedule activity (cron, at)

-

Use cron and at to schedule tasks under Linux. See at(1), crontab(5), crontab(8).

Run the command crontab -e to create or edit a crontab file to set up regularly scheduled events. Example of a crontab file:

     # use /bin/sh to run commands, no matter what /etc/passwd says
     SHELL=/bin/sh
     # mail any output to `paul', no matter whose crontab this is
     MAILTO=paul
     # Min Hour DayOfMonth Month DayOfWeek command (Day... are OR'ed)
     # run at 00:05, every day
     5  0  *  * *   $HOME/bin/daily.job >> $HOME/tmp/out 2>&1
     # run at 14:15 on the first of every month -- output mailed to paul
     15 14 1  * *   $HOME/bin/monthly
     # run at 22:00 on weekdays(1-5), annoy Joe. % for newline, last % for cc:
     0 22 *   * 1-5 mail -s "It's 10pm" joe%Joe,%%Where are your kids?%.%%
     23 */2 1 2 *   echo "run 23 minutes after 0am, 2am, 4am ..., on Feb 1"
     5  4 *   * sun echo "run at 04:05 every sunday"
     # run at 03:40 on the first Monday of each month
     40 3 1-7 * *   [ "$(date +%a)" == "Mon" ] && command -args

Run the at command to schedule a one-time job:

     $ echo 'command -args'| at 3:40 monday

8.6.28. Console switching with screen

The screen program allows you to run multiple virtual terminals, each with its own interactive shell, on a single physical terminal or terminal emulation window.

8.6.28.1. Remote access scenario

-

If you frequently log on to a Linux machine from a remote terminal or using a VT100 terminal program, screen will make your life much easier with the detach feature.

  • You are logged in via a dialup connection, and are running a complex screen session with editors and other programs open in several windows. 
  • Suddenly you need to leave your terminal, but you don't want to lose your work by hanging up. 
  • Simply type ^A d to detach the session, then log out. (Or, even quicker, type ^A DD to have screen detach and log you out itself.)
  • When you log on again later, enter the command screen -r, and screen will magically reattach all the windows you had open.

8.6.28.2. Typical screen commands

-

Once you start screen, all keyboard input is sent to your current window except for the command keystroke, by default ^A. All screen commands are entered by typing ^A plus a single key [plus any parameters]. Useful commands:

     ^A ?     show a help screen (display key bindings)
     ^A c     create a new window and switch to it
     ^A n     go to next window
     ^A p     go to previous window
     ^A 0     go to window number 0
     ^A w     show a list of windows
     ^A a     send a Ctrl-A to current window as keyboard input
     ^A h     write a hardcopy of current window to file 
     ^A H     begin/end logging current window to file
     ^A ^X    lock the terminal (password protected)
     ^A d     detach screen session from the terminal
     ^A DD    detach screen session and log out

This is only a small subset of screen's commands and features. If there's something you want screen to be able to do, chances are it can! See screen(1) for details.

8.6.28.3. Backspace and/or Ctrl-H in screen session

-

If you find that backspace and/or Ctrl-H do not work properly when you are running screen, edit /etc/screenrc, find the line reading

     bindkey -k kb stuff "\177"

and comment it out (i.e., add "#" as the first character).

8.6.28.4. Equivalent program to screen for X

-

Check out xmove. See xmove(1).

8.6.29. Network testing basics

-

Install netkit-ping, traceroute, dnsutils, ipchains (for 2.2 kernel), iptables (for 2.4 kernel), and net-tools packages and:

     $ ping yahoo.com            # check Internet connection
     $ traceroute yahoo.com      # trace IP packets
     $ ifconfig                  # check host config
     $ route -n                  # check routing config
     $ dig [@dns-server.com] host.dom [{a|mx|any}] |less
           # check host.dom DNS records by dns-server.com 
           # for a {a|mx|any} record
     $ ipchains -L -n |less      # check packet filter (2.2 kernel)
     $ iptables -L -n |less      # check packet filter (2.4 kernel)
     $ netstat -a                # find all open ports
     $ netstat -l --inet         # find listening ports
     $ netstat -ln --tcp         # find listening TCP ports (numeric)

8.6.30. Flush mail from local spool

-

To flush mail from the local spool:

     # exim4 -q    # flush waiting mail
     # exim4 -qf   # flush all mail
     # exim4 -qff  # flush even frozen mail

-qff may be better as an option in the /etc/ppp/ip-up.d/exim script. For Woody and older distributions, replace exim4 with exim.

8.6.31. Remove frozen mail from local spool

-

To remove frozen mail from the local spool with a delivery error message:

     # exim4 -Mg `mailq | grep frozen | awk '{ print $3 }'`

For Woody and older distributions, replace exim4 with exim.

8.6.32. Redeliver mbox contents

-

You need to manually deliver mails to the sorted mailboxes in your home directory from /var/mail/username if your home directory became full and procmail failed. After making disk space in the home directory, run:

     # /etc/init.d/exim4 stop
     # formail -s procmail </var/mail/username
     # /etc/init.d/exim4 start

For Woody and older distributions, replace exim4 with exim.

8.6.33. Clear file contents

-

In order to clear the contents of a file such as a logfile, do not use rm to delete the file and then create a new empty file, because the file may still be accessed in the interval between commands. The following is the safe way to clear the contents of the file.

     $ :>file-to-be-cleared

8.6.34. Dummy files

-

The following commands will create dummy or empty files:

     $ dd if=/dev/zero    of=filename bs=1k count=5 # 5KB of zero content
     $ dd if=/dev/urandom of=filename bs=1M count=7 # 7MB of random content
     $ touch filename #  create 0B file (if file exists, updates mtime)

For example, the following commands executed from the shell of the Debian boot floppy will erase all the content of the hard disk /dev/hda completely for most practical uses.

     # dd if=/dev/urandom of=/dev/hda; dd if=/dev/zero of=/dev/hda

8.6.35. chroot

The chroot program, chroot(8), enables us to run different instances of the GNU/Linux environment on a single system simultaneously without rebooting. One may also run a resource hungry program such as apt-get or dselect under the chroot of a fast host machine while NFS-mounting a slow satellite machine to the host as r/w and the chroot point being the mount point of the satellite machine.

8.6.35.1. Run a different Debian distribution with chroot

-

A chroot Debian environment can easily be created by the debootstrap command in Sarge. For post-Sarge distributions, you may use cdebootstrap command instead with appropriate option. For example, to create a Sid chroot on /sid-root while having fast Internet access:

     main # cd /; mkdir /sid-root
     main # debootstrap sid /sid-root http://ftp.debian.org/debian/
     ... watch it download the whole system
     main # echo "proc /sid-root/proc proc none 0 0" >> /etc/fstab
     main # mount /sid-root/proc
     main # mount /dev/ /sid-root/dev -o bind
     main # cp /etc/hosts /sid-root/etc/hosts
     main # chroot /sid-root /bin/bash
     chroot # cd /dev; /sbin/MAKEDEV generic; cd -
     chroot # apt-setup # set-up /etc/apt/sources.list
     chroot # vi /etc/apt/sources.list # point the source to unstable
     chroot # dselect  # you may use aptitude, install mc and vim :-)

At this point you should have a fully working Debian system, where you can play around without fear of affecting your main Debian installation.

This debootstrap trick can also be used to install Debian to a system without using a Debian install disk, but instead one for another GNU/Linux distribution. See http://www.debian.org/releases/stable/i386/apcs04.

8.6.35.2. Setting up login for chroot

-

Typing chroot /sid-root /bin/bash is easy, but it retains all sorts of environment variables that you may not want, and has other issues. A much better approach is to run another login process on a separate virtual terminal where you can log in to the chroot directly.

Since on default Debian systems tty1 to tty6 run Linux consoles and tty7 runs the X Window System, let's set up tty8 for a chrooted console as an example. After creating a chroot system as described in Run a different Debian distribution with chroot, Section 8.6.35.1, type from the root shell of the main system:

     main # echo "8:23:respawn:/usr/sbin/chroot /sid-root "\
            "/sbin/getty 38400 tty8" >> /etc/inittab
     main # init q    # reload init

8.6.35.3. Setting up X for chroot

-

You want to run the latest X and GNOME safely in your chroot? That's entirely possible! The following example will make GDM run on virtual terminal vt9.

First install a chroot system using the method described in Run a different Debian distribution with chroot, Section 8.6.35.1. From the root of the main system, copy key configuration files to the chroot system.

     main # cp /etc/X11/XF86Config-4 /sid-root/etc/X11/XF86Config-4
     main # chroot /sid-root # or use chroot console
     chroot # cd /dev; /sbin/MAKEDEV generic; cd -
     chroot # apt-get install gdm gnome x-window-system
     chroot # vi /etc/gdm/gdm.conf # do s/vt7/vt9/ in [servers] section
     chroot # /etc/init.d/gdm start

Here, /etc/gdm/gdm.conf was edited to change the first virtual console from vt7 to vt9.

Now you can easily switch back and forth between full X environments in your chroot and your main system just by switching between Linux virtual terminals; e.g. by using Ctrl-Alt-F7 and Ctrl-Alt-F9. Have fun!

[FIXME] Add a comment and link to the init script of the chrooted gdm.

8.6.35.4. Run other distributions with chroot

-

A chroot environment for another Linux distribution can easily be created. You install a system into separate partitions using the installer of the other distribution. If its root partition is in /dev/hda9:

     main # cd /; mkdir /other-dist
     main # mount -t ext3 /dev/hda9 /other-dist
     main # chroot /other-dist /bin/bash

Then proceed as in Run a different Debian distribution with chroot, Section 8.6.35.1, Setting up login for chroot, Section 8.6.35.2, and Setting up X for chroot, Section 8.6.35.3.

8.6.35.5. Build a package with chroot

-

There is a more specialized chroot package, pbuilder, which constructs a chroot system and builds a package inside the chroot. It is an ideal system to use to check that a package's build-dependencies are correct, and to be sure that unnecessary and wrong build dependencies will not exist in the resulting package.

8.6.36. How to check hard links

-

You can check whether two files are the same file with two hard links by:

      
     $ ls -li file1 file2

8.6.37. mount hard disk image file

-

If file.img contains an image of hard disk contents and the original hard disk had a disk configuration which gives xxxx = (bytes/sector) * (sectors/cylinder), then the following will mount it to /mnt:

     # mount -o loop,offset=xxxx file.img /mnt

Note that most hard disks have 512 bytes/sector.

8.6.38. Samba

-

Basics of getting files from Windows:

     # mount -t smbfs -o username=myname,uid=my_uid,gid=my_gid \
             //server/share /mnt/smb  # mount Windows files to Linux
     # smbmount //server/share /mnt/smb \
             -o "username=myname,uid=my_uid,gid=my_gid"
     # smbclient -L 192.168.1.2 # list the shares on a computer

Samba neighbors can be checked from Linux using:

     # smbclient -N -L ip_address_of_your_PC | less
     # nmblookup -T "*"

8.6.39. Utilities for foreign filesystems

-

Many foreign filesystems have Linux kernel support, and can thus be accessed simply by mounting the devices containing the filesystems. For certain filesystems, there are also a few specialized tools to access the filesystems without mounting the devices. This is accomplished with user-space programs so that kernel filesystem support is not needed.

  • mtools: for MS-DOS filesystem (MS-DOS, Windows)

  • cpmtools: for CP/M filesystem

  • hfsutils: for HFS filesystem (native Macintosh)

  • hfsplus: for HFS+ filesystem (modern Macintosh)

In order to create and check an MS-DOS FAT filesystem, dosfstools is useful.

8.7. Typical mistakes to be noted

Here are few examples of dangerous actions. The negative impacts will be enhanced if you are using privileged account: root.

8.7.1. rm -rf .*

-

The use of wild card file name in command line arguments such as "rm -rf .*" may cause dangerous result, since ".*" expands to include "." and "..". Fortunately for the current verion of "rm" command in the Debian distribution, it checks sanity of the argument file names and refuses to remove "." and "..". But this is not always the case. Try following to see how the wild card file names work.

  • "echo *": lists every non-dot files and non-dot directories under current directory.

  • "echo .[^.]*": lists every dot file and dot-directories under current directory.

  • "echo .*": lists everything under parent directory and parent directory itself.

8.7.2. rm /etc/passwd

-

Loss of some important files such as /etc/passwd through your stupidity is tough. The Debian system makes regular backups of them in /var/backups/. When you restore these files, you may manually have to set the proper permissions.

     # cp /var/backups/passwd /etc/passwd
     # chmod 644 /etc/passwd

See also Recover package selection data, Section 6.3.4.

9. Tuning a Debian system

This chapter describes only the basics of system configuration through a command-line interface. Before reading this chapter you should read Debian System installation hints, Chapter 3. If you are concerned about security then you should read the Securing Debian Manual which comes in the harden-doc package.

9.1. System initialization

Debian uses the System V init script system. See The init program, Section 2.4.1 for an introduction.

9.1.1. Customizing init scripts

-

The easiest way to control the behavior of an init script is by changing environment variable assignments in the file named like the init script in the /etc/default directory. [39] For example, /etc/default/hotplug can be used to control how /etc/init.d/hotplug works. The /etc/default/rcS file can be used to customize boot-time defaults for motd, sulogin, etc.

If you cannot get the behavior you want by changing such variables then you can modify the init scripts themselves: they are all configuration files.

9.1.2. Customizing system logging

-

System log mode can be configured using /etc/syslog.conf. Check the colorize package for a program to colorize system logfiles. See also syslogd(8) and syslog.conf(5).

9.1.3. Optimizing hardware

-

There are a few hardware optimization configurations that Debian leaves to the sysadmin to take care of.

  • hdparm

    • Hard disk access optimization. Very effective.

    • Dangerous. You must read hdparm(8) first.

    • hdparm -tT /dev/hda to test disk access speed.

    • hdparm -q -c3 -d1 -u1 -m16 /dev/hda to speed up a modern IDE system. (It may be dangerous.)

  • setcd

    • Compact disc drive access optimization.

    • setcd -x 2 to slow down to 2x speed.

    • See setcd(1).

  • setserial

    • Collection of tools for serial port management.

  • scsitools

    • Collection of tools for SCSI hardware management.

  • memtest86

    • Collection of tools for memory hardware management.

  • hwtools

    • Collection of tools for low-level hardware management.

      • irqtune: changes the IRQ priority of devices to allow devices that require high priority and fast service (e.g. serial ports, modems) to have it. 3x speedup of serial/modem throughput is possible.

      • scanport: scans I/O space from 0x100 to 0x3ff looking for installed ISA devices.

      • inb: a quick little hack that reads an I/O port and dumps the value in hex and binary.

  • schedutils

    • Linux scheduler utilities.

    • taskset, irqset, lsrt, and rt are included.

    • Together with nice and renice (not included), they allow full control of process scheduling parameters.

Mounting a filesystem with the noatime option is also very effective in speeding up read access to the file. See fstab(5) and mount(8).

Some hardware can be tuned directly by the Linux kernel itself through the proc filesystem. See Tuning the kernel through the proc filesystem, Section 7.2.

There are many hardware-specific configuration utilities in Debian. Many of them address needs specific to the laptop PC. Here are some interesting packages available in Debian:

  • tpconfig - A program to configure touchpad devices

  • apmd - Utilities for Advanced Power Management (APM)

  • acpi - displays information on ACPI devices

  • acpid - Utilities for using ACPI

  • lphdisk - prepares hibernation partition for Phoenix NoteBIOS

  • sleepd - puts a laptop to sleep during inactivity

  • noflushd - allow idle hard disks to spin down

  • big-cursor - larger mouse cursors for X

  • acme - Enables the "multimedia buttons" found on laptops

  • tpctl - IBM ThinkPad hardware configuration tools

  • mwavem - Mwave/ACP modem support

  • toshset - Access much of the Toshiba laptop hardware interface

  • toshutils - Toshiba laptop utilities

  • sjog - A program to use the "Jog Dial" on Sony Vaio Laptops

  • spicctrl - Sony Vaio controller program to set LCD backlight brightness

Here, ACPI is a newer framework for the power management system than APM.

Some of these packages require special kernel modules. They are already included in the latest kernel source in many cases. In case of trouble, you may need to apply the latest patch to the kernel yourself.

9.2. Restricting access

-

9.2.1. Restricting logins with PAM

-

PAM (Pluggable Authentication Modules) allow you to control how users log in.

     /etc/pam.d/*             # PAM control files
     /etc/pam.d/login         # PAM control file for login
     /etc/security/*          # PAM module parameters
     /etc/securetty           # this controls root login by console (login)
     /etc/login.defs          # this controls login behaviors (login)

Change the contents of /etc/pam.d/login as follows, if you want insecure but passwordless console terminals at your own risk.

     #auth       required   pam_unix.so nullok
     auth       required   pam_permit.so

Similar tricks can be applied for xdm, gdm, ..., for passwordless console X.

On the other hand, install cracklib2 and set /etc/pam.d/passwd as follows, if you want to enforce a good password policy.

     password required       pam_cracklib.so retry=3 minlen=6 difok=3

A one-time login password for account activation may also help. For this, use the passwd command with the -e option. See passwd(1).

The maximum number of processes can be set with ulimit -u 1000 in a Bash shell or with settings in /etc/security/limits.conf from PAM. Other parameters such as core can be set similarly. The initial value of PATH can be set by /etc/login.defs before the shell startup script.

The documentation for PAM is packaged in the libpam-doc package. The Linux-PAM System Administrator's Guide covers configuring PAM, what modules are available, etc. The documentation also includes The Linux-PAM Application Developers' Guide and The Linux-PAM Module Writers' Guide.

9.2.2. "Why GNU su does not support the wheel group"

-

This is the famous phrase at the bottom of the old info su page by Richard M. Stallman. Not to worry: the current su in Debian uses PAM, so that one can restrict the ability to use su to any group using pam_wheel.so in /etc/pam.d/su. The following will set the adm group in a Debian system as an equivalent of the BSD wheel group and allow su without a password for its members.

     # anti-RMS configuration in /etc/pam.d/su
     auth       required   pam_wheel.so group=adm
     
     # Wheel members to be able to su without a password
     auth       sufficient pam_wheel.so trust group=adm

9.2.3. Purposes of standard groups

-

A few interesting groups:

  • root group is the default wheel group for su if pam_wheel.so is used without the group= argument.

  • adm group can read logfiles.

  • cdrom group can be used locally to give a set of users access to a CD-ROM drive.

  • floppy group can be used locally to give a set of users access to a floppy drive.

  • audio group can be used locally to give a set of users access to an audio device.

  • src group owns source code, including files in /usr/src. It can be used locally to give a user the ability to manage system source code.

  • staff membership is useful for helpdesk types or junior sysadmins, giving them the ability to do things in /usr/local and to create directories in /home.

For a complete list, see the "FAQ" section in the Securing Debian Manual, which can also be found as the harden-doc package in Woody. Also the new base-passwd (>3.4.6) contains an authoritative list: file:///usr/share/doc/base-passwd/users-and-groups.html.

9.2.4. Working more safely – sudo

-

My usage of sudo is mostly a protection from my own stupidity. Personally, I consider using sudo a better alternative to always using the system as root.

Install sudo and activate it by setting options in /etc/sudoers. Also check out the sudo group feature in file:///usr/share/doc/sudo/OPTIONS.

The sample configuration provides "staff" group members access to any commands run as root under sudo and also gives "src" members access to selected commands run as root under sudo.

The advantage of sudo is that it only requires an ordinary user's password to log in, and activity is monitored. This is a nice way to give some authority to a junior administrator. For example:

     $ sudo chown -R myself:mygrp .

Of course if you know the root password (as most home users do), any command can be run under root from a user account:

     $ su -c "shutdown -h now"
     Password:

(I know I should tighten the admin account's sudo privileges. But since this is my home server, I have not bothered yet.)

For a different program that allows ordinary users to run commands with root privileges, see the super package.

9.2.5. Restricting access to services

-

The Internet super-server, inetd, is started at boot time by /etc/rc2.d/S20inetd (for RUNLEVEL=2), which is a symlink to /etc/init.d/inetd. Essentially, inetd allows one running daemon to invoke several others, reducing load on the system.

Whenever a request for service arrives, its protocol and service are identified by looking them up in the databases in /etc/protocols and /etc/services. inetd then looks up a normal Internet service in the /etc/inetd.conf database, or a Sun-RPC based service in /etc/rpc.conf.

For system security, make sure to disable unused services in /etc/inetd.conf. Sun-RPC services need to be active for NFS and other RPC-based programs.

Sometimes, inetd does not start the intended server directly but starts the tcpd TCP/IP daemon wrapper program with the intended server name as its argument in /etc/inetd.conf. In this case, tcpd runs the appropriate server program after logging the request and doing some additional checks using /etc/hosts.deny and /etc/hosts.allow.

If you have problems with remote access in a recent Debian system, comment out "ALL: PARANOID" in /etc/hosts.deny if it exists.

For details, see inetd(8), inetd.conf(5), protocols(5), services(5), tcpd(8), hosts_access(5), and hosts_options(5).

For more information on Sun-RPC, see rpcinfo(8), portmap(8), and file:///usr/share/doc/portmap/portmapper.txt.gz.

9.2.6. Centralizing authentication – LDAP

-

Use Lightweight Directory Access Protocol (LDAP). References:

9.3. CD writers

-

9.3.1. Introduction

-

First, any disruption of data sent to the CD-writer may cause irrecoverable damage to the CD. Though most newer devices support a Buffer Underrun protection, which is used by default. Get a CD-writer with as large a buffer as possible. If money is no object, do not bother with ATAPI/IDE, just get a SCSI version. If you have a choice of IDE interface to be connected, use the one on the PCI-bus (i.e., on the motherboard) rather than one on the ISA-bus (an SB16 card, etc.).

When a CD-writer is connected to IDE, it has to be driven by the IDE-SCSI driver instead of an ordinary IDE CD driver for Linux 2.2 and 2.4 kernels. Also, the SCSI generic driver needs to be activated. There are two possible approaches to doing this, assuming a kernel distributed with modern distributions (as of March 2001).

For Linux 2.6 kernel, you should use ordinary IDE driver and access CD-RW device directly with device name such as /dev/hdx instead. You can use DMA this way.

9.3.2. Approach 1: modules + lil

-

Add the following line to /etc/lilo.conf if you are using a stock Debian kernel. If multiple options are used, list them separated by spaces:

     append="hdx=ide-scsi ignore=hdx"

Here the location of the CD-writer, which is accessed through the ide-scsi driver, is indicated by hdx, where x represents one of the following:

     hda          for a master on the first IDE port
     hdb          for a slave on the first IDE port
     hdc          for a master on the second IDE port
     hdd          for a slave on the second IDE port
     hde ... hdh  for a drive on an external IDE port or ATA66/100 IDE port

Type the following commands as root to activate after finishing all the configuration:

     # lilo
     # shutdown -h now

9.3.3. Approach 2: recompile the kernel

-

Debian uses make-kpkg to create a kernel. Use the new --append_to_version with make-kpkg to build multiple kernel images. See The Linux kernel under Debian, Chapter 7.

Use the following setup through make menuconfig:

  • bzImage

  • Exclude the IDE CD driver (not a must, but simpler to do this)

  • Compile in ide-scsi and sg, or make them modules

9.3.4. Post-configuration steps

-

Kernel support for the CD-writer can be activated during booting by the following:

     # echo ide-scsi >>/etc/modules
     # echo sg       >>/etc/modules
     # cd /dev; ln -sf scd0 cdrom

Manual activation can be done by:

     # modprobe ide-scsi
     # modprobe sg

After reboot, you can check installation by:

     $ dmesg|less
     # apt-get install wodim
     # wodim -scanbus

wodim is a fork of the well known cdrecord program shipped with Sarge and older distributions. Replace wodim with cdrecord if you use such a system.

[Per Warren Dodge] Sometimes there may be conflicts between ide-scsi and ide-cd if there are both CD-ROM and CD-R/RW on the system. Try adding the following line to your /etc/modutils/aliases, running update-modules, and rebooting.

     pre-install      ide-scsi      modprobe ide-cd

This causes the IDE driver to load before ide-scsi. The IDE driver ide-cd takes control of the ATAPI CD-ROM—anything that it hasn't been told to ignore. That leaves just the ignored devices for ide-scsi to control.

9.3.5. CD-image file (bootable)

-

To create a CD-image of files under target-directory/ as cd-image.raw (bootable, Joliet TRANS.TBL-enabled format; if not bootable, take out -b and -c options), insert a boot floppy in the first floppy drive and

     # dd if=/dev/fd0 target-directory/boot.img 
     # mkisofs -r -V volume_id -b boot.img -c bootcatalog -J -T \
             -o cd-image.raw target_directory/

One funny hack is to make a bootable DOS CD-ROM. If an ordinary DOS boot floppy disk image is in the above boot.img, the CD-ROM will boot as if a DOS floppy were in the first floppy drive (A:). Doing this with freeDOS may be more interesting.

This CD-image file can be inspected by mounting it on the loop device.

     # mount -t iso9660 -o ro,loop cd-image.raw /cdrom
     # cd /cdrom
     # mc
     # umount /cdrom

9.3.6. Write to the CD-writer (R, RW):

-

First test with (assuming double speed)

     # nice --10 wodim -dummy speed=2 dev=0,0 disk.img

Then if OK, write to CD-R with

     # nice --10 wodim -v -eject speed=2 dev=0,0 disk.img

Or write to a CD-RW disk with

     # nice --10 wodim -v -eject blank=fast speed=2 dev=0,0 disk.img

Some CD-RW drives work better with

     # nice --10 wodim -v blank=all speed=2 dev=0,0 disk.img

followed by

     # nice --10 wodim -v -eject speed=2 dev=0,0 disk.img

Two steps are needed to prevent SCSI timeouts during blanking from interfering with the burning step. The argument value to nice may require some adjustments.

9.3.7. Make an image file of a CD

-

Some CD-Rs and commercial CDs have junk sectors at the end that make copying by dd impossible (the Windows 98 CD is one of them). The wodim package comes with the readom command (cdrecord contained readcd instead). Use this to copy any CD contents to an image file. If it is a data disk, mount it and run df to see its actual size. Divide the number shown in blocks (1 block = 1024 bytes) by 2 to get the number of actual CD sectors (1 sector = 2048 bytes). Run readom with options and use this disk image to burn the CD-R/RW.

     # readom dev=target,lun,scsibusno # select function 11

Here, set all three parameters to 0 for most cases. Usually the number of sectors given by readom is excessive! Use the above number from an actual mount for better results.

It should be noted that the use of dd has a few problems if used on CD-ROM. The first run of the dd command may cause an error message and may yield a shorter disk image with a lost tail-end. The second run of dd command may yield a larger disk image with garbage data attached at the end on some systems if the data size is not specified. Only the second run of the dd command with the correct data size specified, and without ejecting the CD after an error message, seems to avoid these problems. If for example the image size displayed by df is 46301184 blocks, use the following command twice to get the right image (this is my empirical information):

     # dd if=/dev/cdrom of=cd.img bs=2048 count=$((46301184/2))

9.3.8. Debian CD images

-

To obtain the latest information on Debian CDs, visit the Debian CD site.

If you have a fast Internet connection, think about installing over the network using:

If you do not have a fast Internet connection, think about purchasing CDs from a CD vendor.

Please do not waste bandwidth by downloading standard CD images unless you are a CD image tester (even with the new jigdo method).

One noteworthy CD image is KNOPPIX - Live Linux Filesystem On CD. This CD will boot a functioning Debian system without installing itself to the hard disk.

9.3.9. Back up the system to CD-R

-

To copy key configuration files and data files to CD-R, use the example backup script backup. Also see Copy and archive a whole subdirectory, Section 8.3 and Differential backup and data synchronization, Section 8.4.

9.3.10. Copy a music CD to CD-R

-

Not tested by me:

     # apt-get install wodim cdparanoia
     # cdparanoia -s -B
     # wodim dev=0,0,0 speed=2 -v -dao -eject defpregap=1 -audio *.wav

or,

     # apt-get install cdrdao #disk at once
     # cdrdao read-cd --device /dev/cdrom --paranoia-mode 3 my_cd # read cd
     # cdrdao write --device /dev/cdrom --speed 8 my_cd    # write a new CD

cdrdao does a real copy (no gaps, etc...).

9.3.11. Writing DVD-R, DVD-RW, and DVD+RW

-

For DVD writing, you have 2 approaches:

  • Use growisofs.

  • Use wodim.

9.4. X

The X Window System is provided by XFree86. There are two major versions of X server available on the Debian system: XFree86 Version 3.3 (XF3) and XFree86 Version 4.x series (XF4) both based on X11R6 specifications by X.Org.

9.4.1. X packages

-

There are a few (meta)packages provided to ease installation of the X system in Woody.

x-window-system-core

This metapackage provides the essential components for a stand-alone workstation running the X Window System. It provides the X libraries, an X server (xserver-xfree86), a set of fonts, and a group of basic X clients and utilities.

x-window-system

This metapackage provides substantially all the components of the X Window System as developed by the XFree86 Project, as well as a set of historically popular accessory programs. (Notably, it depends on x-window-system-core, twm, and xdm, i.e., no need to install x-window-system-core if you install this.)

xserver-common-v3

Files and utilities common to XFree86 3.x X servers (XF3)

xserver-*

Supplemental XF3 server packages to support hardware not supported by the new XF4 server (xserver-xfree86) for whatever reason. Some old ATI mach64 cards are not supported in XF4, other cards hang badly in the Woody version of XF4, etc. (For available packages, use apt-cache search xserver-|less. All of these XF3 servers depend on xserver-common-v3.)

For most cases, x-window-system is the package to install. (If you want console login, be sure to disable xdm as described in "Let me disable X on boot!", Section 8.1.4.)

9.4.2. Hardware detection for X

-

To enable hardware detection during the X configuration stage, install the following packages prior to installing the X system:

  • discover – hardware identification system.

  • mdetect – mouse device autodetection tool.

  • read-edid – hardware information-gathering tool for VESA PnP monitors.

9.4.3. The X server

See XFree86(1x) for X server information.

9.4.3.1. Configuring the X server (version 4)

-

To (re-)configure an XF4 server,

     # dpkg-reconfigure --priority=low xserver-common
     # dpkg-reconfigure --priority=low xserver-xfree86

will generate /etc/X11/XF86Config-4 file and configure X using the script dexconf.


9.4.3.2 Configuring the X server (version 3)

To (re-)configure an XF3 server, for example, for ATI mach64,

     # dpkg-reconfigure --priority=low xserver-common-v3
     # dpkg-reconfigure --priority=low xserver-mach64

will generate /etc/X11/XF86Config file and configure X using the script xf86config-v3.

9.4.3.2. Configuring the X server manually

-

For Woody, to add user customizations to /etc/X11/XF86Config-4 file, do not edit the configuration file between the text:

     ### BEGIN DEBCONF SECTION
     [snip]
     ### END DEBCONF SECTION

Instead, add the customizations before the text. For example, to use a custom video device, add something resembling the following text to the top of the file:

     Section "Device"
       Identifier        "Custom Device"
       Driver            "ati"
       Option            "NoAccel"
     EndSection
     
     Section "Screen"
       Identifier  "Custom Screen"
       Device      "Custom Device"
       Monitor     "Generic Monitor"
       DefaultDepth 24
       Subsection "Display"
         Depth       8
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
       Subsection "Display"
         Depth       16
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
       Subsection "Display"
         Depth       24
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
     EndSection
     
     Section "ServerLayout"
         Identifier        "Custom"
         Screen            "Custom Screen"
         InputDevice       "Generic Keyboard" "CoreKeyboard"
         InputDevice       "Configured Mouse" "CorePointer"
     EndSection

For Sarge (testing at the time of writing), if you wish to retain user customizations to /etc/X11/XF86Config file through upgrade, run the following commands as root:

     # cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
     # md5sum /etc/X11/XF86Config-4 > /var/lib/xfree86/XF86Config-4.md5sum
     # dpkg-reconfigure xserver-xfree86

In order to achieve font de-uglification, you need to edit /etc/X11/XF86Config-4 as described in TrueType fonts in X, Section 9.4.13.

Please also check the other parts of your X configuration. Bad monitor settings can be even more of a headache than bad fonts, so make sure your refresh rate is as high as your monitor can handle (85 Hz is great, 75 Hz is OK, 60 Hz is painful).

9.4.3.3. Configuring the X server manually

-

For Woody, to add user customizations to /etc/X11/XF86Config-4 file, do not edit the configuration file between the text:

     ### BEGIN DEBCONF SECTION
     [snip]
     ### END DEBCONF SECTION

Instead, add the customizations before the text. For example, to use a custom video device, add something resembling the following text to the top of the file:

     Section "Device"
       Identifier        "Custom Device"
       Driver            "ati"
       Option            "NoAccel"
     EndSection
     
     Section "Screen"
       Identifier  "Custom Screen"
       Device      "Custom Device"
       Monitor     "Generic Monitor"
       DefaultDepth 24
       Subsection "Display"
         Depth       8
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
       Subsection "Display"
         Depth       16
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
       Subsection "Display"
         Depth       24
         Modes       "1280x960" "1152x864" "1024x768" "800x600" "640x480"
       EndSubsection
     EndSection
     
     Section "ServerLayout"
         Identifier        "Custom"
         Screen            "Custom Screen"
         InputDevice       "Generic Keyboard" "CoreKeyboard"
         InputDevice       "Configured Mouse" "CorePointer"
     EndSection

For Sarge (testing at the time of writing), if you wish to retain user customizations to /etc/X11/XF86Config file through upgrade, run the following commands as root:

     # cp /etc/X11/XF86Config-4 /etc/X11/XF86Config-4.custom
     # md5sum /etc/X11/XF86Config-4 > /var/lib/xfree86/XF86Config-4.md5sum
     # dpkg-reconfigure xserver-xfree86

In order to achieve font de-uglification, you need to edit /etc/X11/XF86Config-4 as described in TrueType fonts in X, Section 9.4.13.

Please also check the other parts of your X configuration. Bad monitor settings can be even more of a headache than bad fonts, so make sure your refresh rate is as high as your monitor can handle (85 Hz is great, 75 Hz is OK, 60 Hz is painful).

9.4.4. X clients

-

Most X client programs can be started with a command like this:

     client $ xterm -geometry 80x24+30+200 -fn 6x10 -display hostname:0 &

Here, the optional command-line arguments mean:

  • -geometry WIDTHxHEIGHT+XOFF+YOFF: the initial size and location of the window.

  • -fn FONTNAME: the font to use for displaying text. FONTNAME can be:

    • a14: Normal size font

    • a24: Large size font

    • ... (check available fonts with xlsfont.)

  • -display displayname: the name of the X server to use. displayname can be:

    • hostname:D.S means screen S on display D of host hostname; the X server for this display is listening to TCP port 6000+D.

    • host/unix:D.S means screen S on display D of host host; the X server for this display is listening to UNIX domain socket /tmp/.X11-unix/XD (so it's only reachable from host).

    • :D.S is equivalent to host/unix:D.S, where host is the local hostname.

The default displayname for the X client program (application side) can be set by the DISPLAY environment variable. For example, prior to running an X client program, executing one of the following commands achieves this:

     $ export DISPLAY=:0 
             # The default, local machine using the first X screen
     $ export DISPLAY=hostname.fulldomain.name:0.2
     $ export DISPLAY=localhost:0

Its startup can be customized by ~/.xinitrc. For example:

     xrdb -load $HOME/.Xresources
     xsetroot -solid gray &
     xclock -g 50x50-0+0 -bw 0 &
     xload -g 50x50-50+0 -bw 0 &
     xterm -g 80x24+0+0 &
     xterm -g 80x24+0-0 &
     twm

As described in Custom X sessions, Section 9.4.5.1, this overrides everything normal execution of Xsession does when started from startx. Use ~/.xsession instead and use this approach only as the last resort. See xsetroot(1x), xset(1x), and X resources, Section 9.4.10.

9.4.5. X sessions

An X session (X server + X client) can be started by: * startx: wrapper script command for xinit to start an X server and client from a Linux character console. If ~/.xinitrc does not exist, /etc/X11/Xsession is executed through /etc/X11/xinit/xinitrc. * xdm, gdm, kdm, or wdm: X display manager daemons to start the X server and client, and to control login via a GUI screen. /etc/X11/Xsession is directly executed.

9.4.5.1. Custom X sessions

-

The default startup script /etc/X11/Xsession is effectively a combination of /etc/X11/Xsession.d/50xfree86-common_determine-startup and /etc/X11/Xsession.d/99xfree86-common_start.

Execution of /etc/X11/Xsession is somewhat affected by /etc/X11/Xsession.options and is essentially an execution of a program which was first found in the following order with the exec command:

  • ~/.xsession or ~/.Xsession, if it is defined.

  • /usr/bin/x-session-manager, if it is defined.

  • /usr/bin/x-window-manager, if it is defined.

  • /usr/bin/x-terminal-emulator, if it is defined.

  • The exact meaning of these commands is determined by the Debian alternative system described in Alternative commands, Section 6.5.3. For example:

         # update-alternatives --config x-session-manager
         ... or
         # update-alternatives --config x-window-manager
    

    In order to make any X window manager a default while keeping GNOME and KDE session managers installed, replace /etc/X11/Xsession.d/50xfree86-common_determine-startup with the one attached in the second bug report at http://bugs.debian.org/168347 (I hope this will be included soon) and edit /etc/X11/Xsession.options as follows to disallow the X session manager:

         # /etc/X11/Xsession.options
         #
         # configuration options for /etc/X11/Xsession
         # See Xsession.options(5) for an explanation of the available options.
         # Default enabled
         allow-failsafe
         allow-user-resources
         allow-user-xsession
         use-ssh-agent
         # Default disabled (enable them by uncommenting)
         do-not-use-x-session-manager
         #do-not-use-x-window-manager
    

    Without the above mentioned modification to the system, gnome-session and kdebase are the packages containing these X session managers. Removing them allows X window manager to be a default. (Yack, any better idea?)

    On a system where /etc/X11/Xsession.options contains a line allow-user-xsession without preceding characters, any user who defines ~/.xsession or ~/.Xsession will be able to customize the action of /etc/X11/Xsession.

    The last command in the ~/.xsession file should use form of exec some-window/session-manager to start your favorite X window/session manager.

    A good example of an ~/.xsession script is given at file:///usr/share/doc/xfree86-common/examples/xsession.gz.

    I use this to set the window manager, screen access, and language support for each user account. See Starting an X session for a user, Section 9.4.5.2, Getting root in X, Section 9.4.12, and Example for a multilingual X window system, Section 9.7.9.

    If you wish to have several X client programs started automatically, see X clients, Section 9.4.4 examples and invoke them from ~/.xsession instead of ~/.xinitrc.

    User-specific additional X resources can be stored in ~/.Xresources. See X resources, Section 9.4.10.

    User-customized keymaps and pointer button mappings in X can also be specified in the user's start up script. See Keymaps and pointer button mappings in X, Section 9.4.11.

    9.4.5.2. Starting an X session for a user

    -

    Following the principle described at Custom X sessions, Section 9.4.5.1, a user-specific X session/window manager can be activated by installing the package indicated and setting the contents at the end of ~/.xsession file as follows. (I like blackbox/fluxbox for its simple style and fast speed.):

    • GNOME session manager (loaded)

      • Install package: gnome-session

      • exec /usr/bin/gnome-session

    • KDE session manager (loaded)

      • Install package: kdebase (or kdebase3 for KDE3)

      • exec /usr/bin/kde2

    • Blackbox window manager (lightweight, slick)

      • Install package: blackbox

      • exec /usr/bin/blackbox

    • Fluxbox window manager (lightweight, new blackbox)

      • Install package: fluxbox

      • exec /usr/bin/fluxbox

    • Xfce window manager (Mac OS-X, SUN CDE–like)

      • Install package: xfce

      • exec /usr/bin/xfwm

    • IceWM window manager (lightweight, GNOME alternative)

      • Install package: icewm

      • exec /usr/bin/X11/icewm

    • FVWM2 virtual window manager (lightweight, Win95-like)

      • Install package: fvwm

      • exec /usr/bin/fvwm2

    • Windowmaker window manager (somewhat NexT-like)

      • Install package: wmaker

      • exec /usr/bin/wmaker

    • Enlightenment window manager (loaded)

      • Install package: enlightenment

      • exec /usr/bin/enlightenment

    See Window Managers for X.

    9.4.5.3. Setting up KDE and GNOME

    -

    In order to setup full KDE or GNOME environment, the following metapackages are useful:

    • KDE: install the kde package

    • GNOME: install the gnome package

    Installing these packages with tools which handle Recommends, such as dselect and aptitude, provides you with richer choices of software than just installing these with apt-get.

    If you want console login, be sure to disable X display managers, such as kdm, gdm, and wdm, which may be pulled in by the dependencies, as described in "Let me disable X on boot!", Section 8.1.4.

    If you want to have GNOME as the system default over KDE, make sure to configure x-session-manager as in Alternative commands, Section 6.5.3.

    9.4.6. Using X over TCP/IP

    -

    Because a remote TCP/IP socket connection without encryption is prone to an eavesdropping attack, the default setting for X in recent Debian versions disables the TCP/IP socket. Consider using ssh for a remote X connection (see Connecting to a remote X server – ssh, Section 9.4.8).

    The method described here is not encouraged unless one is in a very secure environment behind a good firewall system with only trusted users present. Use the following command to verify your current X server setting for the TCP/IP socket:

         # find /etc/X11 -type f -print0 | xargs -0 grep nolisten
         /etc/X11/xinit/xserverrc:exec /usr/bin/X11/X -dpi 100 -nolisten tcp
    

    Remove -nolisten to restore TCP/IP listening on the X server.

    9.4.7. Connecting to a remote X server – xhost

    -

    xhost allows access based on hostnames. This is very insecure. The following will disable host checking and allow connections from anywhere if a TCP/IP socket connection is allowed (see Using X over TCP/IP, Section 9.4.6):

         $ xhost +
    

    You can re-enable host checking with:

         $ xhost -
    

    xhost does not distinguish between different users on the remote host. Also, hostnames (addresses actually) can be spoofed.

    This method must be avoided even with more restrictive host criteria if you're on an untrusted network (for instance with dial-up PPP access to the Internet). See xhost(1x).

    9.4.8. Connecting to a remote X server – ssh

    -

    The use of ssh enables a secure connection from a local X server to a remote application server.

    • Set X11Forwarding and AllowTcpForwarding entries to yes in /etc/ssh/sshd_config of the remote host, if you want to avoid corresponding command-line options.

    • Start the X server on the local host.

    • Open an xterm in the local host.

    • Run ssh to establish a connection with the remote site.

           localname @ localhost $ ssh -q -X -l loginname remotehost.domain
           Password:
           .....
      
    • Run X application commands on the remote site.

           loginname @ remotehost $ gimp &
      

    This method allows the display of the remote X client output as if it were locally connected through a local UNIX domain socket.

    9.4.9. The X terminal emulator – xterm

    -

    Learn everything about xterm at http://dickey.his.com/xterm/xterm.faq.html.

    9.4.10. X resources

    -

    Many older X programs, such as xterm, use the X resource database to configure their appearance. The file ~/.Xresources is used to store user resource specifications. This file is automatically merged into the default X resources upon login. The system-wide defaults of X resources are stored in /etc/X11/Xresources/* and application defaults of them are stored in /etc/X11/app-defaults/*. Use these settings as the starting points.

    Here are some helpful settings to add to your ~/.Xresources file:

         ! Set the font to a more readable 9x15
         XTerm*font: 9x15
         
         ! Display a scrollbar
         XTerm*scrollBar: true
         
         ! Set the size of the buffer to 1000 lines
         XTerm*saveLines: 1000
         
         ! Large kterm screen
         KTerm*VT100*fontList: -*-fixed-medium-r-normal--24-*,\
          -*-gothic-medium-r-normal--24-*,\
          -*-mincho-medium-r-normal--24-*
    

    To make these settings take effect immediately, merge them into the database using the command:

         xrdb -merge ~/.Xresources
    

    See xrdb(1x).

    9.4.11. Keymaps and pointer button mappings in X

    -

    The xmodmap program is used to edit and display the keyboard modifier map and keymap table that are used by client applications to convert event keycodes into keysyms in X.

         $ xmodmap -pm 
          ... display the current modifier map
         $ xmodmap -pk | pager
          ... display the current keymap table
         $ xmodmap -e "pointer = 3 2 1" # set mouse for the left hand.
         $ xmodmap ~/.xmodmaprc # set keyboard as in ~/.xmodmaprc
    

    It is usually run from the user's session startup script, ~/.xsession.

    To get the keycode, run xev in X and press keys. To get the meaning of keysym, look into the MACRO definition in /usr/include/X11/keysymdef.h file. All the #define statements in this file are named as XK_ prepended to the keysym names.

    See xmodmap(1x).

    9.4.12. Getting root in X

    -

    If a GUI program needs to be run with root privilege, use the following procedures to display program output on a user's X server. Never attempt to start an X server directly from the root account in order to avoid possible security risks.

    Start the X server as a normal user and open an xterm console. Then:

         $ XAUTHORITY=$HOME/.Xauthority
         $ export XAUTHORITY
         $ su root
         Password:*****
         # printtool &
    

    When using this trick to su to a non-root user, make sure ~/.Xauthority is group readable by this non-root user.

    To automate this command sequence, create a file ~/.xsession from the user's account, containing the following lines:

         # This makes X work when I su to the root account.
         if [ -z "$XAUTHORITY" ]; then
                 XAUTHORITY=$HOME/.Xauthority
                 export XAUTHORITY
         fi
         unset XSTARTUP
         # If a particular window/session manager is desired, uncomment
         # the following and edit it to fit your needs.
         #XSTARTUP=/usr/bin/blackbox
         # This starts x-window/session-manager program
         if [ -z "$XSTARTUP" ]; then
           if [ -x /usr/bin/x-session-manager ]; then
             XSTARTUP=x-session-manager
           elif [ -x /usr/bin/x-window-manager ]; then
             XSTARTUP=x-window-manager
           elif [ -x /usr/bin/x-terminal-emulator ]; then
             XSTARTUP=x-terminal-emulator
           fi
         fi
         # execute auto selected X window/session manager
         exec $XSTARTUP
    

    Then run su (not su -) in an xterm window of the user. Now GUI programs started from this xterm can display output on this user's X window while running with root privilege. This trick works as long as the default /etc/X11/Xsession is executed. If a user set up his customization using ~/.xinitrc or ~/.xsession, the above mentioned environment variable XAUTHORITY needs to be set similarly in those scripts.

    Alternatively, sudo can be used to automate the command sequence:

         $ sudo xterm
         ... or
         $ sudo -H -s
    

    Here /root/.bashrc should contain:

         if [ $SUDO_USER ]; then
             sudo -H -u $SUDO_USER xauth extract - $DISPLAY | xauth merge -
         fi
    

    This works fine even with the home directory of the user on an NFS mount, because root does not read the .Xauthority file.

    There are also several specialized packages for this purpose: kdesu, gksu, gksudo, gnome-sudo, and xsu. Some other methods can be used to achieve similar results: creating a symlink from /root/.Xauthority to the user's corresponding one; use of the script sux; or putting "xauth merge ~USER_RUNNING_X/.Xauthority" in the root initialization script.

    See more on the debian-devel mailing list.

    9.4.13. TrueType fonts in X

    -

    The standard xfs in XFree86-4 works fine with TrueType fonts. You have to install a third-party font server such as xfs-xtt, if you are using XFree86-3.

    You just need to make sure that whatever applications you want to use the TrueType fonts are linked against libXft or libfreetype (you probably don't even have to worry about this if you're using pre-compiled .debs).

    First set up font support infrastructure:

    • Install x-ttcidfont-conf and defoma packages. This automates generation of the fonts.scale and fonts.dir files.

           # apt-get install x-ttcidfont-conf
      
    • Edit /etc/X11/XF86Config-4 in the Section "Files" as:

           Section "Files"
               FontPath  "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
               FontPath  "/usr/share/fonts/truetype"
               FontPath  "/usr/lib/X11/fonts/CID"
               FontPath  "/usr/lib/X11/fonts/Speedo"
               FontPath  "/usr/lib/X11/fonts/misc"
               FontPath  "/usr/lib/X11/fonts/cyrillic"
               FontPath  "/usr/lib/X11/fonts/100dpi:unscaled"
               FontPath  "/usr/lib/X11/fonts/75dpi:unscaled"
               FontPath  "/usr/lib/X11/fonts/Type1"
           EndSection
      

      The first line will setup XFree86 to use any TrueType fonts you install from Debian packages. Type1 font entry is moved down since XFree86 does a rather poor job of rendering Type1 fonts. The :unscaled trick for bitmap fonts should not be needed for new XF4 anymore but I included it here just be sure.

      In order to preserve manual changes of /etc/X11/XF86Config-4 follow instructions in Configuring the X server manually, Section 9.4.3.3.

    Then install DFSG font packages:

    • Western TrueType fonts:

      • ttf-bitstream-vera: A set of high-quality TrueType fonts created by Bitstream, Inc. [40]

      • ttf-freefont: A set of free high-quality TrueType fonts covering the UCS character set.

      • ttf-thryomanes: A TrueType Unicode font covering Latin, Greek, Cyrillic, and IPA.

    • Asian fonts:

      • tfm-arphic-bsmi00lp: Chinese Arphic "AR PL Mingti2L Big5" TrueType font TeX font metric data

      • tfm-arphic-bkai00mp: Chinese Arphic "AR PL KaitiM Big5" TrueType font TeX font metric data

      • tfm-arphic-gbsn00lp: Chinese Arphic "AR PL SungtiL GB" TrueType font TeX font metric data

      • tfm-arphic-gkai00mp: Chinese Arphic "AR PL KaitiM GB" TrueType font TeX font metric data

      • ttf-baekmuk: Korean Baekmuk series TrueType fonts

      • hbf-jfs56: Chinese Jianti Fangsong 56x56 bitmap font (GB2312) for CJK

      • hbf-cns40-b5: Chinese Fanti Song 40x40 bitmap font (Big5) for CJK

      • hbf-kanji48: Japanese Kanji 48x48 bitmap font (JIS X-0208) for CJK

    Since Free fonts are sometimes limited, installing or sharing some commercial TrueType fonts is an option for a Debian users. In order to make this process easy for the user, some convenience packages have been created:

    • ttf-commercial

    • msttcorefonts (>1.1.0) [41]

    You'll have a really good selection of TrueType fonts at the expense of contaminating your Free system with non-Free fonts.

    All these font packages in Debian should work without any efforts and appear available to all X programs that use the regular "core" font system. This includes things like Xterm, Emacs, and most other non-KDE and non-GNOME applications.

    Now, run xfontsel and select any TrueType fonts in the fndry menu, you should be able to see many ungrayed out entries in the "fmly" menu.

    For KDE2.2 and GNOME1.4 (with libgdkxft0, which is a hack to get GTK 1.2 to do anti-aliased font rendering), you need to setup Xft1, as well. Xft1 is highly deprecated, and is basically only used by GNOME1.4 and KDE2.2. Edit /etc/X11/XftConfig and add a line like

             dir "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType"
    

    before the other dir lines. [42]

    For GNOME2 and KDE3 (post Sarge release), you need to setup fontconfig which Xft2 uses to find fonts. [43] You shouldn't need to install anything extra for this because every package using fontconfig Depends on it (indirectly) already.

    First, look in /etc/fonts/fonts.conf. There should be a line like the one below. If not, open up /etc/fonts/local.conf and add this

             <dir>/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType</dir>
    

    just after the <fontconfig> line.

    Fontconfig should pick these up immediately, and "fc-list" should list your new fonts. Another neat feature of fontconfig is that you can just drop fonts in ~/.fonts/ and all your fontconfigified programs will have access to them immediately.

    If you manually install a new set of TrueType fonts while in X without using Debian package, run

         # xset fp rehash
    

    to get XFree86 to look at the contents of that directory again and to pickup new ones.

    9.4.14. Web browsers in X

    -

    There are many web browser packages with graphical display capabilities as of the Sarge release:

    • mozilla The Mozilla browser

    • mozilla-firefox Mozilla browser variant (stand-alone)

    • epiphany-browser Mozilla browser variant (Gnome)

    • konqueror KDE browser

    • amaya W3C reference browser

    • ...

    In testing or unstable, you may face version mismatch problems among mozilla variant browsers since they may require matched versions of shared libraries.

    Plug-ins for browsers such as mozilla can be enabled by installing "*.so" manually in the plug-in directory and restarting the browsers.

    Plug-in resources:

    9.4.15. Mail Clients (MUAs) in X

    -

    There are sevral client packages with graphical display capabilities as of the Sarge release:

    • mozilla-thunderbird stand-alone mail client

    • kmail KDE mail client

    • evolution groupware suite from Novell

    • ...

    9.5. SSH

    SSH (Secure SHell) is the secure way to connect over the Internet. A free version of SSH called OpenSSH is available as the ssh package in Debian.

    9.5.1. Basics of SSH

    -

    First install the OpenSSH server and client.

         # apt-get update && apt-get install ssh
    

    /etc/ssh/sshd_not_to_be_run must not be present if one wishes to run the OpenSSH server.

    SSH has two authentication protocols:

    • SSH protocol version 1:

      • Potato version only supports this protocol.

      • available authentication methods:

        • RSAAuthentication: RSA identity key based user authentication

        • RhostsAuthentication: .rhosts based host authentication (insecure, disabled)

        • RhostsRSAAuthentication: .rhosts authentication combined with RSA host key (disabled)

        • ChallengeResponseAuthentication: RSA challenge-response authentication

        • PasswordAuthentication: password based authentication

    • SSH protocol version 2:

      • post-Woody versions use this as the primary protocol.

      • available authentication methods:

        • PubkeyAuthentication: public key based user authentication

        • HostbasedAuthentication: .rhosts or /etc/hosts.equiv authentication combined with public key client host authentication (disabled)

        • ChallengeResponseAuthentication: challenge-response authentication

        • PasswordAuthentication: password based authentication

    Be careful about these differences if you are migrating to Woody or using a non-Debian system.

    See /usr/share/doc/ssh/README.Debian.gz, ssh(1), sshd(8), ssh-agent(1), and ssh-keygen(1) for details.

    Following are the key configuration files:

    • /etc/ssh/ssh_config: SSH client defaults. See ssh(1). Notable entries are:

      • Host: Restricts the following declarations (up to the next Host keyword) to be only for those hosts that match one of the patterns given after the keyword.

      • Protocol: Specifies the SSH protocol versions. The default is "2,1".

      • PreferredAuthentications: Specifies the SSH2 client authentication method. The default is "hostbased,publickey,keyboard-interactive,password".

      • PasswordAuthentication: If you want to log in with a password, you have to make sure this is not set no.

      • ForwardX11: The default is disabled. This can be overridden by the command-line option "-X".

    • /etc/ssh/sshd_config: SSH server defaults. See sshd(8). Notable entries are:

      • ListenAddress: Specifies the local addresses sshd should listen on. Multiple options are permitted.

      • AllowTcpForwarding: The default is disabled.

      • X11Forwarding: The default is disabled.

    • $HOME/.ssh/authorized_keys: the lists of the default public keys that clients use to connect to this account on this host. See ssh-keygen(1).

    • $HOME/.ssh/identity: See ssh-add(1) and ssh-agent(1).

    The following will start an ssh connection from a client.

         $ ssh username@hostname.domain.ext
         $ ssh -1 username@hostname.domain.ext # Force SSH version 1
         $ ssh -1 -o RSAAuthentication=no -l username foo.host
             # force password on SSH1
         $ ssh -o PreferredAuthentications=password -l username foo.host
             # force password on SSH2
    

    For the user, ssh functions as a smarter and more secure telnet (will not bomb with ^]).

    9.5.2. Port forwarding for SMTP/POP3 tunneling

    -

    To establish a pipe to connect to port 25 of remote-server from port 4025 of localhost, and to port 110 of remote-server from port 4110 of localhost through ssh, execute on the local machine:

         # ssh -q -L 4025:remote-server:25 4110:remote-server:110 \
                    username@remote-server
    

    This is a secure way to make connections to SMTP/POP3 servers over the Internet. Set the AllowTcpForwarding entry to yes in /etc/ssh/sshd_config of the remote host.

    9.5.3. Connecting with fewer passwords – RSA

    -

    One can avoid having to remember a password for each remote system by using RSAAuthentication (SSH1 protocol) or PubkeyAuthentication (SSH2 protocol).

    On the remote system, set the respective entries, "RSAAuthentication yes" or "PubkeyAuthentication yes", in /etc/ssh/sshd_config.

    Then generate authentication keys locally and install the public key on the remote system:

         $ ssh-keygen          # RSAAuthentication: RSA1 key for SSH1
         $ cat .ssh/identity.pub | ssh user1@remote \
                 "cat - >>.ssh/authorized_keys"
         ...
         $ ssh-keygen -t rsa   # PubkeyAuthentication: RSA key for SSH2
         $ cat .ssh/id_rsa.pub | ssh user1@remote \
                 "cat - >>.ssh/authorized_keys"
         ...
         $ ssh-keygen -t dsa   # PubkeyAuthentication: DSA key for SSH2
         $ cat .ssh/id_dsa.pub | ssh user1@remote \
                 "cat - >>.ssh/authorized_keys"
    

    One can change the passphrase later with "ssh-keygen -p". Make sure to verify settings by testing the connection. In case of any problem, use "ssh -v".

    You can add options to the entries in authorized_keys to limit hosts and to run specific commands. See sshd(8) for details.

    Note that SSH2 has HostbasedAuthentication. For this to work, you must adjust the settings of HostbasedAuthentication to yes in both /etc/ssh/sshd_config on the server machine and /etc/ssh/ssh_config or $HOME/.ssh/config on the client machine.

    9.5.4. Dealing with alien SSH clients

    -

    There are a few free SSH clients available for non-Unix-like platforms.

    Windows

    puTTY (GPL)

    Windows (cygwin)

    SSH in cygwin (GPL)

    Macintosh Classic

    macSSH (GPL) [Note that Mac OS X includes OpenSSH; use ssh in the Terminal application]

    See also SourceForge.net, site documentation, "6. CVS Instructions".

    9.5.5. Setting up ssh-agent

    -

    It is safer to protect your SSH authentication key with a passphrase. If it was not set, use ssh-keygen -p to set it.

    Place your public key (e.g. ~/.ssh/id_rsa.pub) into ~/.ssh/authorized_keys on a remote host using a password-based connection to the remote host as described in Connecting with fewer passwords – RSA, Section 9.5.3.

         $ ssh-agent bash # or run zsh/tcsh/pdksh program instead.
         $ ssh-add ~/.ssh/id_rsa
         Enter passphrase for /home/osamu/.ssh/id_rsa:
         Identity added: /home/osamu/.ssh/id_rsa (/home/osamu/.ssh/id_rsa)
         $ scp foo user@remote.host:foo
          ... no passphrase needed from here on :-)
         $^D
          ... terminating ssh-agent session
    

    For the X server, normal Debian startup scripts execute ssh-agent as parent process. So you only need to execute ssh-add once.

    For more, read ssh-agent(1)and ssh-add(1).

    9.5.6. Troubleshooting SSH

    -

    If you have problems, check the permissions of configuration files and run ssh with the "-v" option.

    Use the "-P" option if you are root and have trouble with a firewall; this avoids the use of server ports 1–1023.

    If ssh connections to a remote site suddenly stop working, it may be the result of tinkering by the sysadmin, most likely a change in host_key during system maintenance. After making sure this is the case and nobody is trying to fake the remote host by some clever hack, one can regain a connection by removing the host_key entry from $HOME/.ssh/known_hosts on the local machine.

    9.6. Mail

    Mail configuration divides into three categories: * mail transfer agent (MTA): exim4, exim, postfix, sendmail, qmail, ssmtp, nullmailer, ... * mail utilities: procmail, fetchmail, mailx, crm114, ... * mail user agent (MUA): mutt, emacs+gnus, ...

    9.6.1. Mail transport agents (MTAs)

    For a full-featured MTA, use exim in Woody and use exim4 in Sarge. The only reasonable alternative MTA is postfix if you care about security. sendmail and qmail are available as Debian packages but are not recommended.

    9.6.1.1. Smarthost

    -

    If you are running exim4 or exim on a host which is connected through the consumer grade services, please make sure to send outgoing mail through a smarthost offered by your ISP or some others. [45] There are few good reasons:

    • to ensure SMTP retries since your ISP's smarthost usually have more reliably connection.

    • to avoid sending mail directly from a dynamic IP address which will likely be blocked by dial-up spam lists.

    • to save your local bandwidth to send mails with multiple recipients.

    The only conceivable exceptions are:

    • the emergency cure for your ISP's SMTP service trouble.

    • an experiment for the educational purpose.

    • your host being a professionally hosted server.

    9.6.1.2. Basic configuration of Exim

    -

    In order to use exim4 or exim as your MTA, configure the following:

         /etc/exim/exim.conf     "eximconfig" to create and edit (exim)
         /etc/exim4/*            "dpkg-reconfigure exim4-config" to create and edit (exim4)
         /etc/inetd.conf         comment out smtp to run exim as daemon
         /etc/email-addresses    Add spoofed source address lists
    

    check filters using exim4 or exim with -brw, -bf, -bF, -bV, ... etc.

    9.6.1.3. Setting up a catchall for nonexistent email addresses under Exim

    -

    In /etc/exim/exim.conf (Woody or later), in the DIRECTORS part, at the end (after the localuser: director) add a catch-all director that matches all addresses that the previous directors couldn't resolve (per Miquel van Smoorenburg):

         catchall:
           driver = smartuser
             new_address = webmaster@mydomain.com
    

    If one wants to have more a detailed recipe for each virtual domain, etc., add the following at the end of /etc/exim/exim.conf (per me, not well tested):

         *@yourdomain.com ${lookup{$1}lsearch*{/etc/email-addresses} \
                 {$value}fail} T
    

    Then have an "*" entry in /etc/email-addresses.

    9.6.1.4. Configuring selective address rewriting for outgoing mail under Exim

    -

    Selective address rewrite for outgoing mail to produce proper "From:" headers can be done using exim by configuring near the end of /etc/exim/exim.conf:

         *@host1.something.dyndns.org \
           "${if eq {${lookup{$1}lsearch{/etc/passwd}{1}{0}}} {1}  \
            {$0}{$1@something.dyndns.org}}"  frFs
    

    This rewrites all addresses matching *@host1.something.dyndns.org.

    1. It searches through /etc/password to see if the local part ($1) is a local user or not.

    1. If it is a local user, it rewrites the address to the same thing it was in the first place ($0).

    1. If it is not a local user, it rewrites the domain part.

    9.6.1.5. Configuring SMTP authentication under Exim

    -

    Some SMTP services such as yahoo.com require SMTP auth. Configure /etc/exim/exim.conf as follows:

         remote_smtp:
           driver = smtp
           authenticate_hosts = smtp.mail.yahoo.com
         ...
         
         smarthost:
           driver = domainlist
           transport = remote_smtp
           route_list = "* smtp.mail.yahoo.com bydns_a"
         ...
         
         plain:
           driver = plaintext
           public_name = PLAIN
           client_send = "^cmatheson3^this_is_my_password"
    

    Do not forget double quotes in the last line.

    9.6.2. Fetching mail – Fetchmail

    -

    fetchmail is run in daemon mode to fetch mail from a POP3 account with an ISP into the local mail system. Configure:

         /etc/init.d/fetchmail   
         /etc/rc?.d/???fetchmail run update-rc.d fetchmail default priority 30
         /etc/fetchmailrc        configuration file (chown 600, owned by fetchmail)
    

    Information on how to start fetchmail as a daemon from the init.d script for Potato is confusing (Woody fixed this). See the sample /etc/init.d/fetchmail and /etc/fetchmailrc files in the example scripts.

    If your email headers are contaminated by ^M due to your ISP's mailer, add "stripcr" to your options in $HOME/.fetchmailrc:

         options fetchall no keep stripcr
    

    9.6.3. Processing mail – Procmail

    -

    procmail is a local mail delivery and filter program. One needs to create $HOME/.procmailrc for each account that uses it. Example: _procmailrc

    9.6.4. Processing spam with crm114

    -

    crm114 package provides /usr/share/crm114/mailfilter.crm script which is written in CRM114. This script provides a very effective spam filter which can be trained by feeding the spam and the ham.

    CRM114 is a small language designed to write filters in; consider it to be a version of grep with super powers. See crm(1).

    9.6.5. Reading mail – Mutt

    -

    Use mutt as the mail user agent (MUA) in combination with vim. Customize with ~/.muttrc; for example:

         # use visual mode and "gq" to reformat quotes
         set editor="vim -c 'set tw=72 et ft=mail'"
         #
         # header weeding taken from the manual (Sven's Draconian header weeding)
         #
         ignore *
         unignore from: date subject to cc
         unignore user-agent x-mailer
         hdr_order from subject to cc date user-agent x-mailer
         auto_view application/msword
         ....
    

    Add the following to /etc/mailcap or $HOME/.mailcap to display HTML mail and MS Word attachments inline:

         text/html; lynx -force_html %s; needsterminal;
         application/msword; /usr/bin/antiword '%s'; copiousoutput;
         description="Microsoft Word Text"; nametemplate=%s.doc
    

    9.7. Localization (l10n)

    Debian is internationalized, offering support for a growing number of languages and local usage conventions. The next subsection lists some of the forms of diversity that Debian currently supports, and the following subsections discuss localization, the process of customizing your working environment to allow current input and output of your chosen language(s) and conventions for dates, numeric and monetary formats, and other aspects of a system that differ according to your region.

    9.7.1. Basics of localization

    There are several aspects to customizing for localization and national language support.

    9.7.1.1. Localizing the keyboard

    -

    Debian is distributed with keymaps for nearly two dozen keyboards. In Woody, reconfigure the keyboard by:

    • dpkg-reconfigure --priority=low console-data # console

    • dpkg-reconfigure --priority=low xserver-xfree86 # XF4

    • dpkg-reconfigure --priority=low xserver-common-v3 # XF3

    9.7.1.2. Localizing data files

    -

    The vast majority of Debian software packages support data handling of non-US-ASCII characters through the LC_CTYPE environment variable offered by the locale technology in glibc.

    • 8-bit clean: practically all programs

    • other Latin character sets (e.g. ISO-8859-1 or ISO-8859-2): the majority of programs

    • multibyte languages such as Chinese, Japanese, or Korean: many new applications

    9.7.1.3. Localizing the display

    -

    X can display any coding, including UTF-8, and supports all fonts. The list includes not only all the 8-bit fonts but also 16-bit fonts such as Chinese, Japanese, or Korean. Multibyte character input method is supported by the Alternative X input methods, Section 9.7.10 mechanism. See Example for a multilingual X window system, Section 9.7.9 and UTF-8 support for the X terminal emulator, Section 9.7.12.

    Japanese EUC code display is also available in a (S)VGA graphics console through the kon2 package. There is an alternative new Japanese display, jfbterm, which uses a frame-buffer console, too. In these console environments, the Japanese input method must be supplied by the application. Use egg package for Emacs and use japanized jvim package for a Vim environment.

    Installation of non Unicode fonts to X will help in displaying documents with any encoding in X. So do not worry too much about encoding of fonts.

    9.7.1.4. Localizing messages and documentation

    -

    Translations exist for many of the text messages and documents that are displayed in the Debian system, such as error messages, standard program output, menus, and manual pages. Currently, support for manual pages in German, Spanish, Finnish, French, Hungarian, Italian, Japanese, Korean, Polish, Portuguese, Chinese, and Russian is provided through the manpages-LANG packages (where LANG is a comma-separated list of two-letter ISO country codes. Use apt-cache search manpages-|less to get a list of available Unix manual pages.)

    To access an NLS manual page, the user must set the environment variable LC_MESSAGES to the appropriate string. For example, in the case of the Italian-language manual pages, LC_MESSAGES needs to be set to it. The man program will then search for Italian manual pages under /usr/share/man/it/.

    9.7.2. Locales

    -

    Debian supports locale technology. Locale is a mechanism that allows programs to provide suitable output and functionality according to local conventions such as character set, format for date and time, currency symbol, and so on. It uses environment variables to determine the appropriate behavior. For example, assuming you have both the American English and German locales installed on your system, the error messages of many programs can be multilingual:

         $ LANG="en_US" cat foo
         cat: foo: No such file or directory
         $ LANG="de_DE" cat foo
         cat: foo: Datei oder Verzeichnis nicht gefunden
    

    Glibc offers support for this functionality to programs as a library. See locale(7).

    9.7.3. Introduction to locales

    -

    Full locale description consists of 3 parts: xx_YY.ZZZZ.

    • xx: ISO 639 language codes (lower case)

    • YY: ISO 3166 country codes (upper case)

    • ZZZZ: codeset, i.e., character set or encoding identifier.

    For language codes and country codes, see pertinent description in the info gettext.

    Please note this codeset part may be normalized internally to achieve cross platform compatibility by removing all - and by converting all characters into lower case. Typical codesets are:

    • UTF-8: Unicode for all regions, mostly in 1-3 Octets (new de facto standard)

    • ISO-8859-1: western Europe (de facto old standard)

    • ISO-8859-2: eastern Europe (Bosnian, Croatian, Czech, Hungarian, Polish, Romanian, Serbian, Slovak, Slovenian)

    • ISO-8859-3: Maltese

    • ISO-8859-5: Macedonian, Serbian

    • ISO-8859-6: Arabic

    • ISO-8859-7: Greek

    • ISO-8859-8: Hebrew

    • ISO-8859-9: Turkish

    • ISO-8859-11: Thai (=TIS-620)

    • ISO-8859-13: Latvian, Lithuanian, Maori

    • ISO-8859-14: Welsh

    • ISO-8859-15: western Europe with euro

    • KOI8-R: Russian

    • KOI8-U: Ukrainian

    • CP1250: Czech, Hungarian, Polish (MS Windows origin)

    • CP1251: Bulgarian, Byelorussian (MS Windows origin)

    • eucJP: Unix style Japanese (=ujis)

    • eucKR: Unix style Korean

    • GB2312: Unix style Simplified Chinese (=GB, =eucCN) for zh_CN

    • Big5: Traditional Chinese for zh_TW

    • sjis: Microsoft style Japanese (Shift-JIS)

    As for the meaning of basic encoding system jargons:

    • ASCII: 7 bits (0-0x7f)

    • ISO-8859-?: 8 bits (0-0xff)

    • ISO-10646-1: Universal Character Set (UCS) (31 bits, 0-0x7fffffff)

    • UCS-2: First 16 bit of UCS as straight 2 Octets (Unicode: 0-0xffff)

    • UCS-4: UCS as straight 4 Octets (UCS: 0-0x7fffffff)

    • UTF-8: UCS encoded in 1-6 Octets (mostly in 3 Octets)

    • ISO-2022: 7 bits (0-0xff) with the escape sequence. ISO-2022-JP is the most popular encoding for the Japanese e-mail.

    • EUC: 8 bits + 16 bits combination (0-0xff), Unix style

    • Shift-JIS: 8 bits + 16 bits combination (0-0xff), Microsoft style.

    ISO-8859-?, EUC, ISO-10646-1, UCS-2, UCS-4, and UTF-8 share the same code with ASCII for the 7 bit characters. EUC or Shift-JIS uses high-bit characters (0x80-0xff) to indicate that part of encoding is 16 bit. UTF-8 also uses high-bit characters (0x80-0xff) to indicate non 7 bit character sequence bytes and this is the most sane encoding system to handle non-ASCII characters.

    Please note the byte order difference of Unicode implementation:

    • Standard UCS-2, UCS-4: big endian

    • Microsoft UCS-2, UCS-4: little endian for ix86 (machine-dependent)

    See Convert a text file with recode, Section 8.6.12 for conversion between various character sets. For more see Introduction to i18n.

    9.7.4. Activating locale support

    -

    Debian does not come with all available locales pre-compiled. Check /usr/lib/locale to see which locales (besides the default "C") are compiled for your system. If the one you need is not present, you have two options:

    • Edit /etc/locale.gen to add the desired locale, then run locale-gen as root to compile it. See locale-gen(8) and the manpages listed in its "SEE ALSO" section.

    • Run dpkg-reconfigure locales to reconfigure the locales package. Or if it is not already installed, installing locales will invoke the debconf interface to let you choose needed locales and compile the database.

    9.7.5. Activating a particular locale

    -

    The following environment variables are evaluated in this order to provide particular locale values to programs:

    1. LANGUAGE: This environment variable consists of a colon-separated list of locale names in order of priority. Used only if the POSIX locale is set to a value other than "C" [in Woody; the Potato version always has priority over the POSIX locale]. (GNU extension)

    1. LC_ALL: If this is non-null, the value is used for all locale categories. (POSIX.1) Usually "" (null).

    1. LC_*: If this is non-null, the value is used for the corresponding category (POSIX.1). Usually "C".

      LC_* variables are:

      • LC_CTYPE: Character classification and case conversion.

      • LC_COLLATE: Collation order.

      • LC_TIME: Date and time formats.

      • LC_NUMERIC: Non-monetary numeric formats.

      • LC_MONETARY: Monetary formats.

      • LC_MESSAGES: Formats of informative and diagnostic messages and interactive responses.

      • LC_PAPER: Paper size.

      • LC_NAME: Name formats.

      • LC_ADDRESS: Address formats and location information.

      • LC_TELEPHONE: Telephone number formats.

      • LC_MEASUREMENT: Measurement units (Metric or Other).

      • LC_IDENTIFICATION: Metadata about the locale information.

    1. LANG: If this is non-null and LC_ALL is undefined, the value is used for all LC_* locale categories with undefined values. (POSIX.1) Usually "C".

    Note that some applications (e.g., Netscape 4) ignore LC_* settings.

    The locale program can display active locale settings and available locales; see locale(1). (NOTE: locale -a lists all the locales that your system knows about; this does not mean that all of them are compiled! See Activating locale support, Section 9.7.4.)

    9.7.6. ISO 8601 date format locale

    -

    The locale support for the international date standard of yyyy-mm-dd (ISO 8601 date format) is provided by the locale called en_DK, "English in Denmark", which is a bit of joke :-) This seems to work only in a console screen for ls.

    9.7.7. Example for the US (ISO-8859-1)

    -

    Add the following lines to ~/.bash_profile:

         LC_CTYPE=en_US.ISO-8859-1
         export LC_CTYPE
    

    9.7.8. Example for France with Euro sign (ISO-8859-15)

    -

    Add the following lines to ~/.bash_profile:

         LANG=fr_FR@euro
         export LANG
         LC_CTYPE=fr_FR@euro
         export LC_CTYPE
    

    Configure the keyboard for French "AZERTY" as described in Localizing the keyboard, Section 9.7.1.1; add French manual pages by installing manpages-fr. The Right-Alt key in the US is called Alt-Gr in Europe. Pressing this together with other keys creates numerous accented and special characters. For example, Alt-Gr+E creates a Euro sign.

    Most western European languages can be configured similarly.

    See Debian Euro HOWTO for adding support for the new Euro currency and Utiliser et configurer Debian pour le français for more details in French.

    9.7.9. Example for a multilingual X window system

    -

    Let us set up a multilingual X window system which simultaneously supports Japanese, English, German, and French with EUC, UTF-8, and ISO-8859-1 encodings in different consoles.

    I will show you a customization using the Debian menu system. See the details of Debian menu system in file:///usr/share/doc/menu/html/index.html. I also create a shortcut to the mozilla web browser in this example. [46]

    • install Kana-to-Kanji conversion system and dictionary (for Japanese):

      • canna – Local server ("free-beer" license), or

      • freewnn-jserver – Network-extensible server (Public Domain)

    • install Japanese input method system (for Japanese):

      • kinput2-canna – for X, or

      • kinput2-canna-wnn – for X, and

      • egg – directly works with Emacsen even in console (optional)

    • Install compatible terminals (for all):

      • xterm – X (for ISO-8859-1 and UTF-8),

      • kterm – X (for Japanese EUC), and

      • mlterm – X (multilingual).

    • add all the required font packages. (for all)

    • create the ~/.xsession that sets the user-specific X environment as described in Custom X sessions, Section 9.4.5.1 (for all):

           #!/bin/sh
           # This makes X work when I su to root.
           if [ -z "$XAUTHORITY" ]; then
                   XAUTHORITY=$HOME/.Xauthority
                   export XAUTHORITY
           fi
           
           # Set specific environment through debian menu system.
           # Reset locale
           unset LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES 
           unset LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT 
           unset LC_IDENTIFICATION LC_ALL LANG LANGUAGE PAGER
           # set locale default in X
           LANG=C
           # export locale
           export LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES 
           export LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT 
           export LC_IDENTIFICATION LC_ALL LANG LANGUAGE PAGER
           ###
           # activate input method for Japanese with kinput2
           kinput2 &
           XMODIFIERS="@im=kinput2"
           export XMODIFIERS
           # How about blackbox window manager (lightweight)
           exec blackbox
           #exec xfwm
           #exec wmaker
      
    • set locale in ~/.bash_profile for Linux consoles (for all).

    • remove locale settings from ~/.bashrc, if existed (for all).

    • create few files in /etc/menu/ (for all).

      • /etc/menu/xterm-local: (add new entries to menu) [47]

             ?package(xterm):\
              needs=x11\
              section=XShells\
              longtitle="XTerm: terminal emulator (en_US.ISO-8859-1)"\
              title="XTerm (en_US.ISO-8859-1)"\
              command="sh -c 'LC_ALL=en_US.ISO-8859-1 xterm'"
             ?package(xterm):\
              needs=x11\
              section=XShells\
              longtitle="XTerm: terminal emulator (de_DE.ISO-8859-1)"\
              title="XTerm (de_DE.ISO-8859-1)"\
              command="sh -c 'LC_ALL=de_DE.ISO-8859-1 xterm -T xterm-de'"
             ?package(xterm):\
              needs=x11\
              section=XShells\
              longtitle="XTerm: terminal emulator for X with Unicode support (Japanese)"\
              title="UXTerm (ja_JP.UTF-8)"\
              command="sh -c 'LC_ALL=ja_JP.UTF-8 uxterm'"
        
      • /etc/menu/kterm: (override the system default) [48]

             ?package(kterm):\
              needs="x11"\
              section="XShells"\
              command="sh -c 'LC_ALL=ja_JP.eucJP PAGER=w3m /usr/X11R6/bin/kterm -xim'" \
              title="Kanji Terminal"
             ?package(kterm):\
              needs="x11"\
              section="XShells"\
              command="sh -c 'LANG=ja_JP.eucJP \
                       LC_MESSAGES=en_US.ISO-8859-1 PAGER=w3m /usr/X11R6/bin/kterm -xim'" \
              title="Kanji Terminal (bilingal)"
        
      • /etc/menu/mozilla-local: (add a new shortcut) [49]

             ?package(mozilla-browser):needs="x11" section="/" \
                     title=" Mozilla Navigator" command="mozilla-1.5" hints="Web browsers" \
                     icon=/usr/share/pixmaps/mozilla.xpm
        
      • run update-menus from the root account.

    • add the following lines to ~/.muttrc (for Japanese):

           # UTF-8 support is not popular in popular Japanese EMACS environment
           # 7-bit encoding of iso-2022-jp is easier for everyone.
           # default encoding order = us-ascii --> iso-8859-1 --> iso-2022-jp
           set send_charset="us-ascii:iso-8859-1:iso-2022-jp"
           set allow_8bit=no
      
    • activate XIM kinput2 for X applications (for Japanese):

      • add *inputMethod: kinput2 and KTerm*VT100*OpenIm: true to your X resources file, ~/.Xresources (it looks like Debian takes care of this automatically somehow).

      • Some applications (such as mlterm) also allow you to set up *inputMethod: and other information dynamically at runtime (press Ctrl-MouseButton-3 in mlterm).

    • start X by typing startx or from one of the display managers (xdm, gdm, kdm, wdm, ...) (for all).

    • start a Japanese-compatible application such as Vim 6, (x)emacs21, mc-4.5, mutt-1.4, ... in kterm (for Japanese). (Emacs seems to be the most popular platform, though I do not use it.)

    • press Shift+Space to toggle Japanese character input mode on and off (for Japanese).

    • read the localized manual page by starting command in localized console (for all).

    For other CJK language supports, see the following sections and SuSE pages for CJK.

    9.7.10. Alternative X input methods

    -

    There are many alternative X input methods support packages available:

         Language   LC_CTYPE     XIM server XMODIFIERS              Start key
         Japanese   ja_JP*       kinput2    "@im=kinput2"           Shift-Space
         Korean     ko_KR*       ami        "@im=Ami"               Shift-Space
         Chinese(T) zh_TW.Big5   xcin       "@im=xcin-zh_TW.big5"   Ctrl-Space
         Chinese(S) zh_CN.GB2312 xcin       "@im=xcin-zh_CN.GB2312" Ctrl-Space
    

    Japanese input method kinput2 is offered by the packages such as kinput2-canna-wnn, kinput2-canna, and kinput2-wnn. Japanese needs dictionary server such as canna and freewnn-jserver to be practical.

    9.7.11. X terminal emulators

    -

    There are many X consoles which support simple 8 bit encodings when pertinent font packages are installed:

    • xterm – The X terminal emulator

    • gnome-terminalxterm for Gnome

    • konsolexterm for KDE

    • rxvt – VT102 terminal (lighter)

    • aterm – VT102 for Afterstep WM

    • eterm – VT102 for Enlightment WM

    • wterm – VT102 for WindowMaker WM

    Multi-byte encoding supports of X console are provided by xterm through UTF-8 encoding (UTF-8 support for the X terminal emulator, Section 9.7.12). Other traditional encoding supports are in progress (as of 2003). Following packages offer traditional encoding supports:

    • aterm-ml – Multi-lingual

    • kterm – Multi-lingual (Japanese, ...)

    • rxvt-ml – Multi-lingual

    • wterm-ml – Multi-lingual

    • cxterm-big5 – Chinese (Trad., Big5)

    • cxterm-gb – Chinese (Simp., GB)

    • cxterm-ks – Chinese (KS)

    • cxterm-jis – Japanese

    • hanterm-classic – Korean (Hangul)

    • hanterm-xf – Korean (Hangul)

    • hztty – Chinese (GB, Big5, zW/HZ)

    For kterm (and possibly others), you may want to activate XIM through menu after Ctrl-middle-click mouse action.

    9.7.12. UTF-8 support for the X terminal emulator

    -

    UTF-8 support for X terminal emulator is provided by the uxterm program in the xterm package for XFree86 4.x. It enables support for all languages. It is a wrapper around the xterm(1) program that invokes the latter program with the "UXTerm" X resource class set.

    For example, to enable nice large display of English, Russian, Japanese, Chinese, and Korean characters, add following to your ~/.Xresources after installing all the pertinent fonts:

         ! set large font
         UXTerm*font: -misc-fixed-medium-r-normal-*-18-120-100-100-c-90-iso10646-1
         ! Use XIM for Japanese
         *inputMethod: kinput2
    

    Then run xrdb -merge ~/.Xresources to update X resources as described in X resources, Section 9.4.10.

    Although most of the popular console program packages such as vim, mutt, and emacs have been made compatible with UTF-8 recently (Woody-Sarge). Program such as mc still is not UTF-8 compatible but simply 8-bit clean. If you are editing 7 bit ASCII part of unknown or mixed encoding file, it is safer to use the locale unaware 8-bit clean editor.

    See The Unicode HOWTO.

    9.7.13. Example for UTF-8 in a framebuffer console

    -

    UTF-8 support on a FB console is provided by bterm used in the debian-installer.

    9.7.14. Beyond locales

    -

    When you are first setting the system up for a national language environment, please consider using tasksel or aptitude to find out what packages are selected by choosing the corresponding language environment task. The package choice made is useful even for a multilingual setup. If you encounter any package dependency conflicts during the install to your carefully configured system, avoid installing any software that conflicts with the existing system. You may have to use update-alternative to regain the original state for some commands since a newly installed one may have higher priority than existing ones.

    Newer major programs are using glibc 2.2 and are mostly internationalized. So a specially localized version such as jvim for Vim may not be needed as its functionality is offered by vim version 6.0 in X. In reality, it is still somewhat rough-edged. Since jvim has a version compiled with direct Japanese input method (canna) support even in the console and addresses many other Japanese-specific issues maturely, you may still want it :-)

    Programs may need to be configured beyond locale configuration to enable a comfortable working environment. The language-env package and its command set-language-env greatly eases this process.

    Also see the internationalization document, Introduction to i18n. It is aimed at developers but is also useful for system administrators.

    9.8. Multilingualization (m17n)

    -

    Localization (l10n), Section 9.7 enabled by language-env package and alike are aimed to achieve monolingual localization. These packages also use traditional encodings as the choice for the text encoding. You cannot mix French and Japanese text in such environment since they use incompatible ISO-8859-1 and EUC-JP encodings respectively.

    You can obtain multilingualized UTF-8 Desktop using Gnome and KDE programs started under one of the available UTF-8 locales. (Sarge) In such environment, you can mix English, Chinese, Russian, and Japanese characters under UTF-8 compliant softwares.

    Under such environment, new multilingualized input method (IM) using scim is preferred. IM offered by the scim is turned on and off by typing Ctrl-Space together. The input conversion engine can be switched by clicking small SCIM panel.

    vim offers the multilingualized environment and can handle both UTF-8 and conventionally encoded files (EUC-JP, ISO-8859-1, ...) when it is run under the UTF-8 console such as gnome-teminal. See vim help message with pressing [Esc] and typing :help mbyte.txt.

    10. Network configuration

    This chapter focuses on network administration in Debian. For a general introduction to GNU/Linux networking read the Net-HOWTO.

    10.1. Basics of IP networking

    -

    A Debian host may have several interfaces each with a different Internet Protocol (IP) address. Interfaces may be of several different types, including:

    • Loopback: lo

    • Ethernet: eth0, eth1, ...

    • Wi-Fi: wlan0, wlan1, wifi0, ... [50]

    • Token Ring: tr0, tr1, ...

    • PPP: ppp0, ppp1, ...

    There is a wide range of other network devices available, including SLIP, PLIP (serial and parallel line IP), "shaper" devices for controlling the traffic on certain interfaces, frame relay, AX.25, X.25, ARCnet, and LocalTalk.

    Every network interface connected directly to the Internet (or to any IP-based network) is identified by a unique 32 bit IP address. [51] The IP address can be divided into the part that addresses the network and the part that addresses the host. If you take an IP address, set to 1 the bits that are part of the network address and set to 0 the bits that are part of the host address then you get the so-called netmask of the network.

    Traditionally, IP networks were grouped into classes whose net address parts were 8, 16 or 24 bits in length. This system was inflexible and wasted many IP addresses, so today IPv4 networks are allocated with network address parts of varying length.

                   IP addresses                   net mask      length
         Class A   1.0.0.0     - 126.255.255.255  255.0.0.0     =  /8
         Class B   128.0.0.0   - 191.255.255.255  255.255.0.0   = /16
         Class C   192.0.0.0   - 223.255.255.255  255.255.255.0 = /24
    

    IP addresses not in these ranges are used for special purposes.

    There are address ranges in each class reserved for use on local area networks (LANs). These addresses are guaranteed not to conflict with any addresses on the Internet proper. (By the same token, if one of these addresses is assigned to a host then that host must not access the Internet directly but must access it through a gateway that acts as a proxy for individual services or else does Network Address Translation.) These address ranges are given in the following table along with the number of ranges in each class.

                   network addresses            length  how many
         Class A   10.x.x.x                     /8      1
         Class B   172.16.x.x -  172.31.x.x     /16     16
         Class C   192.168.0.x - 192.168.255.x  /24     256
    

    The first address in an IP network is the address of the network itself. The last address is the broadcast address for the network. [52] All other addresses may be allocated to hosts on the network. Of these, the first or the last address is usually allocated to the Internet gateway for the network.

    The routing table contains the kernel's information on how to send IP packets to their destinations. Here is a sample routing table printout for a Debian host on a local area network (LAN) with IP address 192.168.50.x/24. Host 192.168.50.1 (also on the LAN) is a router for the corporate network 172.20.x.x/16 and host 192.168.50.254 (also on the LAN) is a router for the Internet at large.

         # route
         Kernel IP routing table
         Destination   Gateway        Genmask       Flags Metric Ref Use Iface
         127.0.0.0     *              255.0.0.0     U     0      0     2 lo
         192.168.50.0  *              255.255.255.0 U     0      0   137 eth0
         172.20.0.0    192.168.50.1   255.255.0.0   UG    1      0     7 eth0
         default       192.168.50.254 0.0.0.0       UG    1      0    36 eth0
    
    • The first line after the heading says that traffic destined for network 127.x.x.x will be routed through lo, the loopback interface.

    • The second line says that traffic destined for hosts on the LAN will be routed through eth0.

    • The third line says that traffic destined for the corporate network will be routed toward gateway 192.168.50.1 also through eth0.

    • The fourth line says that traffic destined for the Internet at large will be routed toward gateway 192.168.50.254 also through eth0.

    IP addresses in the table may also appear as names that are obtained by looking up addresses in /etc/networks or by using the C Library resolver.

    In addition to routing, the kernel can perform network address translation, traffic shaping and filtering.

    See the Net-HOWTO and other networking HOWTOs for more background information.

    10.2. Low level network configuration

    The traditional low level network configuration tools on GNU/Linux systems are the ifconfig and route programs which come in the net-tools package. These tools have officially been superseded by ip which comes in the iproute package. The ip program works with Linux 2.2 and higher and is more capable than the old tools. However, the old tools still work and are more familiar to many users.

    10.2.1. ifconfig and route