Dette websted vil have begrænset funktionalitet, mens vi gennemgår vedligeholdelse for at forbedre din oplevelse. Hvis en artikel ikke løser dit problem, og du vil stille et spørgsmål, har vi vores supportfællesskab, der venter på at hjælpe dig på @FirefoxSupport på Twitter og/r/firefox på Reddit.

Søg i Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Læs mere

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 ?

Alle 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.

```