溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

linux中有哪些常用的掛載命令

發(fā)布時間:2021-06-18 18:05:20 來源:億速云 閱讀:108 作者:Leah 欄目:大數(shù)據(jù)

linux中有哪些常用的掛載命令,針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

一.mount的命令格式是(注意mount只能在root權(quán)限下運行)

mount dervice dir

dervice是要掛載的設(shè)備,dir是掛載點

二.查看當(dāng)前磁盤列表的設(shè)備

fdisk -l

顯示如下信息

linux中有哪些常用的掛載命令

root@kali:~# fdisk -l
Disk /dev/sda: 465.8 GiB, 500107862016 bytes, 976773168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x1eb9aaf8

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sda1  *         2048 209719295 209717248   100G  7 HPFS/NTFS/exFAT
/dev/sda2       209719296 976773119 767053824 365.8G  f W95 Ext'd (LBA)
/dev/sda5       209721344 465575935 255854592   122G  7 HPFS/NTFS/exFAT
/dev/sda6       465577984 721432575 255854592   122G  7 HPFS/NTFS/exFAT
/dev/sda7       721434624 976773119 255338496 121.8G  7 HPFS/NTFS/exFAT


Disk /dev/sdb: 117.9 GiB, 126567317504 bytes, 247201792 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x19ac4874

Device     Boot     Start       End   Sectors   Size Id Type
/dev/sdb1  *         2048 238815231 238813184 113.9G 83 Linux
/dev/sdb2       238817278 247199743   8382466     4G  5 Extended
/dev/sdb5       238817280 247199743   8382464     4G 82 Linux swap / Solaris


Disk /dev/sdc: 29.7 GiB, 31876710400 bytes, 62259200 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x00000000

Device     Boot Start      End  Sectors  Size Id Type
/dev/sdc1        2048 62257151 62255104 29.7G  c W95 FAT32 (LBA)

這里我們可以看到所有連接在電腦上的設(shè)備和分區(qū)情況,比如我們想掛載/dev/sda5

三.創(chuàng)建掛載點

mkdir /mnt/diskd
mount /dev/sda5 /mnt/diskd

掛載成功

四.彈出設(shè)備

umount /dev/sda5

 通過df可以查看設(shè)備掛載點

關(guān)于linux中有哪些常用的掛載命令問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI