0
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?

More than 3 years have passed since last update.

Docker上で、vcgencmdを使う

Last updated at Posted at 2020-07-06

raspberry Piのクロックや電圧などを取得できるコマンドvcgencmdをDocker上で使用する方法を解説します。

Dockerのイメージはresin/rpi-raspbianを使用します。
以下のコマンドでDockerを立ち上げます。

docker run -it --device /dev/vchiq--rm resin/rpi-raspbian /bin/bash

立ち上げ後のコンテナ内に、vcgencmdコマンドがないため、以下のコマンドでインストールをします。

apt-get update && apt-get install libraspberrypi-bin -y \
    --no-install-recommends && apt-get clean && rm -rf /var/lib/apt/lists/*

後は、vcgencmd measure_tempコマンドでコンテナ上で、
RaspberryPi本体上の温度センサー情報を得ることができることを確認してください。

上記に気を付けてDockerfileを作れば、繰り返す必要がなくなります。

参考

vcgencmd
https://www.raspberrypi.org/documentation/raspbian/applications/vcgencmd.md
Docker Raspberry Pi Status
https://github.com/toschoch/docker-rpi-status

0
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
0
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?