Mozilla 도움말 검색

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

자세히 살펴보기

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.

```