Get a list of packages installed locally do this in your terminal
To get a list of packages installed locally do this in your terminal:
To save that list to a text file called packages on your desktop 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
Comments
Post a Comment