Differences between revisions 1 and 10 (spanning 9 versions)
Revision 1 as of 2008-02-22 15:45:28
Size: 625
Editor: Mac
Comment:
Revision 10 as of 2008-02-22 17:28:21
Size: 1168
Editor: Mac
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#language en
||<tablestyle="width: 100%;" style="border: 0px hidden">~-Translation(s):  -~ ||<style="text-align: right; border: 0px hidden"> (!) [:/Talk:Talk]||
[[BR]]
language en
||<tablewidth="100%">~-Translation(s): -~ ||<style="TEXT-ALIGN: right"> (!) ["/Talk"] ||
Line 9: Line 9:
 * DebPkg:dpkg --list  ()  * DebPkg:dpkg --list
Line 11: Line 11:
To  check the state of all packages on your system: To check the status of all packages on your system:
Line 13: Line 13:
 * dpkg -l | more  * dpkg -l | more
This will show all packages (1 line each) that are in various stages of install (this includes packages that were removed but not purged). To show only the installed:
Line 15: Line 16:
Also:
  
 * dpkg -l | DebPkg:grep '^i'
You can also use:
Line 18: Line 20:

You can if you are using Debian Linux use dpkg command to list installed software:
 * dpkg --get-selections

And store the list installed software to a file called /backup/installed-software.log

$ dpkg --get-selections [">"] /backup/installed-software.log

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

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

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 status of all packages on your system:

  • dpkg -l | more

This will show all packages (1 line each) 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:

You can if you are using Debian Linux use dpkg command to list installed software:

  • dpkg --get-selections

And store the list installed software to a file called /backup/installed-software.log

$ dpkg --get-selections [">"] /backup/installed-software.log

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

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


CategoryPackageManagement