How to list user installed applications (not packages)?

Bucic

Not packages and not all applications. Just the applications user installed by himself from whatever source (Software Center, manually added PPA, etc.).

If the above is not possible - a list of all installed applications or at least a GUI which lists the applications so I can take screenshots of it.

I've read a dozen of similar questions and people posting answers usually don't even get close to OP question merit. Please note that my question includes 'user installed'.

Answer: It is not currently possible in Ubuntu Linux. (choosing tijybba's answer as the closest one though)

atenz

You can actually use the Ubuntu Software Centre, as shown in the screenshot here:

Ubuntu Software Center: "Installed"-menu

Also you can see it in Synaptic Bottom left list selections.

By cd /etc/apt/sources.list.d/ && cat *.list you will get list of all repositories in your system.

You can also you Y PPA manager to backup and update your repositories.


Second Method

[Since this method involves installing all the packages , but if we think that newly Installed OS will already have those 90 % packages , so it will ignore the present ones and install the new manually added ones , which will be only your manually installed applications]

This method from here.

sudo dpkg --get-selections > installed-applications.txt

it will generate a list of installed applications in txt file in home folder.

To use this file to install the same applications you will have to do ( But before this please also add all the Third party Repositories as was present in older one)

sudo dpkg --set-selections < installed-applications.txt
sudo apt-get -y update
sudo apt-get dselect-upgrade

This is also possible through Gui way

sudo add-apt-repository ppa:webupd8team/mintbackup && sudo apt-get update
sudo apt-get install mintbackup

enter image description here

I guess image almost speaks itself, backup your selection, then in New installation restore it.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to list user installed applications (not packages)?

From Java

How to list npm user-installed packages?

From Dev

How to list all installed packages

From Dev

How to list installed go packages

From Dev

How to list all installed packages

From Dev

pacman - get list of packages installed by user

From Dev

How to create a link to already installed user applications

From Dev

How to get a list of which packages were installed with apt-get by a user and not by dependencies?

From Dev

How to get list of installed applications on Windows 10?

From Dev

How to get a list of applications installed in Ubuntu dash?

From Dev

How to get the list of installed library packages only?

From Dev

How to list all the installed packages and their version with Cabal?

From Dev

How to get the list of installed library packages only?

From Dev

How to get the list of installed packages without dependencies?

From Dev

How do I list the default installed packages?

From Dev

Zypper: How to list installed packages that are not in a repo

From Dev

How to list the packages to be installed by installing a specific package?

From Dev

How to list installed packages manually from backports?

From Dev

How to list installed packages that depend on another installed package in Debian?

From Dev

How to list all packages installed as dependencies in Terminal, and what installed them?

From Dev

List explicitly installed packages

From Dev

Chronological list of installed packages

From Dev

Allow user to upgrade installed packages

From Dev

update user installed packages with pip

From Dev

Allow user to upgrade installed packages

From Dev

update user installed packages with pip

From Dev

How can I list all applications installed in my system?

From Dev

How to create a list of all applications which were manually installed?

From Dev

How can I list all applications installed in my system?

Related Related

  1. 1

    How to list user installed applications (not packages)?

  2. 2

    How to list npm user-installed packages?

  3. 3

    How to list all installed packages

  4. 4

    How to list installed go packages

  5. 5

    How to list all installed packages

  6. 6

    pacman - get list of packages installed by user

  7. 7

    How to create a link to already installed user applications

  8. 8

    How to get a list of which packages were installed with apt-get by a user and not by dependencies?

  9. 9

    How to get list of installed applications on Windows 10?

  10. 10

    How to get a list of applications installed in Ubuntu dash?

  11. 11

    How to get the list of installed library packages only?

  12. 12

    How to list all the installed packages and their version with Cabal?

  13. 13

    How to get the list of installed library packages only?

  14. 14

    How to get the list of installed packages without dependencies?

  15. 15

    How do I list the default installed packages?

  16. 16

    Zypper: How to list installed packages that are not in a repo

  17. 17

    How to list the packages to be installed by installing a specific package?

  18. 18

    How to list installed packages manually from backports?

  19. 19

    How to list installed packages that depend on another installed package in Debian?

  20. 20

    How to list all packages installed as dependencies in Terminal, and what installed them?

  21. 21

    List explicitly installed packages

  22. 22

    Chronological list of installed packages

  23. 23

    Allow user to upgrade installed packages

  24. 24

    update user installed packages with pip

  25. 25

    Allow user to upgrade installed packages

  26. 26

    update user installed packages with pip

  27. 27

    How can I list all applications installed in my system?

  28. 28

    How to create a list of all applications which were manually installed?

  29. 29

    How can I list all applications installed in my system?

HotTag

Archive