I have installed wine from Ubuntu software centre but I don't need that & want to remove the software completely from my system so please tell me How to completely remove wine from Ubuntu 14.04?
Asked
Active
Viewed 2,533 times
1 Answers
-1
Open the terminal by pressing Control+Alt+T and type:
sudo apt-get remove wine
That will uninstall wine but if you want to get rid of wine and anything related to wine run:
sudo apt-get purge wine

Eliah Kagan
- 117,780

user273348
- 11
-
Note that
sudo apt-get purge wine
doesn't generally remove everything related to wine--only wine and its global (i.e., systemwide) configuration files. User-specific wine configuration files, Windows apps installed via Wine, and so forth are unaffected bypurge
ing (or any other action carried out viaapt-get
). – Eliah Kagan Aug 11 '14 at 23:56