个人配置树莓派监控Motion相关的事情
from:http://www.cnblogs.com/zhaocundang/p/8870083.html
安装:apt-get install motion -y
编辑配置文件
vim /etc/motion/motion.cnf
daemon on #后台运行
locate_motion_mode on #探测到图像中有运动时,把运动区域用矩形框起来
videodevice /dev/video0 #加载USB摄像头的设备(对应自己的摄像头设备)
width 640 #图像宽度
height 480 #图像高度
target_dir /root/motion #设置拍摄图片的存储目录
threshold 3000 #这个是改变探测灵敏度,越小越灵敏,这里设为3000像素值
webcam_localhost off #关闭 localhost 的限制
创建优盘挂载点:
mkdir /camdata/
chmod 755 /camdata/
挂载优盘:
apt-get install ntfs-3g -y
mount -t ntfs-3g /dev/sda /camdata/
设置时间
输入sudo dpkg-reconfigure tzdata
测试监控:192.168.x.x:8081
设置开机启动:
sudo vim /etc/rc.local
在 exit(0)上面添加
mount -t ntfs-3g /dev/sda /camdata/
motion
俩个路由器:
路由器B中继路由器A
pi连接路由器B lan
A : ROUTE 192.168.0.1
开启端口重映射到B : 192.168.0.9 (B路由器连接IP) 端口8081
B:路由器 route 192.168.1.1
开启端口重映射到pi(192.168.1.177) 192.168.1.177 端口8081
ok 解决