9
13

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 3 years have passed since last update.

Raspberry Piに管理ツール"Cockpit"を入れてみる

Last updated at Posted at 2019-06-16

Cockpitとは

Webブラウザーから操作できる軽量なシステム管理ツール。
Cockpit_screenshot.png

良さそうなところ

  • 余計なリソース消費がないように注意して作られており、ユーザーがログインしようとして初めてUIサービスが立ち上がる
  • システム監視ツールやシェル端末機能がWebベースで提供されているので、タブレットなどでもある程度システムのメンテナンスができる

インストールしてみる

# 後でdirmngrが入ってないと怒られるのでインストール
sudo apt-get install dirmngr

sudo su -

# パッケージリストを追加する
echo 'deb http://deb.debian.org/debian stretch-backports main' > /etc/apt/sources.list.d/backports.list

# 後でdeb.debian.orgの認証ができないと怒られるので鍵を追加
gpg --keyserver pgp.nic.ad.jp --recv-keys 8B48AD6246925553 7638D0442B90D010
gpg --armor --export 7638D0442B90D010 | apt-key add -
gpg --armor --export 8B48AD6246925553 | apt-key add -

exit

# Cockpitのインストール
apt-get update
sudo apt-get install cockpit

https://{Raspberry Piのアドレス}:9090 にアクセスしてみる。
Cockpit_login.png

オレオレ証明書だと怒られるけれど、とりあえずそのままアクセス。後でLet's Encryptで証明書を作った方が良いんでしょうが、自宅用なのでとりあえずこのまま。

ログインするとこんな感じ。
Cockpit_system.png

参考文献

9
13
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
9
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?