0

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?

user299731
  • 267
  • 4
  • 11
  • 18

1 Answers1

-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
  • 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 by purgeing (or any other action carried out via apt-get). – Eliah Kagan Aug 11 '14 at 23:56