Created
October 2, 2017 07:00
-
-
Save rohit-gupta/b196c761cb0e02a95acf7fb8a3b40d91 to your computer and use it in GitHub Desktop.
Install the blazing fast Firefox Quantum on Ubuntu/Linux Mint while keeping your old firefox install around as firefox-old
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
wget download-installer.cdn.mozilla.net/pub/firefox/releases/57.0b4/linux-x86_64/en-US/firefox-57.0b4.tar.bz2 | |
wget http://download-installer.cdn.mozilla.net/pub/firefox/releases/57.0b4/SHA256SUMS | |
diff <(sha256sum firefox-57.0b4.tar.bz2 | awk 'BEGIN{FS=" "} {print $1}') <(grep "linux-x86_64/en-US/firefox-57.0b4.tar.bz2" SHA256SUMS | awk 'BEGIN{FS=" "} {print $1}') | |
tar xjf firefox-57.0b4.tar.bz2 | |
sudo rm -r /opt/firefox | |
sudo mv firefox /opt/quantum | |
sudo mv /usr/bin/firefox /usr/bin/firefox-old | |
sudo ln -s /opt/quantum/firefox /usr/bin/firefox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment