Differences between revisions 4 and 6 (spanning 2 versions)
Revision 4 as of 2008-02-22 16:14:37
Size: 540
Editor: Mac
Comment:
Revision 6 as of 2008-02-22 17:07:32
Size: 743
Editor: Mac
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:

Line 11: Line 13:
Also: This will show all packages that are in various stages of install (this includes packages that were removed but not purged). To show only the installed:

 * dpkg -l | DebPkg:grep '^i'
You can also use:

language en

Translation(s):

(!) ["/Talk"]

This page is about the ways to list the installed packages in a Debian system and how to create a file with this list. This file can be uploaded to the web (i.e. from other computer with Internet connection) to download new packages.

List all packages installed:

To check the state of all packages on your system:

  • dpkg -l | more

This will show all packages that are in various stages of install (this includes packages that were removed but not purged). To show only the installed:

  • dpkg -l | grep '^i'

You can also use:


CategoryPackageManagement