본문 바로가기

LINUX

[리눅스] CentOS Chrome 크롬 설치하기


CentOS Chrome 크롬 설치하기

 - CentOS는 기본적으로 Chrome을 지원하지 않지만, 간단하게 repository를 추가하여 yum으로 설치가 가능하다.




Chrome 크롬 설치방법


1. google.repo 생성

  

   [root@localhost ~]# cd /etc/yum.repos.d

   [root@localhost ~]# vi /etc/yum.repo.d/google.repo


    #32bit

    [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

    [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






2. Chrome 설치

   [root@localhost ~]#  yum install google-chrome-stable -y