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
Comments
Alain
@ 07.10.2005 19:05 UTC
Waer kool, wenn du die Dateiflags noch ein bitzeli erklären könntest ;) OK, ich googles mal :)
Waer kool, wenn du die Dateiflags noch ein bitzeli erklären könntest ;) OK, ich googles mal :)
Beat
@ 08.10.2005 09:32 UTC
Ich hoffe Du hast was gefunden, sonst würde ich nächste Woche mal was kleines zu den Dateiflags schreiben...
Ich hoffe Du hast was gefunden, sonst würde ich nächste Woche mal was kleines zu den Dateiflags schreiben...
No new comments allowed (anymore) on this post.