So my Firefox Developer Edition fails to update itself automatically although the settings show I allowed it to automatically install updates.
I first installed it manually into /opt/firefox_dev/firefox
by following the recommended procedure and subsequently had to update it manually too -- which is very inconvenient, compared to automatic updates.
So I added the Mozilla PPA to my repositories and followed the procedure, but nothing changed: my FDE keeps on suggesting me, every couple of days or so, to download its latest update, while it should be done automatically, right?
What have I got wrong? Thank you.
P.S. I am on Ubuntu 14.04 LTS, maybe that has something to do with the issue.
I chose the
chown
fix, and it worked well for me.Here is what you need to do:
Add Firefox Developer Edition PPA by following this tutorial.
Quit all Firefox instances. Also, make sure there is no more
firefox
processes running in the background.Give the ownership of Firefox Developer Edition directory to your user by running the following command:
-R
stands for 'recursively'Your user group name may be the same as your user name. To check what groups your user belongs to, run
groups $USER
.Finally run
[2021 02 UPD]
I've been currently using Ubuntu 20.10 (groovy) and everything is fine.
Here's also the meta details and content of my desktop launcher icon:
If you've copied files to
/opt
or/usr/local
, both are owned by root, and aren't writable by regular users. To be able to auto update, you need to install it in your home folder, or chown/opt
or/usr/local
.Alternatively, just download the new version and copy its files again, overwriting old ones.
I’d prefer ACL over regular permissions if your kernel supports it.
Just run:
For more info use
man setfacl
andman getfacl
.