How to clean folder leftovers of the apps that are no longer in use?

JoKeR

I'm running Ubuntu 12.04 and I'd like to know are there possibilities to clean folder leftovers of the apps that I don't use anymore and not planning to again.
For example in /home when I press Ctrl+H folders appear and some of them belong to apps that I don't use anymore and I have to manually to search for them and delete each by one.
So I wonder are there any commands I can use in Terminal to clean those leftovers, if they are?

jmunsch

Try:

sudo apt-get update && sudo apt-get autoremove && sudo apt-get autoclean

If that doesn't work try:

sudo apt-get update && sudo apt-get autoremove && sudo apt-get clean

When uninstalling Remove vs Purge.

sudo apt-get remove <package-name> the configuration files are not removed.

sudo apt-get purge <package-name> Might be more suitable for what it is that you are looking to do. As this will also purge the configuration files.

EDIT: This does not remove hidden folders. Those will need to be removed manually as suggested by @Takkat and @Oli here:

( How can I detect and delete all lost configuration folders?)

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 clean folder leftovers of the apps that are no longer in use?

From Dev

How to get rid of macro leftovers in Excel?

From Dev

how to remove float leftovers in C++

From Dev

How to clean build folder in Xcode 5?

From Dev

How to clean Windows\Installer folder in Windows 10?

From Dev

How do I keep the /lib folder clean?

From Dev

In grunt , how to exclude .git folder from clean in dist folder

From Dev

In grunt , how to exclude .git folder from clean in dist folder

From Dev

Flurry no longer allows to create and use analytics for Windows Phone apps?

From Dev

How do add leftovers from division to the last list?

From Dev

Django: how to startapp inside an "apps" folder

From Dev

NativeScript: How to copy a file from an apps folder to a user accessible folder?

From Java

How to clean node_modules folder of packages that are not in package.json?

From Dev

How to clean output folder before build using Brunch.io

From Dev

How to clean node_modules folder when prepping for deployment

From Dev

Nginx clean urls, how to rewrite a folder as an argument with try_files

From Dev

How to manipulate/clean the Linux Trash folder the pythonic way?

From Dev

Gulp clean folder then create folder

From Dev

How to use Clean code on Swift with a lot of if and else

From Dev

How to use string functions to clean array variables

From Dev

How to use an API on an android apps?

From Dev

How to use the current folder the program is in?

From Dev

Chrome Hosted apps no longer allowed?

From Dev

Edge is no longer in the background apps list

From Dev

How do I copy & move a FORM to a folder in Google Apps Script?

From Dev

How to add new apps folder in Yii2 advanced

From Dev

Google Apps Scripts: How to save files from root to a specific folder?

From Dev

How to use use variables for image folder path

From Dev

How to use use variables for image folder path

Related Related

  1. 1

    How to clean folder leftovers of the apps that are no longer in use?

  2. 2

    How to get rid of macro leftovers in Excel?

  3. 3

    how to remove float leftovers in C++

  4. 4

    How to clean build folder in Xcode 5?

  5. 5

    How to clean Windows\Installer folder in Windows 10?

  6. 6

    How do I keep the /lib folder clean?

  7. 7

    In grunt , how to exclude .git folder from clean in dist folder

  8. 8

    In grunt , how to exclude .git folder from clean in dist folder

  9. 9

    Flurry no longer allows to create and use analytics for Windows Phone apps?

  10. 10

    How do add leftovers from division to the last list?

  11. 11

    Django: how to startapp inside an "apps" folder

  12. 12

    NativeScript: How to copy a file from an apps folder to a user accessible folder?

  13. 13

    How to clean node_modules folder of packages that are not in package.json?

  14. 14

    How to clean output folder before build using Brunch.io

  15. 15

    How to clean node_modules folder when prepping for deployment

  16. 16

    Nginx clean urls, how to rewrite a folder as an argument with try_files

  17. 17

    How to manipulate/clean the Linux Trash folder the pythonic way?

  18. 18

    Gulp clean folder then create folder

  19. 19

    How to use Clean code on Swift with a lot of if and else

  20. 20

    How to use string functions to clean array variables

  21. 21

    How to use an API on an android apps?

  22. 22

    How to use the current folder the program is in?

  23. 23

    Chrome Hosted apps no longer allowed?

  24. 24

    Edge is no longer in the background apps list

  25. 25

    How do I copy & move a FORM to a folder in Google Apps Script?

  26. 26

    How to add new apps folder in Yii2 advanced

  27. 27

    Google Apps Scripts: How to save files from root to a specific folder?

  28. 28

    How to use use variables for image folder path

  29. 29

    How to use use variables for image folder path

HotTag

Archive