是否有一个应用程序可以告诉我哪些程序上次访问了我的相机?
答案1
我的解决方案是基于/dev/video*
使用观察inotifywait
。首先安装inotify 工具:
sudo apt-get install inotify-tools
然后将以下行插入到文件中/etc/rc.local
,前行exit 0
:
/usr/bin/inotifywait --timefmt "%F %T" --format "%T %w %e" --daemon --outfile /var/log/camera.log /dev/video*
重启。对任何设备的访问/dev/video*
都将被记录到/var/log/camera.log
。