nodev
Nodev is a mount option used in Unix-like operating systems, most commonly associated with Linux. When a filesystem is mounted with the nodev option, the kernel is instructed not to interpret character or block special device files that reside on that filesystem. In practice, this means that device files on the mounted tree cannot be used to perform device I/O; attempts to use such files are blocked or treated as ordinary files, depending on the exact operation and kernel behavior. Regular files and standard data I/O are unaffected.
Nodev is one of several security-related mount options often used alongside nosuid and noexec. While nosuid
Usage typically involves specifying the option in a mount command or in the filesystem table (fstab). For
Notes and caveats: the exact behavior can vary slightly between kernel versions and filesystems, but the general