빅데이터 전문가 되기
[Ubuntu_22.04] Chrome 설치하는 방법 본문
Ubuntu에서 크롬 브라우저를 설치하는 방법에 대하여 알아보겠습니다.
1. 터미널을 실행합니다.
2. 터미널에서 Ubuntu를 업데이트 및 업그레이드를 해줍니다.
sudo apt update && sudo apt upgrade -y
3. Chrome 설치를 위한 필수 패키지를 설치합니다.
sudo apt install software-properties-common apt-transport-https wget ca-certificates gnupg2 ubuntu-keyring -y
4. 크롬 브라우저의 GPG 키를 가져옵니다.
sudo wget -O- https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg
5. 크롬 브라우저의 저장소를 가져옵니다.
echo deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main | sudo tee /etc/apt/sources.list.d/google-chrome.list
6. 저장소 목록을 업데이트 합니다.
sudo apt update
7. 크롬 브라우저를 설치합니다.
sudo apt install google-chrome-stable -y
'Linux' 카테고리의 다른 글
[Ubuntu] 한글 설치 (0) | 2024.03.27 |
---|---|
[Window&Ubuntu] 듀얼부팅 세팅하기 (0) | 2024.03.26 |
[Ubuntu] Anaconda 설치 (0) | 2024.03.25 |
Windows에서 간단하게 Ubuntu 사용하기 (0) | 2023.10.22 |
Vim 기능 (0) | 2023.09.01 |
Comments