====== Firefox on Ubuntu Linux ======
* 최근 [[linux:ubuntu|Ubuntu Linux]]는 [[:firefox|Firefox]]를 [[linux:snap|Snap]] 패키지로 설치해주고 있음.
* snap 이나 flatpak 기반 브라우저 설치시에는 ''chrome-gnome-shell'' 등 외부 애플리케이션 코드 호출 기능이 작동하지 않는다.
===== PPA deb 설치 =====
* https://launchpad.net/~mozillateam/+archive/ubuntu/ppa
# 기존 패키지 제거
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
===== 참조 =====
* [[https://fostips.com/ubuntu-21-10-two-firefox-remove-snap/|How to Remove Firefox Snap & Switch Back Classic Deb in Ubuntu 22.04 - FOSTips]]
* [[https://www.omgubuntu.co.uk/2022/04/how-to-install-firefox-deb-apt-ubuntu-22-04|How to Install Firefox as a Deb on Ubuntu (Not a Snap) - OMG! Ubuntu]]
* [[https://sourceforge.net/p/ubuntuzilla/wiki/Main_Page/|Ubuntuzilla]]