Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sigmadream/df3c648676d70c1c2a17cf564b9e7063 to your computer and use it in GitHub Desktop.
Save sigmadream/df3c648676d70c1c2a17cf564b9e7063 to your computer and use it in GitHub Desktop.

크롬 설치하기

  • *.deb 파일로 설치가 힘들 경우
    • 애플리케이션의 의존성을 충족 못했기 떄문
  • 지속적으로 애플리케이션을 관리해야 할 경우
    • 저장소의 애플리케이션이 업데이트 됨

업데이트 및 필수 라이브러리 설치

$ sudo apt update 
$ sudo apt upgrade
$ sudo apt install software-properties-common apt-transport-https wget 
$ sudo apt install ca-certificates gnupg2 ubuntu-keyring

크롬 저장소 추가

$ sudo wget -O- https://dl.google.com/linux/linux_signing_key.pub | gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg
$ 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

크롬 설치하기

$ sudo apt update
$ sudo apt install google-chrome-stable

VSCode 설치하는 방법은 구글에 "install vscode ubuntu repository"라고 입력해보세요! :D

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment