0

I just uninstalled my first program in Ubuntu (gtg - getting things gnome) and noticed that it didn't clean after itself. It left .config/gtg and .local/share/gtg

both full with configs and task info

Is that the norm in ubuntu? How to cleanly uninstall programs?

2 Answers2

0

use purge

sudo apt-get purge <application name>

purge program to remove.

Raja G
  • 105,327
  • 107
  • 262
  • 331
Meow
  • 1,427
0

I use

sudo apt-get autoremove --purge APP

This one purges the app with its configuration files, along with extra packages that are no longer necessary. As for the files in the home folder, you will have to delete those manually. I don't think there is a way to automatically remove them.