In the last episode (Nov 01), Miguel Mendez said:
> On Mon, 01 Nov 2004 21:20:16 +0100 "oskar johansson" <[EMAIL PROTECTED]> wrote:
> > Hello i was wondering how to check the immutable flag on FreeBSD,
> > on linux there is something called lsattr that is mention in the
> > man pages. Is ther any other way?
> 
> Check the -o option in ls(1)

Also note that Linux has only one immutable flag, where FreeBSD has
two.  "schg" is the system-immutable flag, settable only by root, and
"uchg" is the user-immutable flag, which the file owner can set.  From
a C program, just use the stat() syscall, and examine the st_flags
field.  More info in the chflags manpage.

-- 
        Dan Nelson
        [EMAIL PROTECTED]
_______________________________________________
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to