Originally posted by marazmista
View Post
For a full list, see:
Code:
grep ^nodev /proc/filesystems
Code:
int mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *data);
A number of distros just pass "none" for all the nodev filesystems.
I prefer to use a name based on the path or filesystem (for example: mount -t sysfs sysfs /sys; mount -t devpts devpts /dev/pts), since it avoids the "none is already mounted on..." nonsense.
Comment