Solaris Troubleshooting NFS : Error Codes for ‘NFS write error xx’ or ‘NFS read error xx’
The NFS error macro listing is as follows:
NFS_OK = 0, /* no error */
NFSERR_PERM = 1, /* Not owner */
NFSERR_NOENT = 2, /* No such file or directory */
NFSERR_IO = 5, /* I/O error */
NFSERR_NXIO = 6, /* No such device or address */
NFSERR_ACCES = 13, /* Permission denied */
NFSERR_EXIST = 17, /* File exists */
NFSERR_NODEV = 19, /* No such device */
NFSERR_NOTDIR = 20, /* Not a directory */
NFSERR_ISDIR = 21, /* Is a directory */
NFSERR_FBIG = 27, /* File too large */
NFSERR_NOSPC = 28, /* No space left on device */
NFSERR_ROFS = 30, /* Read-only file system */
NFSERR_OPNOTSUPP = 45, /* Operation not supported */
NFSERR_NAMETOOLONG = 63, /* File name too long */
NFSERR_NOTEMPTY = 66, /* Directory not empty */
NFSERR_DQUOT = 69, /* Disc quota exceeded */
NFSERR_STALE = 70, /* Stale NFS file handle */
NFSERR_WFLUSH /* write cache flushed */
These error descriptions come from /usr/include/nfs/nfs.h
1 Response
[…] Read – Error Codes for ‘NFS write error xx’ or ‘NFS read error xx’ […]