Debian GNU/Linux に Google Chrome をインストールする方法を紹介します。

Parallels DesktopにDebian GNU/Linux 9をインストールしたので早速、メインブラウザとしてGoogle Chromeもインストールしたのでインストール方法を紹介いたします。
目次
ターミナルからDebian GNU/LinuxにGoogle Chromeを簡単にインストール
Debian であればターミナルから数行のコマンドを実行するだけでGoogle Chromeを簡単にインストールできます。
Debian に Google Chrome の署名鍵をダウンロード
まずは Debian に Google Chrome のリポジトリの署名鍵を下記のコマンドでダウンロードします。
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
Debian に Google Chrome のリポジトリを追加
次に Debian に Google Chrome のリポジトリを下記のコマンドで追加します。
sudo sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
Debian のリポジトリを更新
Debian に Google Chrome のリポジトリを追加したのでリポジトリを更新するために下記のコマンドでシステム更新を実行します。
sudo apt-get update
Debian に Google Chrome をインストール
最後に下記のコマンドで Debian に Google Chrome (安定版)をインストールします。
sudo apt-get install google-chrome-stable
Debian にベータ版の Google Chrome をインストールしたい場合は下記のコマンドを実行してください。
sudo apt-get install google-chrome-beta
Debian に不安定版の Google Chrome をインストールしたい場合は下記のコマンドを実行してください。
sudo apt-get install google-chrome-unstable
これで無事に Debian に Google Chrome がインストールされました。
