Ubuntu – How to repair Wine

wine

I was using Wine successfully to install Windows-based programs. One day, it stopped working. When I try to open an exe file with Wine, nothing happens.

I tried to resolve the problem by re-installing Wine, first purge, then, install it again. But no success.

How can I diagnose Wine or re-install it to make it work?

Best Answer

Backup your Wine folder and remove the original one.

mv ~/.wine ~/.wine.bak

rm -r ~/.wine

Then, purge and reinstall -

sudo apt-get purge wine

sudo apt-get install wine
Related Question