mount命令执行结果里为啥设备名有的是none

在Ubuntu14.04版本的执行mount的结果如下:
tmpfs on /run type tmpfs (rw,noexec,nosuid,size=10%,mode=0755)
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)
我不明白为什么/run的子目录被单独挂载在已经挂载的父目录(/run)中,以及none文件系统的意思。我的/etc/fstab文件是空的,没有/run的挂载点。

none只是意味着在发出mount命令时看到的挂载点没有物理磁盘分区(挂载设备)。它用于虚拟文件系统,如shm、ramfs、proc和tmpfs。本示例中的lock、shm和user 挂载点是分别创建的,因此它们可以使用不同的权限和设置进行挂载(就是小括号内的挂载选项)。注意到括号内的部分了吗?
您在/etc/fstab中看不到这些挂载配置的原因是,它们是由upstart(即在系统初始化期间)和initramfs-tools执行的。
The none just means that there is no physical disk partition linked to the mount point you see when issuing the mount command. It is used for virtual filesystems like shm, ramfs, proc and tmpfs. The lock, shm and user mount points in this

你可能感兴趣的:(linux系统管理工具,linux,运维,服务器)