I have downloaded "firefox-29.0.tar.bz2" to update my firefox. How do I use this file to update firefox?
Asked
Active
Viewed 5,023 times
2 Answers
4
You don't need to do anything to update Firefox to Firefox 29. Firefox 29 is already available from your normal software updates. Just open the Software Updater and you will be asked if you want to get the update.
karel
- 122,292
- 133
- 301
- 332
2
First, extract the package,
tar -xjf firefox-29.0.tar.bz2
Then replace the older firefox,
sudo rm -rf /opt/firefox (remove the folder, might be named differently)
sudo mv firefox /opt/firefox (mv to where old folder was)
Then fix the symbolic links,
sudo ln -s /opt/firefox/firefox /usr/bin/firefox
The easiest way, though, is just
sudo apt-get update
sudo apt-get upgrade
randrumree
- 121
- 1