Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

Firefox Nightly not auto updating in Linux

more options

Firefox Nightly cannot be found in the 'Software' store, so probably the only way to download it is by going to the website and getting a tar.bz2 file. I got that, extrated it and placed it in the/opt folder, made an application shortcut, added an icon, and now it's working like a normal app. The problem arises when it tries to auto-update. Firefox Nightly updates very frequently, sometimes more than once per day, and on windows, I used to get a notification saying that a new update is released, and if i wanted to install it. Clicking yes, Firefox would update and restart within moments, and restore all my tabs and windows seamlessly. Here on Linux, I have to manually download the new tar.bz2 file, extract it, replace it in the specified folder, and launch Firefox Nightly again, and again and again usually once per every alternate day, whenever the new update comes. Is there a solution for this? Will Firefox someday release a .deb file for easy installation and updates? My PC : Dell Optiplex 3070 OS : Zorin OS 16 Core (based on Ubuntu 20.04 LTS)

Firefox Nightly cannot be found in the 'Software' store, so probably the only way to download it is by going to the website and getting a tar.bz2 file. I got that, extrated it and placed it in the/opt folder, made an application shortcut, added an icon, and now it's working like a normal app. The problem arises when it tries to auto-update. Firefox Nightly updates very frequently, sometimes more than once per day, and on windows, I used to get a notification saying that a new update is released, and if i wanted to install it. Clicking yes, Firefox would update and restart within moments, and restore all my tabs and windows seamlessly. Here on Linux, I have to manually download the new tar.bz2 file, extract it, replace it in the specified folder, and launch Firefox Nightly again, and again and again usually once per every alternate day, whenever the new update comes. Is there a solution for this? Will Firefox someday release a .deb file for easy installation and updates? My PC : Dell Optiplex 3070 OS : Zorin OS 16 Core (based on Ubuntu 20.04 LTS)

모든 댓글 (3)

more options

Short version is you need to make sure the user has read/write permissions for the Firefox folder whether on Windows, Mac or Linux. Third-party versions like those provided by Linux distros are not updated by Mozilla as they only update their own builds.


Linus users may often place (official builds) of Firefox from mozilla.org in a folder in Home for example as one way to have read/write permissions so the updates works.

more options

Note that you can possibly start Firefox via sudo to be able to update Firefox installed in /opt or /usr/local/ I use a bash script:

#!/bin/sh

cd /usr/local/mozilla/firefox-NI
./firefox -P "default-nightly"

more options

Hmmm... But it's easy to fix, isn't it? Just give ownership (of your current user and its group) to folder where Firefox is installed. That fix worked for me. For example, I have firefox nightly on this way /opt/firefox-nightly I just go to /opt folder: cd /opt/ And give it ownership of my current user and group (change username:group to your own): sudo chown -R username:group firefox-nightly

That's all. Firefox now can update automatically. It would be nearly the same if it was installed in the home directory.