Skip to content

Instantly share code, notes, and snippets.

@codewithleader
Last active October 3, 2022 20:27
Show Gist options
  • Save codewithleader/53efa2080d4a07f00f0f248c341a58e1 to your computer and use it in GitHub Desktop.
Save codewithleader/53efa2080d4a07f00f0f248c341a58e1 to your computer and use it in GitHub Desktop.
Firefox Developer Edition: Pasos para instalar Firefox Developer Edition en Ubuntu.
  1. $ sudo cp -rp firefox-105.0b6.tar.bz2 /opt [sudo] password for [user]: ******
  2. $ sudo rm -rf firefox-105.0b6.tar.bz2
  3. $ cd /opt
  4. /opt $ sudo tar xjf firefox-105.0b6.tar.bz2
  5. /opt $ sudo rm -rf firefox-105.0b6.tar.bz2
  6. /opt $ sudo chown -R $USER /opt/firefox
  7. /opt $ nano ~/.bashrc
  8. Pegar en la ultima línea y guardar: export PATH=/opt/firefox/firefox:$PATH
  9. /opt $ cat > ~/.local/share/applications/firefoxDeveloperEdition.desktop <<EOL [Desktop Entry] Encoding=UTF-8 Name=Firefox Developer Edition Exec=/opt/firefox/firefox Icon=/opt/firefox/browser/chrome/icons/default/default128.png Terminal=false Type=Application Categories=Network;WebBrowser;Favorite; 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;NewIncognitos; EOL

Tutorial con fotos: [https://www.solvetic.com/tutoriales/article/8328-como-instalar-firefox-developer-en-ubuntu/]

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