原日期: 2018-02-24
准备树莓派
sudo passwd root
sudo vi /etc/ssh/sshd_config
修改为PermitRootLogin yes
sudo reboot
准备摄像头
#安装
apt-get update
apt-get install motion
#/etc/modules 中
#添加摄像头
bcm2835-v4l2
#/etc/default/motion 中
#开机自动运行
start_motion_daemon=yes
#/etc/motion/motion.conf 中
#后台运行
deamon on
width 640 #图像的宽
height 480 #图像的高
#允许通过网页查看摄像头
stream_localhost off
#设备路径 按道理应该是 /dev/video0
videodevice /dev/video0
#图片存储位置
target_dir /tmp/motion
stream_auth_method 2 #开启密码认证
stream_authentication 用户名:密码 #网页查看摄像头的用户名和密码
#/etc/rc.local 中
#开机自动运行
exit 0前添加 motion
#运行
motion
#终止
service motion stop
#本地访问
localhost:8081