Created
March 13, 2012 22:09
-
-
Save moneal/2032093 to your computer and use it in GitHub Desktop.
HowTo: Create a list of installed packages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
\ | |
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