UbuntuにaptリポジトリからFirefox・Firefox Developer Editionを導入する
毎回やり方忘れるのでメモ
snap版嫌な人とか、野良アドオンのためにDeveloper Edition使いたい人向け
tarボールを使う方法と違い、この方法で入れるとUbuntuのアップデートで普通に更新されます
desktopファイルを自前で作る手間も不要
https://gyazo.com/f6dcc0b5b412865ed4d5159b8a912b0a
リポジトリ追加
上記の公式ヘルプのInstall Firefox .deb package for Debian-based distributions (Recommended)の手順通りにやればおk
code:command
sudo install -d -m 0755 /etc/apt/keyrings
code:command
code:command
gpg -n -q --import --import-options import-show /etc/apt/keyrings/packages.mozilla.org.asc | awk '/pub/{getline; gsub(/^ +| +$/,""); if($0 == "35BAA0B33E9EB396F59CA838C0BA5CE6DC6315A3") print "\nThe key fingerprint matches ("$0").\n"; else print "\nVerification failed: the fingerprint ("$0") does not match the expected one.\n"}'
code:command
code:command
echo '
Package: *
Pin: origin packages.mozilla.org
Pin-Priority: 1000
' | sudo tee /etc/apt/preferences.d/mozilla
(※↑は5行まとめて入力する)
インストール
公式の記載は英語前提なんで、日本語版がほしいなら*-l10n-jaもインストールする
Stable版Firefoxの場合
code:command
sudo apt update && sudo apt install firefox firefox-l10n-ja
Developer Editionの場合
code:command
sudo apt update && sudo apt install firefox-devedition firefox-devedition-l10n-ja