Ubuntu – Firefox stuck in 6.0 and not updating. Apt-get says that its latest version

aptfirefoxupdate-managerupdates

I'm having trouble updating Firefox, it does not update from the terminal and doesn't show up in the update manager. I'm running Ubuntu 12.04.

If I run apt-get install firefox it claims that the latest version is already installed and if I run firefox -v I get that Mozilla Firefox is version 6.0.2.

How can I solve this problem?

I don't want to manually download and upgrade firefox with archives and move and deleting folders every time a new version I released.

Update:

The output of sudo apt-get update is here.

Best Answer

Looking at the output of your sudo apt-get update command, it seems like you have a broken /etc/apt/sources.list file. To fix this, open Software sources by typing "software sources" in your dash and then check if there is a tick on the following:

  • Canonical-supported free and open-source software (main)
  • Community-maintained free and open-source software (universe)
  • Software restricted by copyright or legal issues (multiverse)

and the download takes place from the server nearest to you("Main Server" is fine for the moment but it may be busy at times).

And then open a terminal(Ctrl+Alt+t) and type the following:

 sudo apt-get update
 sudo apt-get install firefox

You should have the latest version of firefox now.

Related Question