红联Linux门户
Linux帮助

超级简单的监控系统-Linux fswebcam

发布时间:2016-08-17 10:08:46来源:topspeedsnail.com作者:斗大的熊猫
实现功能:使用摄像头每5分钟拍张照,然后把图片发送到指定邮箱。
 
使用到两个Linux命令:
fswebcam:从摄像头捕获图像
mail:发送邮件
 
安装需要的工具(Ubuntu):
$ sudo apt-get install fswebcam mailutils sharutils
 
监控:
$ while true ; do fswebcam -d /dev/video0 -r 1280x1024 -F 15 - | uuencode $(date +\%Y\%m\%d\%H\%M).jpeg | mail -s "Pic" your@email.com ; sleep 300 ; done
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23378.html