PDA

View Full Version : List of installed packages


megadyptes
March 13th, 2006, 03:02 PM
Folks!

Is there a way to list the names of installed packages on a server install, and possible filter them by keyword similar to the way apt-cache can be used to look for packages in the repositories?

Ta muchly

Koybe
March 13th, 2006, 03:11 PM
Try this :
dpkg --get-selections
then you can filter with grep.
dpkg --get-selections | grep -i keyword

megadyptes
March 13th, 2006, 03:28 PM
Perfect!