我尝试安装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
看起来您删除了所有葡萄酒的痕迹,但安装葡萄酒也安装了很多依赖项。你可以删除它们
sudo apt-get autoremove --purge
这将删除自动安装且不再需要的软件包。软件包本身可能缓存在您的系统中。您也可以删除它们
sudo apt-get clean
如果您从未这样做过,它将释放大量空间。$ sudo apt autoremove wine-stable
最后添加稳定对我有帮助,如果有任何问题或建议,请回复,谢谢:)