1
1

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.

Raspberry Pi に、Chromeをインストールする

Last updated at Posted at 2016-10-13
export http_proxy=http://proxy.example.com:8080/
sudo -E apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 5B393194

sudo -E で実行し環境変数の引き継ぎ
apt-getする際、sudoをそのまま使うと環境変数を引き継がない為、プロキシを通らない
実行するときにオプションで'-E'をつけると、環境変数を引き継いでsudoする
例: sudo -E apt-get update

上記では、公開鍵を取得できなかったので、ミラーサーバで試したらうまくいった

sudo -E apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 5B393194
sudo vi /etc/apt/sources.list
deb http://ppa.launchpad.net/canonical-chromium-builds/stage/ubuntu vivid main
sudo apt-get update
sudo apt-get install chromium-browser chromium-browser-l10n

お世話になったページ
http://gozuk16.hatenablog.com/entry/2016/03/24/144400
http://mmays.hatenablog.com/entry/2016/05/07/194111
http://qiita.com/mrtry/items/99e2f912da4be2f8f48f

1
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?