为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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 ?

所有回复 (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.

```