您好,登錄后才能下訂單哦!
本文小編為大家詳細(xì)介紹“CentOS怎么掛載新數(shù)據(jù)盤”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“CentOS怎么掛載新數(shù)據(jù)盤”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學(xué)習(xí)新知識吧。
fdisk -l 查看磁盤列表
[[email protected] /]# fdisk -l 磁盤 /dev/vda:42.9 gb, 42949672960 字節(jié),83886080 個扇區(qū) units = 扇區(qū) of 1 * 512 = 512 bytes 扇區(qū)大小(邏輯/物理):512 字節(jié) / 512 字節(jié) i/o 大小(最小/最佳):512 字節(jié) / 512 字節(jié) 磁盤標(biāo)簽類型:dos 磁盤標(biāo)識符:0x635e6c7d 設(shè)備 boot start end blocks id system /dev/vda1 2048 83886079 41942016 83 linux 磁盤 /dev/vdb:107.4 gb, 107374182400 字節(jié),209715200 個扇區(qū) units = 扇區(qū) of 1 * 512 = 512 bytes 扇區(qū)大小(邏輯/物理):512 字節(jié) / 512 字節(jié) i/o 大小(最小/最佳):512 字節(jié) / 512 字節(jié)
發(fā)現(xiàn) /dev/vdb 設(shè)備還未使用
分區(qū) fdisk /dev/vdb
依次輸入 n p 1,然后輸入兩次回車,再輸入 wq,等待完成。 [[email protected] /]# fdisk /dev/vdb 歡迎使用 fdisk (util-linux 2.23.2)。 更改將停留在內(nèi)存中,直到您決定將更改寫入磁盤。 使用寫入命令前請三思。 device does not contain a recognized partition table 使用磁盤標(biāo)識符 0xe9d7e5a8 創(chuàng)建新的 dos 磁盤標(biāo)簽。 命令(輸入 m 獲取幫助):n partition type: p primary (0 primary, 0 extended, 4 free) e extended select (default p): p 分區(qū)號 (1-4,默認(rèn) 1):1 起始 扇區(qū) (2048-209715199,默認(rèn)為 2048): 將使用默認(rèn)值 2048 last 扇區(qū), +扇區(qū) or +size{k,m,g} (2048-209715199,默認(rèn)為 209715199): 將使用默認(rèn)值 209715199 分區(qū) 1 已設(shè)置為 linux 類型,大小設(shè)為 100 gib 命令(輸入 m 獲取幫助):wq the partition table has been altered! calling ioctl() to re-read partition table. 正在同步磁盤。
fdisk -l 重新查看磁盤列表
[[email protected] /]# fdisk -l 磁盤 /dev/vda:42.9 gb, 42949672960 字節(jié),83886080 個扇區(qū) units = 扇區(qū) of 1 * 512 = 512 bytes 扇區(qū)大小(邏輯/物理):512 字節(jié) / 512 字節(jié) i/o 大小(最小/最佳):512 字節(jié) / 512 字節(jié) 磁盤標(biāo)簽類型:dos 磁盤標(biāo)識符:0x635e6c7d 設(shè)備 boot start end blocks id system /dev/vda1 2048 83886079 41942016 83 linux 磁盤 /dev/vdb:107.4 gb, 107374182400 字節(jié),209715200 個扇區(qū) units = 扇區(qū) of 1 * 512 = 512 bytes 扇區(qū)大小(邏輯/物理):512 字節(jié) / 512 字節(jié) i/o 大小(最小/最佳):512 字節(jié) / 512 字節(jié) 磁盤標(biāo)簽類型:dos 磁盤標(biāo)識符:0xe9d7e5a8 設(shè)備 boot start end blocks id system /dev/vdb1 2048 209715199 104856576 83 linux
格式化分區(qū) mkfs.ext4 /dev/vdb1
[[email protected] /]# mkfs.ext4 /dev/vdb1 mke2fs 1.42.9 (28-dec-2013) 文件系統(tǒng)標(biāo)簽= os type: linux 塊大小=4096 (log=2) 分塊大小=4096 (log=2) stride=0 blocks, stripe width=0 blocks 6553600 inodes, 26214144 blocks 1310707 blocks (5.00%) reserved for the super user 第一個數(shù)據(jù)塊=0 maximum filesystem blocks=2174746624 800 block groups 32768 blocks per group, 32768 fragments per group 8192 inodes per group superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208, 4096000, 7962624, 11239424, 20480000, 23887872 allocating group tables: 完成 正在寫入inode表: 完成 creating journal (32768 blocks): 完成 writing superblocks and filesystem accounting information: 完成
此數(shù)據(jù)盤被格式化成 ext4 文件格式。
將設(shè)備掛載到指定的目錄下
mount /dev/vdb1 /home
這里以掛載到 /home 目錄為例。
保存到文件系統(tǒng)表 /etc/fstab
當(dāng)系統(tǒng)重新啟動的時候,系統(tǒng)會自動地從這個文件讀取信息,并且會自動將此文件中指定的文件系統(tǒng)掛載到指定的目錄。
echo /dev/vdb1 /home ext4 defaults 0 0 >> /etc/fstab
讀到這里,這篇“CentOS怎么掛載新數(shù)據(jù)盤”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識點(diǎn)還需要大家自己動手實(shí)踐使用過才能領(lǐng)會,如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。