2

Why can't I see all installed apps in the App Center under "Manage", and how do I now uninstall all apps I do not want, e.g. all games, "Videos" etc.? It seem like Canonical has made it unnecessarily difficult to change what they have decided should be included in Ubuntu. I have tried to uninstall using termional but then I need to find exactly what each app is called e.g. remove/uninstall Vidoes "no such package can be found"

CAX
  • 31

1 Answers1

5

You should use their package names.

Open the terminal, and run dpkg --list to find out what their package names are.

Now look for unnecessary packages and remove them with the command:

sudo apt remove package-name

And then you can do the cleanup:

sudo apt autoremove
Vicenta
  • 61