DEV Community

Harrsh Patel
Harrsh Patel

Posted on

How to setup Firefox Developer Edition on Ubuntu

Do you want to install and use Firefox Developer Edition on your Ubuntu and don’t know how to go about it?! If your answer is yes, then this article is for you. Am sure you’ve seen some documentations out there but in this one we will add Firefox Developer Edition to our Unity launcher. You’re welcome! 😉

Please follow the steps below…

Step 1
Download the firefox*.tar.bz2 file from Mozilla’s website.

Step 2
Open Terminal.

Step 3
Navigate to the folder where the file is saved.

Step 4
Copy firefox*.tar.bz2 file to the /opt folder.

sudo cp -rp firefox*.tar.bz2 /opt
Enter fullscreen mode Exit fullscreen mode

Step 5
Delete the downloaded firefox*.tar.bz2 file.

sudo rm -rf firefox*.tar.bz2
Enter fullscreen mode Exit fullscreen mode

Step 6
Navigate to the /opt directory.

cd ~
cd /opt
Enter fullscreen mode Exit fullscreen mode

Step 7
Un-tar the firefox*.tar.bz2 file in opt folder.

sudo tar xjf firefox*.tar.bz2
Enter fullscreen mode Exit fullscreen mode

Step 8
Delete the firefox*.tar.bz2 file in opt folder.

sudo rm -rf firefox*.tar.bz2
Enter fullscreen mode Exit fullscreen mode

Step 9
Change ownership of the folder containing Firefox Developer Edition /opt/firefox

sudo chown -R $USER /opt/firefox
Enter fullscreen mode Exit fullscreen mode

Step 10
Create the Firefox Developer Edition's shortcut

nano ~/.local/share/applications/firefox_dev.desktop
Enter fullscreen mode Exit fullscreen mode

The content of this file is,

[Desktop Entry]
Name=Firefox Developer 
GenericName=Firefox Developer Edition
Exec=/opt/firefox/firefox %u
Terminal=false
Icon=/opt/firefox/browser/chrome/icons/default/default128.png
Type=Application
Categories=Application;Network;X-Developer;
Comment=Firefox Developer Edition Web Browser.
StartupWMClass=Firefox Developer Edition
Enter fullscreen mode Exit fullscreen mode

Step 10
Mark the launcher as trusted and make it executable.

chmod +x ~/.local/share/applications/firefox_dev.desktop
Enter fullscreen mode Exit fullscreen mode

I hope this article has helped you to set-up your new Firefox Developer Edition.

Thank you

Latest comments (36)

Collapse
 
nubebuster profile image
Mark Cockram

firefox*.tar.bz2 is now firefox*.tar.xz.

Thanks works like a charm!

Collapse
 
nabil_shaikh profile image
Nabil Shaikh

Thanks so much, worked like a charm. Recently booted my system to POP!OS so I was pretty happy to learn this worked right off the bat

Collapse
 
godlycoder profile image
Amirmoh Divani • Edited

Someone said you can just delete the fierfox.bz2 file in /opt directory but idk

Collapse
 
godlycoder profile image
Amirmoh Divani

Thanks it worked for me on Ubuntu 22!
Just one question does it update automatically as well?

Collapse
 
khemendrabhardwaj profile image
Khemendra-Bhardwaj

Thanks a lot, Very helpful post

Collapse
 
lakshmanshankar profile image
Lakshmanshankar C

amazing blog everything works just like that. steps are clear and sweet

Collapse
 
dhinesh20022806 profile image
dhinesh20022806

Thank you so much, what if in future how can i update the firefox developer edition.

Collapse
 
thesandman7 profile image
Shayan

thanks bro Harrsh

Collapse
 
lucas24d profile image
Lucas Almeida

Thanks a lot bro, this helped me.

Collapse
 
amankhys profile image
Aman Khys P N

thanks a lot mate... really helped me out.