티스토리 뷰

들어가며

  • 리눅스 환경에서 터미널에서 Command Line을 통한 chrome 설치 방법을 알아보겠습니다. 

설치 방법

  • 아래 명령어를 참고하시면 됩니다.
  • 현재 기준으로 stable 버전으로 install 하게 됩니다.
curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
apt-get install -y ./google-chrome-stable_current_amd64.deb
rm google-chrome-stable_current_amd64.deb

 

  • 만약 특정 버전이 필요한 경우에는 아래 명령어의 ${CHROME_VERSION} 부분을 원하는 버전을 넣어주면 됩니다.
  • linux chrome stable 버전에 대한 리스트는 아래 링크에서 자세하게 확인할 수 있습니다. 
 

UbuntuUpdates - Package "google-chrome-stable" (stable )

Package "google-chrome-stable" Name: google-chrome-stable Description: The web browser from Google Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. Latest version: 97.0.4692.

www.ubuntuupdates.org

curl -LO http://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb
apt-get install -y ./google-chrome-stable_${CHROME_VERSION}_amd64.deb
rm google-chrome-stable_${CHROME_VERSION}_amd64.deb

 

  • 설치 후 --version Command를 통해서 google-chrome 버전 정보를 확인할 수 있습니다.
google-chrome --version

Google Chrome 98.0.4758.66 beta

 

반응형
댓글