How can I get the list of all packages installed on my Debian system (I know this one is easy)? And also a list of all packages marked as manual? I am thinking about system upgrade, but I can't remember all these things I installed over the years :)
|
feedback
|
|
Getting the list of installed packages is simple:
You can later reinstall the packages in the list using this command:
If you've used aptitude exclusively to manually install packages, it is very easy to get a nice list of manually installed packages. Otherwise, this list will include both packages you installed, and their dependencies. In either case, read through this article and comments for a coherent solution to generating the list of manually installed packages: Cleaning up a Debian GNU/Linux system. You might find deborphan and debfoster of help in maintaining this list in future. | |||
feedback
|
|
here's how I would do it. As root, run the following:
This will produce a nice, clean list of installed packages, perfect for 'cat'-ing to apt-get. or a crude way to get a list of the packages you have manually installed with aptitude you can grep the logs with something like
| |||
|
feedback
|
|
dpkg -l will list installed packages, as suggested. I suggest to use upgrade-system for package upgrade, as it (wrapping deborphan) will purge away old un-needed packages too. This takes your system reasonably both up-to-date and clean. | ||||
|
feedback
|