사용자 도구

사이트 도구


firefox:ubuntu

Firefox on Ubuntu Linux

  • 최근 Ubuntu LinuxFirefoxSnap 패키지로 설치해주고 있음.
  • snap 이나 flatpak 기반 브라우저 설치시에는 chrome-gnome-shell 등 외부 애플리케이션 코드 호출 기능이 작동하지 않는다.

PPA deb 설치

# 기존 패키지 제거
snap remove --purge firefox
sudo apt remove --autoremove firefox
# 설치 시작
sudo add-apt-repository ppa:mozillateam/ppa
  • 이를 사용하려면 ubuntu 자체 firefox 패키지보다 ppa 패키지의 우선순위를 높여야 한다.
  • /etc/apt/preferences.d/99mozillateamppa 파일 생성
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

참조

firefox/ubuntu.txt · 마지막으로 수정됨: 2023/12/22 08:03 저자 kwon37xi