So I recently updated to WINE version 1.9.6 from version 1.6.2 (from software manager). The new version was not working, so I decided to uninstall it, and reinstall the old version, but the new version 1.9.6 seems to not be uninstalling. I've tried
sudo wine uninstall wine
sudo apt-get purge wine
sudo apt-get remove --purge wine
and all of these options with wine*, wine-1.9, and wine-1.9.6 as opposed to simply wine. Nevertheless, when I check the version of wine, it shows up as 1.9.6.
Reinstalling the old version from the software manager doesn't seem to help either. What else can I do to get rid of this version?
edit:
which wine
shows /usr/local/bin/wine
which wine
so we know where it's installed? – tudor -Reinstate Monica- Mar 29 '16 at 02:41sudo rm wine*
– tripleG Mar 29 '16 at 03:11make install
then you should also be able to uninstall it withmake uninstall
– tudor -Reinstate Monica- Mar 29 '16 at 03:24