标签:
In my case Wine did not get effectively uninstalled using the command:
sudo apt-get --purge remove wine
So I did the following:
rm -rf $HOME/.wine rm -f $HOME/.config/menus/applications-merged/wine* rm -rf $HOME/.local/share/applications/wine rm -f $HOME/.local/share/desktop-directories/wine* rm -f $HOME/.local/share/icons/????_*.xpm
These commands delete files stored in hard disk that may lock uninstallation of wine.
After deleting the files run command:
sudo apt-get remove --purge wine
Do the following to correct any installation error.
sudo apt-get update sudo apt-get autoclean sudo apt-get clean sudo apt-get autoremove另外
标签:
原文地址:http://my.oschina.net/uniquejava/blog/375059