Software

http://packages.ubuntu.com/

aptitude is a high-level interface to the package manager

apt-get

Configuration of the Advanced Packaging Tool (APT) system repositories is stored in the /etc/apt/sources.list configuration file.

To enable the universe repository, remove the # in /etc/apt/sources.list for universe repositories.

After editing the /etc/apt/sources.list file, run the following command to take the changes to take effect

 # apt-get update

To disable apt-get asking for the installaion CD each time, comment out the CD entry in /etc/apt/sources.list file

To list installed packages

 # dpkg --list

To remove a package

 # dpkg --remove package_name

Some packages, such as lynx, will install configuration files. If you wish these to be removed along with the package you can use the more brutal '--purge' flag:

 # dpkg --purge package_name

To re-configure a package.

 # dpkg-reconfigure slapd

http://www.debian-administration.org/articles/19