Where can I find a complete list of packages that I have installed after initial installation?

Tamás Szelei

I want to save the list of packages that have installed. I figured it might be the best to list all and diff it with the default set.

Edit: Clarification: I don't want to get the list of installed packages that are installed at the moment. Rather I want to get the list of packages that I added since the default install.

Rinzwind

either

sudo dpkg-query -Wf '${Installed-Size}\t${Package}\n' | sort -n

or

sudo sed -ne '/^Package: \(.*\)/{s//\1/;h;};/^Installed-Size: \(.*\)/{s//\1/;G;s/\n/ /;p;}' /var/lib/dpkg/status | sort -n

or

sudo dpkg --get-selections

will list all the packages.

Just re-route the output to a file. The 1st two lines will list it from smallest to largest with the size in front of the package name. The 3rd is in alphabetical order.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Where can I find the complete list of attributes for a control?

From Dev

How can I get a list of all packages available for a specific version of Ubuntu (not necessarily the one I have installed)?

From Dev

On Gentoo how do I find list of packages installed after some specific date?

From Dev

Where can I find the Java packages and the class?

From Dev

Where can I find Vagrant packages?

From Dev

Where can I find Vagrant packages?

From Dev

Where can I find more wallpaper packages?

From Dev

Where can I find the Java packages and the class?

From Dev

How do I find installed packages that have no install candidate?

From Dev

Where do I find packages files of apps that are installed

From Dev

Where can I find the Atom installation directory?

From Dev

Where can i find the files of exe installation?

From Dev

How can I find executables installed by NuGet packages?

From Dev

How can I determine which packages I have installed via homebrew and which were installed manually?

From Dev

Where can I find python in mac when I installed it with brew?

From Dev

Can I export the list of installed packages in a machine-readable format?

From Dev

How can I get a list of the biggest packages currently installed in order?

From Dev

Where can I find out where a package has been installed to?

From Dev

Where can I find a complete list of properties to search using LDAP filters?

From Dev

Where can i find complete list of features for es5, es6, and es7?

From Dev

Where can I find a complete reference for the $PS1 variable?

From Dev

Where can I find a complete reference for the $PS1 variable?

From Dev

Where can I find complete issuer profiles for CPA EMV applications?

From Dev

How do I get the list of third-party python packages that I have installed with pip?

From Dev

Where can I find a Welsh word list?

From Dev

Where can I find oracle XE 10g packages

From Dev

Where can I find deleted packages from debian main pool?

From Dev

Where can I find the location of folders for installed programs?

From Java

Where can I find the TypeScript version installed in Visual Studio?

Related Related

  1. 1

    Where can I find the complete list of attributes for a control?

  2. 2

    How can I get a list of all packages available for a specific version of Ubuntu (not necessarily the one I have installed)?

  3. 3

    On Gentoo how do I find list of packages installed after some specific date?

  4. 4

    Where can I find the Java packages and the class?

  5. 5

    Where can I find Vagrant packages?

  6. 6

    Where can I find Vagrant packages?

  7. 7

    Where can I find more wallpaper packages?

  8. 8

    Where can I find the Java packages and the class?

  9. 9

    How do I find installed packages that have no install candidate?

  10. 10

    Where do I find packages files of apps that are installed

  11. 11

    Where can I find the Atom installation directory?

  12. 12

    Where can i find the files of exe installation?

  13. 13

    How can I find executables installed by NuGet packages?

  14. 14

    How can I determine which packages I have installed via homebrew and which were installed manually?

  15. 15

    Where can I find python in mac when I installed it with brew?

  16. 16

    Can I export the list of installed packages in a machine-readable format?

  17. 17

    How can I get a list of the biggest packages currently installed in order?

  18. 18

    Where can I find out where a package has been installed to?

  19. 19

    Where can I find a complete list of properties to search using LDAP filters?

  20. 20

    Where can i find complete list of features for es5, es6, and es7?

  21. 21

    Where can I find a complete reference for the $PS1 variable?

  22. 22

    Where can I find a complete reference for the $PS1 variable?

  23. 23

    Where can I find complete issuer profiles for CPA EMV applications?

  24. 24

    How do I get the list of third-party python packages that I have installed with pip?

  25. 25

    Where can I find a Welsh word list?

  26. 26

    Where can I find oracle XE 10g packages

  27. 27

    Where can I find deleted packages from debian main pool?

  28. 28

    Where can I find the location of folders for installed programs?

  29. 29

    Where can I find the TypeScript version installed in Visual Studio?

HotTag

Archive