목차

Firefox on Ubuntu Linux

PPA deb 설치

# 기존 패키지 제거
snap remove --purge firefox
sudo apt remove --autoremove firefox
# 설치 시작
sudo add-apt-repository ppa:mozillateam/ppa
sudoedit /etc/apt/preferences.d/99mozillateamppa
# ppa 패키지 우선순위 높이기
Package: firefox*
Pin: release o=LP-PPA-mozillateam
Pin-Priority: 501

# ubuntu 패키지 우선순위 낮추기
Package: firefox*
Pin: release o=Ubuntu
Pin-Priority: -1

# ppa 패키지 우선순위 높이기
Package: thunderbird*
Pin: release o=LP-PPA-mozillateam
Pin-Priority: 501

# ubuntu 패키지 우선순위 낮추기
Package: thunderbird*
Pin: release o=Ubuntu
Pin-Priority: -1
sudo apt update
apt search --names-only firefox
 
# 기존 snap 기반일때는 아래와 유사하던 결과가(패키지 버전에 snap 들어감)
firefox/kinetic,now 1:1snap1-0ubuntu2 amd64 [residual-config]
  Transitional package - firefox -> firefox snap
 
# 결과가 아래처럼 변경돼야한다. (snap 없어짐)
firefox/kinetic 109.0+build2-0ubuntu0.22.10.1~mt1 amd64 [residual-config]
  Safe and easy web browser from Mozilla
sudo apt install firefox
# 필요하면
sudo apt install firefox-locale-ko

참조