Skip to content

Instantly share code, notes, and snippets.

@moneal
Created March 13, 2012 22:09
Show Gist options
  • Save moneal/2032093 to your computer and use it in GitHub Desktop.
Save moneal/2032093 to your computer and use it in GitHub Desktop.
HowTo: Create a list of installed packages
\
Code:
dpkg --get-selections > installed-software
And if you wanted to use the list to reinstall this software on a fresh ubuntu setup,
Code:
dpkg --set-selections < installed-software
followed by
Code:
dselect
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment