从 Ubuntu 20.04 卸载 Wine

从 Ubuntu 20.04 卸载 Wine

我尝试安装 wine,发现它占用了很大的空间,所以我没有完全安装它,而是删除了名为 wine 的文件夹,但存储没有被清除,那么我该如何完全删除它呢?我尝试了这个命令来安装它sudo dpkg --add-architecture i386

sudo apt-key add winehq.key
sudo add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ focal main'
sudo apt update
sudo apt upgrade
sudo apt install --install-recommends winehq-stable


and tried these commands to remove it
sudo apt-get --purge remove wine
cd $HOME
rm -r .wine
rm .config/menus/applications-merged/wine*
rm -r .local/share/applications/wine
rm .local/share/desktop-directories/wine*
rm .local/share/icons/????_*.xpm
sudo apt-get remove --purge wine


答案1

看起来你删除了所有 wine 的痕迹,但安装 wine 也安装了很多依赖项。你可以用以下方法删除它们sudo apt-get autoremove --purge

这将删除自动安装的不再需要的软件包。这些软件包本身可能缓存在您的系统中。您也可以使用以下命令删除它们。sudo apt-get clean 如果您从未这样做过,它将释放大量空间。

答案2

$ sudo apt autoremove wine-stable

最后添加稳定对我有帮助,如果有任何问题或建议,请回复,谢谢:)

相关内容