Created
February 4, 2018 22:11
-
-
Save bayoishola20/cb1b0f20891b12d4b9ad73124518e581 to your computer and use it in GitHub Desktop.
Firex developer edition installation ubuntu 16.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# After downloading file from official site for Ubuntu LInux distro, where "firefox-59.0b6.tar.bz2" is file downloaded | |
$ tar xjf firefox-59.0b6.tar.bz2 | |
# To ensure no firefox directory in opt | |
$ sudo rm -r /opt/firefox | |
# Move extracted file in step 1 | |
$ sudo mv firefox /opt/firefox | |
# Save old as backup | |
$ sudo mv /usr/bin/firefox /usr/bin/firefox_old | |
# Finally | |
$ sudo ln -s /opt/firefox/firefox /usr/bin/firefox | |
# OPEN FIREFOX... VIOLA!!! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment