All rights reserved. The Berkeley software License Agreement
specifies the terms and conditions for redistribution.
@(#)chown.2 6.6 (Berkeley) 5/22/86
int chown(const char *path, int owner, int group)int fchown(int fd, int owner, int group) ..
On some systems, chown clears the set-user-id and set-group-id bits on the file to prevent accidental creation of set-user-id and set-group-id programs.
15 [ENOTDIR] A component of the path prefix is not a directory.
15 [ENAMETOOLONG] The path name exceeds PATH_MAX characters.
15 [ENOENT] The named file does not exist.
15 [EACCES] Search permission is denied for a component of the path prefix.
15 [ELOOP] Too many symbolic links were encountered in translating the pathname.
15 [EPERM] The effective user ID is not the super-user.
15 [EROFS] The named file resides on a read-only file system.
15 [EFAULT] Path points outside the process's allocated address space.
15 [EIO] An I/O error occurred while reading from or writing to the file system.
Fchown will fail if:
15 [EBADF] Fd does not refer to a valid descriptor.
15 [EPERM] The effective user ID is not the super-user.
15 [EROFS] The named file resides on a read-only file system.
15 [EIO] An I/O error occurred while reading from or writing to the file system. ..