假如您在建设实例时选择了数据盘,在登录实例后,系统需要先名目化数据盘,然后挂载数据盘。
别的,您还可以按照业务需要,对数据盘举办多分区设置。发起利用系统自带的东西举办分区操纵。
留意:云处事器 ECS 仅支持对 数据盘 举办二次分区,而不支持对 系统盘 举办二次分区(不管是 Windows 照旧 Linux 系统)。假如您强行利用第三方东西对系统盘举办二次分区操纵,大概激发未知风险,如系统瓦解、数据丢失等。
本操纵合用于 非 I/O 优化+SSD云盘 Linux (Redhat、CentOS、Debian、Ubuntu)实例。对付 I/O 优化实例+SSD云盘数据盘分区挂载,发起利用 剧本东西:auto_fdisk_ssd.sh
利用长途毗连东西,输入用户名 root 和暗码登录到实例。
运行 fdisk -l 呼吁查察数据盘。留意:在没有分区和名目化数据盘之前,利用 df
-h 呼吁是无法看到数据盘的。在下面的示例中,有一个 5 GB 的数据盘需要挂载。
假如执行了 fdisk -l 呼吁后,没有发明
/dev/xvdb,则暗示您的实例没有数据盘,因此无需挂载。可以忽略这一章。
[[email protected] ~]# 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: 0x00000000
执行下列呼吁,对数据盘举办分区。
fdisk /dev/xvdb
按照提示,依次输入 n,p,1,两次回车,wq,分区就开始了。
[[email protected] ~]# 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 display units to
sectors (command 'u').
Command (m for help): n
Command action
e extended
p primary partition (1-4)
p
Partition number (1-4): 1
First cylinder (1-652, default 1):
Using default value 1
Last cylinder, +cylinders or +size{K,M,G} (1-652, default 652):
Using default value 652
Command (m for help): wq
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.