完全去除酒

har*_*rsh 2 uninstall

我尝试使用以下命令从终端中删除 wine:

apt-get remove wine

但酒仍然存在。我怎样才能完全删除它?

harsh@harsh-BOOK:~$ sudo get-apt purge Q4Wine
[sudo] password for harsh: 
sudo: get-apt: command not found
harsh@harsh-BOOK:~$ sudo get-apt purge wine
sudo: get-apt: command not found
harsh@harsh-BOOK:~$ sudo rm wine
rm: cannot remove ‘wine’: No such file or directory
harsh@harsh-BOOK:~$ sudo rm q4wine
rm: cannot remove ‘q4wine’: No such file or directory
harsh@harsh-BOOK:~$ sudo rm winetricks
rm: cannot remove ‘winetricks’: No such file or directory
Run Code Online (Sandbox Code Playgroud)

小智 8

你用get-apt而不是apt-get.

rm 用于删除文件,而不是包。


Arr*_*cal 5

命令是:

sudo apt-get purge wine
Run Code Online (Sandbox Code Playgroud)

get-apt写错了,错误代码突出显示。