Skip to content

Instantly share code, notes, and snippets.

@naokiri
Forked from mahammad/firefox-developer-edition.md
Last active January 18, 2020 05:22
Show Gist options
  • Save naokiri/b2f2e04d75559fec0a822df8cbe9c907 to your computer and use it in GitHub Desktop.
Save naokiri/b2f2e04d75559fec0a822df8cbe9c907 to your computer and use it in GitHub Desktop.
How To install Firefox Developer Edition and create desktop icon for Ubuntu 18.04 LTS

chose other install way

  1. Open Terminal Ctrl+Alt+T Download Firefox Developer Edition tar file

    wget https://download.mozilla.org/?product=firefox-aurora-latest-ssl&os=linux64&lang=en-US

  2. Copy tar file to opt sudo cp -rp firefox-35.0a2.en-US.linux-x86_64.tar.bz2

  3. Open opt folder (cd /opt/) and untar file sudo tar xjf firefox-35.0a2.en-US.linux-x86_64.tar.bz2

  4. Delete tar file sudo rm -rf firefox-35.0a2.en-US.linux-x86_64.tar.bz2

  5. Now create new icon for Firefox Developer Edition browser. sudo chown -R $USER /opt/firefox

  6. Open nano ~/.bashrc

  7. Go to the end of file and paste this line: export PATH=/opt/firefox/firefox:$PATH

  8. The last thing we need to do is to create launcher for Unity. sudo nano /usr/share/applications/FirefoxDeveloperEdition.desktop

  9. Paste the lines below into it:

    [Desktop Entry]
    Version=1.0
    Name=Firefox Developer Edition
    GenericName=Web Browser
    Exec=/opt/firefox/firefox
    Terminal=false
    Icon=/opt/firefox/browser/chrome/icons/default/default64.png
    Type=Application
    Categories=Network;WebBrowser;Favorites;
    MimeType=text/html;text/xml;application/xhtml_xml;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;
    X-Ayatana-Desktop-Shortcuts=NewWindow;NewIncognito
  10. Copy icon to Desktop cp -rp /usr/share/applications/FirefoxDeveloperEdition.desktop /home/$USER/Desktop

  11. Do run enable chmod +x FirefoxDeveloperEdition.desktop

  12. Go Desktop and click Firefox Developer Edition 😄

@naokiri
Copy link
Author

naokiri commented Jan 18, 2020

Changed icon path.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment