pfiles returns information from the fstat() function call; you may find some of the information on the fstat() man page useful.
S_IFCHR - this is a "character special" device.
mode 0666 - permissions are -rw-rw-rw-.
dev:222,0 - device major and minor numbers.
ino:234908 - inode number.
uid:0 - user ID that owns the file/device (root in this case)
gid:3 - group ID that owns the file/device (sys in this case)
rdev:13,2 - raw device major and minor numbers.
O_RDONLY - the file/device was opened read-only.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.