亚洲欧美精品沙发,日韩在线精品视频,亚洲Av每日更新在线观看,亚洲国产另类一区在线5

<pre id="hdphd"></pre>

  • <div id="hdphd"><small id="hdphd"></small></div>
      學(xué)習(xí)啦>學(xué)習(xí)電腦>操作系統(tǒng)>Linux教程>

      如何查看Linux掛載磁盤(pán)

      時(shí)間: 孫勝652 分享

        通常我們都使用命令查看Linux系統(tǒng)中掛載的磁盤(pán),其實(shí)除了這種方法外,還有很多方法能夠查看Linux掛載磁盤(pán),下面學(xué)習(xí)啦小編就給大家介紹下Linux中如何查看掛載磁盤(pán)。

        第一種方法:使用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 #

        上面顯示的掛載點(diǎn)/home/mt和她掛載的卷不在同一行,使用shell腳本分析非常麻煩。

        第二種方法:使用mount命令,mount -l,這種方法的缺陷在于沒(méi)有卷的大小,但是掛載點(diǎn)和掛載的卷在同一行。例如:

        代碼如下:

        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。原理是,每新掛載一個(gè)卷基本上都會(huì)更新這個(gè)文件的,那么自然可以通過(guò)這個(gè)文件來(lái)查看掛載點(diǎn)和掛職的卷。這種方法比mount -l稍微清晰了一點(diǎn),但是,有時(shí)候是不可靠的。

        代碼如下:

        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

        /dev/mapper/vg_test-lv_test /home/mt reiserfs rw 0 0

        orientalson:/home #

        上面已經(jīng)說(shuō)了基本上會(huì)更新這個(gè)文件,但是并不總是更新這個(gè)問(wèn)題。如果掛載時(shí)使用了-n選項(xiàng),那么/etc/mtab文件里面就不會(huì)新掛載卷的信息。

        代碼如下:

        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 #

        上面就是查看Linux掛載磁盤(pán)的方法介紹了,使用df命令查看掛載磁盤(pán)是最實(shí)用最方便的方法,相對(duì)而言,后面兩種方法有些局限性。

      312285