사용자 도구

사이트 도구


firefox:ubuntu

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
firefox:ubuntu [2023/01/15 21:51]
kwon37xi 만듦
firefox:ubuntu [2023/12/22 08:03] (현재)
kwon37xi
줄 1: 줄 1:
 ====== Firefox on Ubuntu Linux ====== ====== 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
 +<code sh>
 +# 기존 패키지 제거
 +snap remove --purge firefox
 +sudo apt remove --autoremove firefox
 +</code>
 +
 +<code sh>
 +# 설치 시작
 +sudo add-apt-repository ppa:mozillateam/ppa
 +</code>
 +
 +  * 이를 사용하려면 ubuntu 자체 ''firefox'' 패키지보다 ppa 패키지의 우선순위를 높여야 한다.
 +  * ''/etc/apt/preferences.d/99mozillateamppa'' 파일 생성
 +
 +<code sh>
 +sudoedit /etc/apt/preferences.d/99mozillateamppa
 +</code>
 +
 +<code>
 +# 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
 +
 +</code>
 +
 +<code sh>
 +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
 +</code>
 +  * 설치
 +<code sh>
 +sudo apt install firefox
 +# 필요하면
 +sudo apt install firefox-locale-ko
 +</code>
 ===== 참조 ===== ===== 참조 =====
   * [[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://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]]   * [[https://sourceforge.net/p/ubuntuzilla/wiki/Main_Page/|Ubuntuzilla]]
  
  
  
firefox/ubuntu.1673787104.txt.gz · 마지막으로 수정됨: 2023/01/15 21:51 저자 kwon37xi