I have downloaded "firefox-29.0.tar.bz2" to update my firefox. How do I use this file to update firefox?
Asked
Active
Viewed 4,958 times
1
-
1"how to use this to update firefox ?" you do not. This does not update; It will overwrite your current firefox. – Rinzwind May 01 '14 at 12:16
-
And besides using a tar why not the debian installer? saves you a lot of trouble... – Rinzwind May 01 '14 at 12:26
-
@DavidFoerster Agreed. that's a better dupe choice for this. VTR. – Elder Geek Nov 15 '17 at 15:27
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
- 114,770
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