install firefox on debian manual
文章介绍了在 Linux 系统上通过命令行安装 Firefox Developer Edition 的步骤,包括下载 tar 包、解压文件、移动到指定目录以及创建桌面快捷方式等操作,并提供了相关支持链接。 2025-9-3 23:55:57 Author: dyrnq.com(查看原文) 阅读量:11 收藏

curl -o firefox.tar "https://download.mozilla.org/?product=firefox-devedition-latest-ssl&os=linux64&lang=en-US" -fSL#

tar -xvf firefox.tar

mv --force --verbose firefox /opt
ls -l /opt/firefox/

# wget https://raw.githubusercontent.com/mozilla/sumo-kb/main/install-firefox-linux/firefox.desktop -P /usr/local/share/applications
# https://github.com/mozilla/sumo-kb/blob/main/install-firefox-linux/firefox.desktop

mkdir -p /usr/local/share/applications

curl -f#SL -o /usr/local/share/applications/firefox.desktop https://github.com/mozilla/sumo-kb/raw/main/install-firefox-linux/firefox.desktop

sed -i "s@^Exec=firefox.*@Exec=/opt/firefox/firefox %U@g" /usr/local/share/applications/firefox.desktop
cat /usr/local/share/applications/firefox.desktop

ln -s /opt/firefox/browser/chrome/icons/default/default128.png /usr/share/icons/hicolor/128x128/apps/firefox.png
ls -l /usr/share/icons/hicolor/128x128/apps/firefox.png

https://support.mozilla.org/zh-CN/kb/install-firefox-linux#w_cong-mozilla-an-zhuang-firefox

Firefox Developer Edition

https://www.firefox.com/zh-CN/channel/desktop/developer/?redirect_source=mozilla-org
https://www.firefox.com/en-US/channel/desktop/developer/?redirect_source=mozilla-org
https://www.firefox.com/zh-TW/channel/desktop/developer/?redirect_source=mozilla-org


文章来源: https://dyrnq.com/install-firefox-on-debian-manual/
如有侵权请联系:admin#unsafe.sh