59
58

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

CentOS7にChromeをインストール

Last updated at Posted at 2016-08-14

CentOS7には、Firefoxがインストールされていますが、Chromeを利用したい場合の方法をメモしておきます。RHEL7.xでも同様の方法で対応可能です。

検証環境:CentOS7.2 x64

##事前準備
リポジトリファイルを設定

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

以下の内容を記入して保存

google.chrome.repo
[google-chrome]
name=google-chrome
baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch
enabled=1
gpgcheck=1
gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub

情報を反映

yum update

##インストール方法

yum install google-chrome-stable

これで、インストール完了
image

##root権限で利用するためには

vi /opt/google/chrome/google-chrome

一番下の行を変更

google-chrome
else
    exec -a "$0" "$HERE/chrime" "$@" --user-data-dir=~
fi

##エラーが出る場合

「ERROR:nacl_fork_delegate_linux.cc(315)」というエラーが出る場合

vi /opt/google/chrome/google-chrome

一番下の行を変更

google-chrome
else
    exec -a "$0" "$HERE/chrime" "$@" --no-sandbox --user-data-dir=~
fi

※サンドボックスを無効にするとセキュリティの警告が表示されます

(参考)
http://zero-config.com/centos/chrome-001.html

59
58
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
59
58

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?