Linux

Install Google Chrome on RHEL 7.x

magnon 2017. 5. 30. 11:16

1. 임시로 yum 설정을 변경

# vi /etc/yum/pluginconf.d/search-disabled-repos.conf

'notify_only=1' 을  'notify_only=0' 으로 변경.

 

2. google repo를 수동으로 등록

vi 등의 에디터로 /etc/yum.repos.d 밑에 파일을 만들고,

# vi /etc/yum.repos.d/google-x86_64.repo

파일의 내용을 아래와 같이 작성한다.

[google64]
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을 이용해 Chrome 을 설치한다.

# yum install -y google-chrome-stable

 

4. yum 설정을 되돌린다.

# vi /etc/yum/pluginconf.d/search-disabled-repos.conf

'notify_only=0' 을  'notify_only=1' 로 변경.

반응형