blob: 7573811a4991780e711669b8fb3abc672a9d6143 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
Let's assume IP cameras stream h264 via rtsp.
To `/etc/fstab`:
```
tmpfs /var/ipcamfs tmpfs mode=1755,uid=1000,gid=1000 0 0
```
For event-based FTP storage:
```
apt install vsftpd
```
`/etc/vsftpd.conf`:
```
chroot_local_user=YES
allow_writeable_chroot=YES
write_enable=YES
seccomp_sandbox=NO
```
|