Skip to content

Instantly share code, notes, and snippets.

@scmorrison
Created December 15, 2014 04:58
Show Gist options
  • Save scmorrison/8f08bd8bd38d8d075652 to your computer and use it in GitHub Desktop.
Save scmorrison/8f08bd8bd38d8d075652 to your computer and use it in GitHub Desktop.
Install / update stock Firefox on debian
#!/bin/bash
cd /tmp/
wget ftp://ftp.mozilla.org/pub/firefox/releases/latest/linux-x86_64/en-US/firefox-*tar.bz2 -O firefox-latest.tar.bz2
tar xjf firefox-latest.tar.bz2
[ -d /opt/firefox ] && sudo rm -rf /opt/firefox
sudo mv firefox /opt/firefox
rm firefox-latest.tar.bz2
rm ~/bin/firefox
ln -s /opt/firefox/firefox ~/bin/firefox
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment