$ mount
/dev/sda3 on / type ext4 (rw,errors=remount-ro,commit=0)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
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)
udev on /dev type devtmpfs (rw,mode=0755)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=0620)
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)
none on /sys/fs/pstore type pstore (rw)
/dev/sda4 on /home type ext4 (rw,commit=0)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,noexec,nosuid,nodev)
systemd on /sys/fs/cgroup/systemd type cgroup (rw,noexec,nosuid,nodev,none,name=systemd)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,user=t)
The format of the output of mount is a sequence of lines, where each line has the format "A on B type C".
Do I understand correctly that
- B is the mount point
- C is the file system type. Examples of C are
ext4
,proc
,sysfs
,tmpfs
,fusectl
,debugfs
,securityfs
,devtmpfs
,devpts
,pstore
,binfmt_misc
,cgroup
,fuse.gvfsd-fuse
. - what is A? Examples of A are
/dev/sda3
,proc
,sysfs
,none
,udev
,devpts
,tmpfs
,binfmt_misc
,systemd
,gvfsd-fuse
.
A
is a device node/file mounted at mount point. – Serge Jan 19 '16 at 23:20proc
andudev
are device files? – Tim Jan 19 '16 at 23:21