How to list all ubuntu installed packages?
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
(you don't need to run this as the superuser, so no sudo
necessary here)
Written by cppgohan
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#