linux查看磁盘挂载的三种⽅法
第⼀种⽅法:使⽤df命令,例如:
复制代码
代码如下:
orientalson:/home # df
Filesystem 1K-blocks Used Available Use% Mounted on
/dev/sda2 15213032 8043668 7169364 53% /
udev 514496 104 514392 1% /dev
/dev/mapper/vg_test-lv_test
511980 32840 479140 7% /home/mt
orientalson:/home #
上⾯显⽰的挂载点/home/mt和她挂载的卷不在同⼀⾏,使⽤shell脚本分析⾮常⿇烦。
第⼆种⽅法:使⽤mount命令,mount -l,这种⽅法的缺陷在于没有卷的⼤⼩,但是挂载点和挂载的卷在同⼀⾏。例如:
复制代码
代码如下:
orientalson:/home # mount -l
/dev/sda2 on / type reiserfs (rw,acl,user_xattr) []
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
debugfs on /sys/kernel/debug type debugfs (rw)
udev on /dev type tmpfs (rw)
devpts on /dev/pts type devpts (rw,mode=0620,gid=5)
securityfs on /sys/kernel/security type securityfs (rw)
/dev/mapper/vg_test-lv_test on /home/mt type reiserfs (rw) []
orientalson:/home #
第三种⽅法:查看⽂件/etc/mtab。原理是,每新挂载⼀个卷基本上都会更新这个⽂件的,那么⾃然可以通过这个⽂件来查看挂载点和挂职的卷。这种⽅法⽐mount -l稍微清晰了⼀点,但是,有时候是不可靠的。
复制代码
代码如下:
orientalson:/home # cat /etc/mtab
linux磁盘管理/dev/sda2 / reiserfs rw,acl,user_xattr 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
debugfs /sys/kernel/debug debugfs rw 0 0
udev /dev tmpfs rw 0 0
devpts /dev/pts devpts rw,mode=0620,gid=5 0 0
securityfs /sys/kernel/security securityfs rw 0 0
/dev/mapper/vg_test-lv_test /home/mt reiserfs rw 0 0
orientalson:/home #
上⾯已经说了基本上会更新这个⽂件,但是并不总是更新这个问题。如果挂载时使⽤了-n选项,那么/etc/mtab⽂件⾥⾯就不会新挂载卷的信息。
复制代码
代码如下:
orientalson:/home # umount /home/mt
orientalson:/home # mount -n /dev/vg_test/lv_test /home/mt
orientalson:/home # cat /etc/mtab
/dev/sda2 / reiserfs rw,acl,user_xattr 0 0
proc /proc proc rw 0 0
sysfs /sys sysfs rw 0 0
debugfs /sys/kernel/debug debugfs rw 0 0 udev /dev tmpfs rw 0 0
devpts /dev/pts devpts rw,mode=0620,gid=5 0 0 securityfs /sys/kernel/security securityfs rw 0 0 orientalson:/home #