如何从 ubuntu 中删除 filezilla

如何从 ubuntu 中删除 filezilla

我使用命令删除

sudo apt-get remove filezilla

但它仍然在我的计算机上。在使用第一个命令后,我还使用了以下命令

sudo apt-get autoremove

答案1

仅删除文件 zilla:

sudo apt-get remove filezilla

删除 filezilla 及其依赖项:

sudo apt-get remove --auto-remove filezilla

删除所有配置数据和文件:

sudo apt-get purge filezilla

或者

sudo apt-get purge --auto-remove filezilla

相关内容