Accueil > Système > How to list all installed packages?

How to list all installed packages?

01/03/2024 Categories: Système Tags: , , , ,
Print Friendly, PDF & Email

To get a list of packages installed locally do this in your terminal:

dpkg --get-selections | grep -v deinstall

To save that list to a text file called packages on your desktop do this in your terminal:

dpkg --get-selections | grep -v deinstall > ~/Desktop/packages
Lire aussi:  How to list the crontabs for all users?
Les commentaires sont fermés.