- Raspberry Pi に ssh
$ ssh 192.168.1.150 -l pi
- Apache を起動
$ sudo systemctl start apache2
- MJPG-streamer を起動
~ $ ./mjpg.sh 1600 1200 1 100 &
「&」: |
デーモンで起動──起動メッセージに対しリターンキーで,コマンドプロンプトを得る
|
- PC から撮影ページにアクセス:
- 撮影 (シャッターボタンのクリック):
これの中身は,
$ wget -O image.jpg http://192.168.1.150:8080/?action=snapshot
(「192.168.1.150」は, (自分自身を指すところの)「127.0.0.1」も)
- MJPG-streamer を停止
- Apache を停止:
$ sudo systemctl stop apache2
|