I want to remove all programs associated to Wine and Wine itself in one command, can it be done? The whole point of this question is that I don't want to find any files connected to wine.
I want to remove all programs associated to Wine and Wine itself in one command, can it be done? The whole point of this question is that I don't want to find any files connected to wine.
This would uninstall wine and remove all menus and icons.
WARNING! DOING THIS WILL DESTROY DATA
If you really want it to be one command, replace the newline between the two lines with
&&
That will remove Wine (if you installed it from the repo) and it'll destroy the default installation area for applications.
Things it won't do:
~/.wine
Clean up your Menus with Alacarte
Because the above won't remove old program links in your menus, you need to manually remove the Wine applications. Thankfully in recent versions of Wine, all programs are automatically clustered under a "Wine" submenu. We just need to hide or remove this:
I removed wine and associates program using:
Run this in your terminal for removed all wine apps:
Run this command to delete from system menu::
Source:
I typed
sudo apt-get remove wine*
and it worked, it removed wine and all programs, but it also removed ubuntu-desktop. But now everything works thanks!Answer by @Alaukik works great but as mentioned by Oli in his answer if the
wine
is installed without a package then following answer :does not do the great job at complete removal of
wine
. So to have an absolute removal do the following along with above scripts.Cheers!!!