インストールでは,動画と静止画を保存するディレクトリが /var/lib/motion に設定される
── /etc/motion/motion.conf で,これが設定される:
$ ls -la /var/lib/motion
total 8
drwxr-s--- 2 motion adm 4096 Feb 10 12:08 .
drwxr-xr-x 48 root root 4096 Feb 10 12:08 ..
$ cat /etc/motion/motion.conf | grep target_dir
target_dir /var/lib/motion
ここでは,ディレクトリ
~/apache/www/motion/storage
を作成して,これを target_dir とする:
$ cd ~
$ mkdir apache/www/motion
$ mkdir apache/www/motion/storage
$ sudo vi /etc/motion/motion.conf
$ cat /etc/motion/motion.conf | grep target_dir
target_dir /home/ubuntu/apache/www/motion/storage
|