2

Possible Duplicate:
How to remove wine completely

Is there a way to do a reset for ubuntu 11.10 to really uninstall a software such as wine and all of its remaining components. I installed wine 1.3 using these commands:

sudo add-apt-repository ppa:ubuntu-wine/ppa
sudo apt-get update
sudo apt-get install wine1.3

Then I used the software center to uninstall wine but that really didn't uninstalled the whole program because it left some folders in the home directory .wine so is there a way to reset ubuntu or really uninstall wine with terminal commands? can you guys please help with the code for the terminal.

jmarc
  • 35

2 Answers2

1

If you want to remove wine + all configs and files type this in a terminal

sudo apt-get remove --purge wine1.3.

After that if there is still a ~/.wine folder you are free to delete it using

rm -rf ~/.wine.

Bruno Pereira
  • 74,715
0

Wine stores all its files in .wine/ in your home directory.

Remove the .wine/ directory from your home directory.

Then you use alacarte to remove the entries from the menu.

Anonymous
  • 11,979