怎样安装和完全卸载wine

Wine

ubuntu 官方自带了 wine ,但是推荐用 winehq 官方提供的最新版本 wine ,新版本解决了很多以前显得麻烦的问题。

PPA地址: https://launchpad.net/~ubuntu-wine/+archive/ppa

$ sudo add-apt-repository ppa:ubuntu-wine/ppa
$ sudo apt-get update
$ sudo apt-get install wine


Completely removing Wine: In case you want to completely remove Wine, the ususal uninstall command would leave you wondering what went wrong. It will uninstall Wine but leave the folders under the Applications menu. If you want a complete uninstall, execute the following commands in Terminal in the following order.

如果你想完全卸载wine程序,执行下面的命令:

sudo apt-get remove wine
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


参考资料:卸载wine http://www.nyutech.com/2009/03/how-to-install-and-completely-remove.html

你可能感兴趣的:(怎样安装和完全卸载wine)