19
2020
03
12:58:10

linux查看磁盘挂载的三种方法



推荐点击下面图片,通过本站淘宝优惠价购买:

image.png

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_test511980 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/dev/sda2 / reiserfs rw,acl,user_xattr 0 0proc /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/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 0proc /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 #
复制代码


本文链接:https://hqyman.cn/post/1186.html 非本站原创文章欢迎转载,原创文章需保留本站地址!

分享到:





休息一下,本站随机推荐观看栏目:


« 上一篇 下一篇 »

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

您的IP地址是: