[Tips] ubuntu 20.04 / 18.04, Google Chrome 설치
포스트
취소

[Tips] ubuntu 20.04 / 18.04, Google Chrome 설치

1. 인증키 등록

1
$ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -

2. PPA를 sources.list.d에 추가

1
$ sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'

3. 패키지 리스트 업데이트

1
$ sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'

4. 크롬 웹 브라우저 설치

1
$ sudo apt-get install google-chrome-stable

더 간단한 방법

1. 최신 Chrome.deb 다운로드

wget으로 최신 Google Chrome.deb 패키지를 다운로드

1
$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb

2. 설치

1
$ sudo apt install ./google-chrome-stable_current_amd64.deb

참고

이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.