Thread: Clean up tool
View Single Post
Posts: 566 | Thanked: 150 times | Joined on Dec 2007
#3
I think you mean the per-user settings. They are in /home/user/.<name of application>. To delete settings of a certain app, for example one called 'some-app' do the following:

- Open xterm. By default you are in /home/user/
- To see all folders and files in there type:
Code:
ls -al
- Suppose you see the folder ".some-app" in the results. Remove it and its contents with
Code:
rm -rf .some-app
or back it up with
Code:
mv .some-app .some-app-backup
The application files themselves (not the per-user settings) should normally be removed automatically if you install and uninstall using the application manager. Only if you install using .deb files copies of packages remain. In that case you need to use apt-get clean and apt-get autoclean to get rid of them, or use apt-get remove --purge <name of app to be uninstalled> to uninstall the app and delete the package copies.

Last edited by iamthewalrus; 2008-05-29 at 22:36.
 

The Following User Says Thank You to iamthewalrus For This Useful Post: