第一种方法:使用df命令,例如:
orientalson:/home # dfFilesystem1K-blocksUsed Available Use% Mounted on/dev/sda2152130328043668 7169364 53% /udev514496104514392 1% /dev/dev/mapper/vg_test-lv_test51198032840479140 7% /home/mtorientalson:/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/dev/sda2 / reiserfs rw,acl,user_xattr 00proc /proc proc rw 0 0sysfs /sys sysfs rw 0 0debugfs /sys/kernel/debug debugfs rw 0 0udev /dev tmpfs rw 0 0devpts /dev/pts devpts rw,mode=0620,gid=5 0 0securityfs /sys/kernel/security securityfs rw 0 0/dev/mapper/vg_test-lv_test /home/mt reiserfs rw 0 0orientalson:/home #
上面已经说了基本上会更新这个文件,但是并不总是更新这个问题。如果挂载时使用了-n选项,那么/etc/mtab文件里面就不会新挂载卷的信息。
orientalson:/home # umount /home/mtorientalson:/home # mount -n /dev/vg_test/lv_test /home/mtorientalson:/home # cat /etc/mtab/dev/sda2 / reiserfs rw,acl,user_xattr 00proc /proc proc rw 0 0sysfs /sys sysfs rw 0 0debugfs /sys/kernel/debug debugfs rw 0 0udev /dev tmpfs rw 0 0devpts /dev/pts devpts rw,mode=0620,gid=5 0 0securityfs /sys/kernel/security securityfs rw 0 0orientalson:/home #
新闻热点
疑难解答