我尝试卸载 wine7.0-rc1 但 wine 仍然存在。
这是我在终端上输入的内容:
wine --version
这是输出,所以 wine 版本
wine-7.0-rc1
那么如何卸载这个 wine 版本?因为我删除了 wine 包,但 wine 仍然在这里
我的操作系统是 ubuntu 20.04.4 LTS
我从这个网站下载了 wine7.0-rc1:
https://dl.winehq.org/wine/source/7.0/
然后我解压文件 tar.xz,然后使用以下命令安装 wine:
tar xf wine-7.0-rc1.tar.xz
./configure
make
sudo make install
我使用命令来卸载 wine
sudo apt-get remove --autoremove wine-stable wine-stable-amd64 sudo apt clean && sudo apt autoclean sudo apt remove && sudo apt autoremove
我试过这个命令
sudo make uninstall
然后我得到了这个:
make: *** No rule to make target 'uninstall'. Stop.
答案1
要卸载此版本的 wine,您需要转到源目录(通过提取 .tar.xz 文件获得),然后运行sudo make uninstall
。