본문 바로가기
OS/Linux

CentOS 에서 크롬 브라우저 설치하기

by 학수씨 2014. 6. 24.

CentOS 에서 크롬 브라우저를 설치하기 위하여 yum 저장소(repository)를 추가합니다.

 

vi /etc/yum.repos.d/google-chrome.repo

 

[google-chrome]

name=google-chrome

baseurl=http://dl.google.com/linux/chrome/rpm/stable/x86_64

enabled=1

gpgcheck=1

gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub


 

만약, 32비트 OS 라면 아래의 내용을 사용합니다.

 

[google-chrome]

name=google-chrome

baseurl=http://dl.google.com/linux/chrome/rpm/stable/i386

enabled=1

gpgcheck=1

gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub


 

yum 으로 검색해보면 beta, stable, unstable 세 가지 버전을 다운로드할 수 있습니다. stable 버전을 설치합니다.

 

yum install google-chrome-stable

 

만약, 설치 도중 아래와 같은 오류가 발생한다면...

 

 

다른 방법으로 설치를 하여야합니다.

 

먼저, install_chrome.sh 스크립트를 다운로드합니다. 다운로드한 스크립트 파일에 실행 권한을 부여한 후 이를 실행합니다.

 

wget http://chrome.richardlloyd.org.uk/install_chrome.sh

chmod u+x install_chrome.sh

./install_chrome.sh

 

설치가 완료되면... /etc/yum.repo.d/google-chrome.repo 파일이 자동 생성됩니다.

댓글