centos7 掛載資料盤
阿新 • • 發佈:2019-02-20
-
使用遠端連線工具,輸入使用者名稱 root 和密碼登入到例項。
-
執行 fdisk -l 命令檢視資料盤。注意:在沒有分割槽和格式化資料盤之前,使用 df -h 命令是無法看到資料盤的。在下面的示例中,有一個 5 GB 的資料盤需要掛載。
如果執行了 fdisk -l 命令後,沒有發現 /dev/xvdb,則表示您的例項沒有資料盤,因此無需掛載。可以忽略這一章。[root@xxxx ~]# fdisk -l Disk /dev/xvda: 42.9 GB, 42949672960 bytes 255 heads, 63 sectors/track, 5221 cylinders Units = cylinders of
-
執行下列命令,對資料盤進行分割槽。
fdisk /dev/xvdb
-
根據提示,依次輸入 n,p,1,兩次回車,wq,分割槽就開始了。
[root@xxx ~]# fdisk /dev/xvdb Device contains neither a valid DOS partition table, nor Sun, SGI or OSF disklab el Building a new DOS disklabel with disk identifier 0x33eb5059. Changes will remain in memory only, until you decide to write them. After that, of course, the previous content won't be recoverable. Warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite) WARNING: DOS-compatible mode is deprecated. It's strongly recommended to switch off the mode (command 'c') and change
-
執行 fdisk -l 命令,檢視新的分割槽。新分割槽 xvdb1 已經建立好。如下面示例中的/dev/xvdb1。
[root@xxx ~]# fdisk -l Disk /dev/xvda: 42.9 GB, 42949672960 bytes 255 heads, 63 sectors/track, 5221 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x00078f9c Device Boot Start End Blocks Id System /dev/xvda1 * 1 5222 41940992 83 Linux Disk /dev/xvdb: 5368 MB, 5368709120 bytes 255 heads, 63 sectors/track, 652 cylinders Units = cylinders of 16065 * 512 = 8225280 bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x33eb5059 Device Boot Start End Blocks Id System /dev/xvdb1 1 652 5237158+ 83 Linux
-
執行下列命令,對新分割槽進行格式化。格式化所需時間取決於資料盤大小。您也可自主決定選用其他檔案格式,如 ext14 等。
mkfs.ext3 /dev/xvdb1
-
執行下列命令寫入新分割槽資訊。
echo '/dev/xvdb1 /mnt ext3 defaults 0 0'>> /etc/fstab
完成後,可以使用 cat /etc/fstab 命令檢視。
注意: Ubuntu 12.04 不支援 barrier,所以對該系統正確的命令是:echo '/dev/xvdb1 /mnt ext3 barrier=0 0 0'>>/etc/fstab
如果需要把資料盤單獨掛載到某個資料夾,比如單獨用來存放網頁,可以修改以上命令中的 /mnt 部分。 -
執行 mount /dev/xvdb1 /mnt 掛載新分割槽,然後執行 df -h 檢視分割槽。如果出現數據盤資訊,說明掛載成功,可以使用新分割槽了。
[root@xxx ~]# mount /dev/xvdb1 /mnt [root@xxx ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/xvda1 40G 1.5G 36G 4% / tmpfs 498M 0 498M 0% /dev/shm /dev/xvdb1 5.0G 139M 4.6G 3% /mnt