如何完全删除Firefox,使其不会更新?


9

我真的不喜欢Firefox,所以安装后我要做的第一件事是将Chrome安装为浏览器,并使用以下命令通过终端删除了Firefox:

sudo apt-get remove --purge firefox

但是每次更新管理器打开时,它都会列出Firefox的语言包。我可以取消选中该程序包,但是它很烦人。

我还需要清除一些残留的文件吗?


1
没什么大不了的,每个人都有喜欢的浏览器。为什么不从软件中心卸载Firefox?另外,您应该阅读有关Chromium的此问题与解答,以便至少了解它是如何更新的。
汤姆·布鲁斯曼

Answers:


15

使用此命令删除Firefox和所有关联的语言包

sudo apt-get --purge autoremove firefox

它应该删除Firefox和所有语言包。我的计算机中的输出如下所示:

anwar@edubuntu-lenovo:~$ sudo apt-get autoremove firefox
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following packages will be REMOVED:
  firefox firefox-globalmenu firefox-gnome-support 

您的输出可能会因安装的软件包而异。重要的是您应该看到这些软件包的卸载

firefox firefox-globalmenu firefox-gnome-support

使用autoremove卸载软件包,这是firefox所必需的,但删除后现在不需要。没有autoremove这些软件包,将留在系统上。

autoremove:删除系统上不再需要的所有软件包。例如,如果我安装软件包A,则可能会安装软件包B和C作为依赖项。仅仅卸载软件包A并不会自动也卸载软件包B和C,它们会保持安装状态。apt-get autoremove在系统中搜索已安装为依赖项但不再使用的软件包,然后将其删除。

有关更多信息,请参见apt-get手册页

希望这可以帮助。


谢谢。帮助很大。首先尝试了此操作,删除了很多软件包。
阿维·罗斯

@AvieRose很高兴为您提供帮助。可以解决问题吗?如果是,您是否可以接受它:)谢谢
Anwar 2012年

您说要使用的命令与示例中使用的命令不相同。哪个是正确的?
丹尼斯2013年

1

在终端中,您可以列出与Firefox相关的软件包。

dpkg --list | grep firefox

卸载不需要的软件包。


谢谢。在遵循以下答案后运行该命令,该命令删除了很多程序包,但随后运行了此程序,发现剩下一种语言包。然后只需删除特定的程序包。
阿维·罗斯

0

试试这个应该工作

sudo apt-get --purge autoremove firefox-locale-en unity-scope-firefoxbookmarks xul-ext-webaccounts


sudo apt-get --purge autoremove firefox

sudo rm -rf ~/.mozilla
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.