10

I really don't like firefox, so the first thing I did after installation was install chromium as a browser and removed firefox via terminal using:

sudo apt-get remove --purge firefox

But every time update manager opens it lists language packs for firefox. I can uncheck the package, but it gets rather annoying.

Is there some lingering file somewhere that I need to purge as well?

Jorge Castro
  • 70,934
  • 124
  • 466
  • 653
Avie Rose
  • 101
  • 1
  • 1
  • 3
  • 1
    No big deal, everyone has a favorite browser. Why not uninstall Firefox from the Software Center instead? Also, you should read [this Q&A about Chromium](http://askubuntu.com/q/177207/12864) so at least you know how updated it is. – Tom Brossman Sep 02 '12 at 17:25

3 Answers3

15

Remove the firefox and all the associated language packs with this command

sudo apt-get --purge autoremove firefox

It should remove firefox and all language packs for it. The output in my computer is shown below:

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 

Your output may vary depending on the packages you installed. The important thing is you should see the uninstallation of these packages

firefox firefox-globalmenu firefox-gnome-support

Using autoremove uninstall packages which was required by firefox but is not required now after removing it. Without autoremove those packages will be left on system.

autoremove: removes any packages on your system that are no longer needed. As an example if I install package A, it might install packages B and C as dependencies. Simply un-installing package A doesn't automatically un-install packages B and C as well, they are left installed. apt-get autoremove searches your system for packages that have been installed as dependencies but are no longer used and removes them.

See this apt-get manual page for more info.

Hope this helps.

Joshua Kan
  • 111
  • 5
Anwar
  • 75,875
  • 31
  • 191
  • 309
1

In a terminal you can list firefox related packages.

dpkg --list | grep firefox

Uninstall the unwanted packages.

BuZZ-dEE
  • 13,993
  • 18
  • 63
  • 80
  • Thank you. Ran this command after following the answer below, which removed a lot of packages but, then ran this and found that one language pack had been left. Then simply removed the specific package. – Avie Rose Sep 02 '12 at 18:05
0

Try this one, should work fine

sudo apt-get --purge autoremove firefox-locale-en unity-scope-firefoxbookmarks xul-ext-webaccounts
sudo apt-get --purge autoremove firefox
sudo rm -rf ~/.mozilla
Gowthaman D
  • 417
  • 1
  • 5
  • 17