[Raspberry Pi] motion をインストールする 2021
Raspberry Pi を IP カメラにする motion をインストールする方法を改めてまとめ直してみる。
環境:Raspberry Pi 4 Model B 4GB RAM、Raspberry Pi OS with desktop Kernel version 5.10(Buster)
(1)Raspberry Pi の IP アドレスを固定する。
LanScan で Raspberry Pi の MAC アドレスを調べ、それを元にルーターで固定した。
「LanScan」をMac App Storeで
https://apps.apple.com/jp/app/lanscan/id472226235
Raspberry Pi を再起動して、以下のコマンドで IP アドレスが固定されたことを確認する。
$ ip a
(2)motion をインストール。
$ sudo apt install motion
(3)/etc/motion/motion.conf を編集。以下は私が変更したところ。
変更前:daemon off
変更後:daemon on
変更前:width 320
変更後:width 640
変更前:height 240
変更後:height 480
変更前:stream_localhost on
変更後:stream_localhost off
output_pictures は off のままにして、とりあえず画像は保存しないこととした。
(4)/etc/default/motion を編集。
変更前:start_motion_daemon=no
変更後:start_motion_daemon=yes
(5)自動起動設定をする。
1$ sudo systemctl enable motion
2$ sudo systemctl start motion
3$ sudo systemctl status motion
(6)以下のアドレスでウェブカメラの映像が表示されるはずだ。
http://[IPアドレス]:8081/
motion を動かし始めた後に設定ファイルをいじった場合、サービスをオン・オフすれば設定が反映される。
1$ sudo service motion stop
2$ sudo motion -c /etc/motion/motion.conf
参考:
Raspberry Pi の IP アドレスを固定する2 – with a Christian Wife
https://wacw.cf/2018/02/01/static-ip-on-raspberry-pi-2/
Raspberry piで作る監視カメラ(導入編) – 雑木林
https://zokibayashi.hatenablog.com/entry/2017/10/02/234023