1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

RockyLinux/AlmaLinux 9にGoogle Chromeをインストールする

Last updated at Posted at 2019-10-14

今回は、RPMをダウンロードして、依存関係だけをdnfを使ってインストールする方法を紹介します。

Google Chromeのダウンロード

デフォルトでインストールされたFireFoxを開き、Google Chromeのページに行きます。

https://www.google.com/intl/ja_jp/chrome/
から、ChromeのRPMをダウンロードします。

image.png

Chromeのダウンロードをクリックします。

image.png

64ビット .rpm (Fedora/openSUSE用)をダウンロードします。

image.png
「Save File」でファイルを保存します。

Chromeのインストール

ダウンロードしたファイルは、デフォルトではHomeディレクトリの「ダウンロード」ディレクリ配下に保存されます。

ダウンロード先のディレクトリに行き、dnfコマンドでrpmの依存関係で必要なライブラリと共にChromeをインストールします

cd ~/ダウンロード
dnf localinstall google-chrome-stable_current_x86_64.rpm

image.png

あとは、ウィザードに従い、「y」を入力しインストールを実行します。

インストール完了

インストールが完了すると、アクティビティのメニューでGoogle Chromeのアイコンが存在していることが確認できます。

image.png

root権限でchromeを利用するには

vi /opt/google/chrome/google-chrome

最下部の「exec -a ~」から始まる部分に「--no-sandobox」と「--user-data-dir=~」を追加する

exec -a "$0" "$HERRE/chrome" "$@" --no-sandbox --user-data-dir=~
1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?