Ubuntu - How to install chrome

Ubuntu - How to install chrome

Summary Ubuntu에서 Chrome을 설치하는 방법은 deb 파일을 사용하는 것으로, 먼저 wget을 설치한 후 Chrome 패키지를 다운로드하고 dpkg를 사용하여 설치하는 절차로 진행됩니다.


🔗 https://velog.io/@given53/Linux-How-to-Install-Google-Chrome-on-Ubuntu-22.04

⭐ deb


첫 번째는 deb 파일로 설치하는 방법이다. Windows의 *.exe 파일을 생각하면 된다.

  1. wget 설치
1
$ sudo apt install wget -y
  1. Chrome 패키지 다운로드
1
$ wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
  1. 패키지 설치
1
$ sudo dpkg -i ./google-chrome-stable_current_amd64.deb

dpkg는 데비안 패키지 관리 소프트웨어로서 *.deb 파일의 설치, 삭제, 정보 제공을 위해 사용한다. -i는 install을 뜻하는 옵션이다.

💬 댓글

GitHub 계정으로 로그인하여 댓글을 남겨보세요. GitHub 로그인

🔧 댓글 시스템 설정이 필요합니다

GitHub Discussions 기반 댓글 시스템을 활성화하려면:

  1. Giscus 설정 페이지에서 설정 생성
  2. GISCUS_SETUP_GUIDE.md 파일의 안내를 따라 설정 완료
  3. Repository의 Discussions 기능 활성화

Repository 관리자만 설정할 수 있습니다. 설정이 완료되면 모든 방문자가 댓글을 남길 수 있습니다.

목차