设备节点“无”在文件系统中是什么意思?

laz*_*rus 6 filesystem mount

当我$ mount在我的系统(14.04 LTS)上尝试命令时,我发现了一些结果,比如......

none on /sys/fs/cgroup type tmpfs (rw)
none on /sys/fs/fuse/connections type fusectl (rw)
none on /sys/kernel/debug type debugfs (rw)
none on /sys/kernel/security type securityfs (rw)
none on /run/lock type tmpfs (rw,noexec,nosuid,nodev,size=5242880)
none on /run/shm type tmpfs (rw,nosuid,nodev)
none on /run/user type tmpfs (rw,noexec,nosuid,nodev,size=104857600,mode=0755)
none on /sys/fs/pstore type pstore (rw)
Run Code Online (Sandbox Code Playgroud)

我没有得到这file systemdevice node nonemounted多个mount points像(/sys/fs/cgroup ,/sys/kernel/security, /run/shm etc)..

它是否推断存在nothing或它是一个file systemdevice node..

Rad*_*tal 8

通常,您挂载位于块设备上的文件系统 = 硬盘、USB 记忆棒、...

此外,还有一些“虚拟”文件系统,例如 /proc 或 /sys,用于与 Linux 内核交互。这些没有任何与之关联的块设备 => 没有显示。

tmpfs 文件系统也没有显示。Tmpfs 使用 RAM 来存储临时文件,因此再次没有关联的块设备。