Dateiflags in einer FreeBSD Jail nutzen
Um Dateiflags, wie zum Beispiel schg oder sappnd, in einer Jail nutzen zu können, muss zuerst im Hostsystem die Variable security.jail.chflags_allowed auf 1 gesetzt werden.
Beispiel:
root@host# sysctl security.jail.chflags_allowed
security.jail.chflags_allowed: 0
root@jail# ls -aol
-rw------- 1 beat users - 618 Oct 5 15:20 testdatei
root@jail# chflags schg testdatei
chflags: testdatei: Operation not permitted
root@host# sysctl security.jail.chflags_allowed=1
security.jail.chflags_allowed: 0 -> 1
root@jail# chflags schg testdatei
root@jail# ls -aol
-rw------- 1 beat users schg 618 Oct 5 15:20 testdatei
root@jail# rm -f testdatei
rm: testdatei: Operation not permitted