Den här webbplatsen har begränsad funktionalitet medan vi utför underhåll för att förbättra din upplevelse. Om en artikel inte löser ditt problem och du vill ställa en fråga har vi vår gemenskap som väntar på att hjälpa dig på @FirefoxSupport på Twitter, /r/firefox på Reddit.

Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Läs mer

No option to update Firefox from the about box

more options

Linux ( CentOS 7 )

distro packaged Firefox removed FFox 60.0.2 installed "outside of package manager"

Firefox reports updates available and gives link but no option to "Restart to update Firefox" in the about box. ( as described here : https://support.mozilla.org/en-US/kb/update-firefox-latest-version )

Do I now have to manually download, unpack etc for every update ?
Linux ( CentOS 7 ) distro packaged Firefox removed FFox 60.0.2 installed "outside of package manager" Firefox reports updates available and gives link but no option to "Restart to update Firefox" in the about box. ( as described here : https://support.mozilla.org/en-US/kb/update-firefox-latest-version ) Do I now have to manually download, unpack etc for every update ?

Alla svar (2)

more options

Hi there, since you're using a Linux distribution - you'll have to rely on your package manager for updates - your distro CentOS7 generally uses older packages than others for 'stability' purposes. And this distro is usually used for hosting servers, not desktop use.

It is my recommendation that you - download the tarball from the official download page, and read documentation on how to configure that or move to another distro - like Ubuntu, Mint, or Manjaro for the newest packages.

Hope this helps!

Mkll

more options

@bobamz,

As cOS7 is still officially supporting the older ESR (Extended Service/Support Release), you would use the same method as you (or your IT dept did to install anything newer (52.0.2+). If the event you have forgotten how (or your IT department did it initially) the process is below (assumes firefox-61.0.tar.bz2, which is the latest non-developer/beta release.

``` code: wget \ https://download-installer.cdn.mozilla.net/pub/firefox/releases/61.0/linux-x86_64/en-US/firefox-61.0.tar.bz2 \ ## Downloads the official Mozilla tarball

tar -C ~/.mozilla/firefox firefox-61.0.tar.bz2 ## Extracts the tarball into the finally location of ~/.mozilla/firefox

cd ~/.mozilla/firefox

sudo yum builddep firefox # su -c 'yum builddep firefox' would also work, this step recursively checks any new or updated dependencies and installs them.

./firefox &u # you can also simply symlink the ~/.mozilla/firefox/firefox bianry to /usr/local/bin/firefox if desired/allowed in your org.

```