CentOS 는 FireFox를 기본 브라우저로 사용하고 있다.
따라서 Chrome을 설치하기 위해서는 몇가지 준비작업이 필요하다.
1. root 권한으로 /etc/yum.repos.d 폴더로 접근하여 google.repo 라는 파일을 생성한다.
2. google.repo의 파일 내용은 다음과 같다
-32bit chrome 설치할 경우
[google]
name=Google - i386
baseurl=http://dl.google.com/linux/rpm/stable/i386
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
-64bit chrome 설치할 경우
[google]
name=Google - x86_64
baseurl=http://dl.google.com/linux/rpm/stable/x86_64
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub
3. yum을 이용하여 다음과같이 terminal에 명령어를 입력하여 chrome을 설치한다.
yum install google-chrome-stable -y
'Study > Linux' 카테고리의 다른 글
SSH 키 에러, error (0) | 2015.12.12 |
---|---|
iptables 명령어 옵션 정리 (0) | 2015.10.02 |
Ubuntu 고정 IP 설정 (0) | 2015.10.02 |
[Linux] Ubuntu, Kali ( Linux OS )에서 interface 이름 바꾸기 (0) | 2015.01.26 |