MINIX 3 has a procfs server which provides several Linux-like components including /proc/PID/ directories. However this does not there is no /proc/PID/fd.
- Under Linux,
/dev/fdis a symbolic link to/proc/self/fd. - Under most unices (IRIX, OpenBSD, NetBSD, SCO, Solaris, …), the entries in
/dev/fdare character devices. They usually appear whether the file descriptor is open or not, and entries may not be available for file descriptors above a certain number. - Under FreeBSD and OSX, the fdescfs filesystem provides a dynamic
/dev/fddirectory which follows the open descriptors of the calling process. A static/dev/fdis available isif/dev/fdis not mounted. - Under OSF/1 (Tru64),
/dev/fdis provided via fdfs. - There is no
/dev/fdon AIX or HP-UX.