16

Firefox on my Ubuntu installation requires me to update the Flash plugin and following the link, I get to the page which ask me to download the latest Firefox package.

I download the tar.gz and unzip it. It is the new version, but it is in an independent folder and if I want to use it, I need to open the folder and click on the Firefox executable.

How can I replace the old version of Firefox on my Ubuntu installation with the newly-downloaded?

I checked the old version:

nanger@mypad:/usr/lib/firefox$ which firefox
/usr/bin/firefox
nanger@mypad:/usr/bin$ whereis firefox
firefox: /usr/bin/firefox /etc/firefox /usr/lib/firefox /usr/bin/X11/firefox /usr/share/man/man1/firefox.1.gz

I'm not very familiar with the linux system. But what is /usr/bin/firefox? Is it a symbolic link which link to the Firefox executable in /usr/lib/firefox? How can I replace it with the new version?

lily
  • 401

1 Answers1

24

First of all, you may run into a false message from a webpage asking you to update Flash when running Linux because, although Linux Flash still receives security updates from Adobe, our Flash player is stuck on version 11 or 12 point something, whereas all Apple and Windows users are using version 18 or 19.

You can safely ignore these messages and some of these messages have actually been linked to malware in the past, so be very careful my friend on what you click on and trust nobody.

To keep your Flash plugin updated, install the Flash plugin downloader from apt-get and it will update itself. Open a terminal and run the following commands:

sudo apt-get update
sudo apt-get install flashplugin-installer

To update Firefox, run the following commands:

sudo apt-get update
sudo apt-get install firefox

Don't forget to restart Firefox.

If you would like to install Firefox nightly, please let me know and I will provide instructions on how to do so.

Please post any errors.

mchid
  • 44,904
  • 8
  • 102
  • 162