Firefox Developer Edition and Beta: Try out Mozilla’s .rpm package!
好的,我现在需要帮用户总结一篇文章的内容,控制在100个字以内,并且不要以“文章内容总结”或“这篇文章”开头,直接写描述。首先,我得仔细阅读用户提供的文章内容。 这篇文章主要讲的是Mozilla推出了Nightly软件包,现在适用于Firefox Beta版本。它提到Firefox Beta适合测试网站,用户可以在Bugzilla上报告问题。接着,文章介绍了通过RPM仓库安装和更新Firefox Beta的优势,包括性能提升、快速更新、安全增强以及无需手动创建.desktop文件。还详细说明了在不同Linux发行版上如何设置RPM仓库并安装Firefox Beta,包括Fedora、openSUSE和其他使用dnf或zypper的系统。最后提到语言包的安装方法,并鼓励用户反馈问题。 接下来,我需要提取关键信息:Nightly包扩展到Firefox Beta,支持RPM系统,性能优化、安全增强、快速更新、安装简便。然后将这些点浓缩成一句话,不超过100字。 可能的结构是:介绍扩展到Beta版本,说明优势和适用系统。比如,“Mozilla将Nightly软件包扩展至Firefox Beta,支持RPM系统用户通过优化性能、安全性和快速更新体验更稳定的测试环境。” 这样既涵盖了主要内容又简洁明了。 </think> Mozilla将Nightly软件包扩展至Firefox Beta版本,并支持RPM-based Linux发行版。该软件包提供性能优化、快速更新和增强安全性等功能,并允许用户通过常用包管理器轻松安装和管理Firefox Beta。 2026-3-25 16:17:11 Author: hacks.mozilla.org(查看原文) 阅读量:2 收藏

In January, we introduced our Nightly package for RPM-based Linux distributions. Today, we are thrilled to announce it is now available for Firefox Beta!

Firefox Beta is great for testing your sites in a version of Firefox that will reach regular users in the coming weeks. If you find any issues, please file them on Bugzilla.

Switching to Mozilla’s RPM repository allows Firefox Beta to be installed and updated like any other application, using your favorite package manager. It also provides a number of improvements:

  •  Better performance thanks to our advanced compiler-based optimizations,
  • Updates as fast as possible because the .rpm management is integrated into Firefox’s release process,
  • Hardened binaries with all security flags enabled during compilation,
  • No need to create your own .desktop file.

If you have Mozilla’s RPM repository already set up, you can simply install Firefox Beta with your package manager. Otherwise, follow the setup steps below.


If you are on Fedora (41+), or any other distribution using dnf5 as the package manager

sudo dnf config-manager addrepo --id=mozilla --set=baseurl=https://packages.mozilla.org/rpm/firefox --set=gpgkey=https://packages.mozilla.org/rpm/firefox/signing-key.gpg --set=gpgcheck=1 --set=repo_gpgcheck=0
sudo dnf makecache --refresh
sudo dnf install firefox-beta

Note: repo_gpgcheck=0 deactivate the signature of metadata with GPG. However, this is safeguarded instead by HTTPS and package signatures (gpgcheck=1).

If you are on openSUSE or any other distribution using zypper as the package manager

sudo rpm --import https://packages.mozilla.org/rpm/firefox/signing-key.gpg
sudo zypper ar --gpgcheck-allow-unsigned-repo https://packages.mozilla.org/rpm/firefox mozilla
sudo zypper refresh
sudo zypper install firefox-beta

For other RPM based distributions (RHEL, CentOS, Rocky Linux, older Fedora versions)

sudo tee /etc/yum.repos.d/mozilla.repo >  /dev/null << EOF
[mozilla]
name=Mozilla Packages
baseurl=https://packages.mozilla.org/rpm/firefox
enabled=1
gpgcheck=1
repo_gpgcheck=0
gpgkey=https://packages.mozilla.org/rpm/firefox/signing-key.gpg
EOF
# For dnf users
sudo dnf makecache --refresh
sudo dnf install firefox-beta
# For zypper users
sudo zypper refresh
sudo zypper install firefox-beta

The firefox-beta package will not conflict with your distribution’s Firefox package if you have it installed, you can have both at the same time!

Adding language packs

If your distribution language is set to a supported language, language packs for it should automatically be installed. You can also install them manually with the following command (replace fr with the language code of your choice):

sudo dnf install firefox-beta-l10n-fr

You can list the available languages with the following command:

dnf search firefox-beta-l10n

Don’t hesitate to report any problem you encounter to help us make your experience better.

More articles by Bastien Orivel…


文章来源: https://hacks.mozilla.org/2026/03/firefox-developer-edition-and-beta-try-out-mozillas-rpm-package/
如有侵权请联系:admin#unsafe.sh