华为云硬盘挂载


华为云硬盘挂载

  1. 执行以下命令,查看新增数据盘。
1
fdisk -l
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[root@ecs-b656 test]# fdisk -l
Disk /dev/xvda: 42.9 GB, 42949672960 bytes, 83886080 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
Disk label type: dos
Disk identifier: 0x000cc4ad
Device Boot Start End Blocks Id System
/dev/xvda1 * 2048 2050047 1024000 83 Linux
/dev/xvda2 2050048 22530047 10240000 83 Linux
/dev/xvda3 22530048 24578047 1024000 83 Linux
/dev/xvda4 24578048 83886079 29654016 5 Extended
/dev/xvda5 24580096 26628095 1024000 82 Linux swap / Solaris
Disk /dev/xvdb: 10.7 GB, 10737418240 bytes, 20971520 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
  1. 执行以下命令,进入fdisk模式,开始对新增数据盘执行分区操作。

以新挂载的数据盘“/dev/xvdb”为例:

1
fdisk /dev/xvdb

回显类似如下信息:

1
2
3
4
5
6
7
8
9
[root@ecs-b656 test]# fdisk /dev/xvdb
Welcome to fdisk (util-linux 2.23.2).
Changes will remain in memory only, until you decide to write them.
Be careful before using the write command.
Device does not contain a recognized partition table
Building a new DOS disklabel with disk identifier 0xb00005bd.
Command (m for help):
输入“n”,按“Enter”。
输入“n”表示新增一个分区。

回显类似如下信息,表示磁盘有两种分区类型:

1
2
3
4
5
6
7
“p”表示主要分区。
“e”表示延伸分区。
Command (m for help): n
Partition type:
p primary (0 primary, 0 extended, 4 free)
e extended
输入“p”,按“Enter”。

以创建一个主要分区为例。

回显类似如下信息,“Partition number”表示主分区编号,可以选择1-4。

1
2
3
4
Select (default p): p
Partition number (1-4, default 1):
输入主分区编号“1”,按“Enter”。
以分区编号选择“1”为例。

回显类似如下信息,“First sector”表示初始磁柱区域,可以选择2048-20971519,默认为2048。

1
2
3
4
Partition number (1-4, default 1): 1
First sector (2048-20971519, default 2048):
按“Enter”。
以选择默认初始磁柱编号2048为例。

回显类似如下信息,“Last sector”表示截止磁柱区域,可以选择2048-20971519,默认为20971519。

1
2
3
4
5
First sector (2048-20971519, default 2048):
Using default value 2048
Last sector, +sectors or +size{K,M,G} (2048-20971519, default 20971519):
按“Enter”。
以选择默认截止磁柱编号20971519为例。

回显类似如下信息,表示分区完成,即为10GB的数据盘新建了1个分区。

1
2
3
4
5
Last sector, +sectors or +size{K,M,G} (2048-20971519, default 20971519):
Using default value 20971519
Partition 1 of type Linux and of size 10 GiB is set
Command (m for help):
输入“p”,按“Enter”,查看新建分区的详细信息。

回显类似如下信息,表示新建分区“/dev/xvdb1”的详细信息。

1
2
3
4
5
6
7
8
9
10
11
Command (m for help): p
Disk /dev/xvdb: 10.7 GB, 10737418240 bytes, 20971520 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
Disk label type: dos
Disk identifier: 0xb00005bd
Device Boot Start End Blocks Id System
/dev/xvdb1 2048 20971519 10484736 83 Linux
Command (m for help):
输入“w”,按“Enter”,将分区结果写入分区表中。

回显类似如下信息,表示分区创建完成。

1
2
3
4
Command (m for help): w
The partition table has been altered!
Calling ioctl() to re-read partition table.
Syncing disks.

执行以下命令,将新的分区表同步到数据盘上。

1
partprobe

执行以下命令,将新建分区文件系统设为系统所需格式。

1
mkfs -t 文件系统格式 /dev/xvdb1

以设置文件系统为“ext4”为例:

1
mkfs -t ext4 /dev/xvdb1

回显类似如下信息:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[root@ecs-b656 test]# mkfs -t ext4 /dev/xvdb1
mke2fs 1.42.9 (28-Dec-2013)
Filesystem label=
OS type: Linux
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
655360 inodes, 2621184 blocks
131059 blocks (5.00%) reserved for the super user
First data block=0
Maximum filesystem blocks=2151677952
80 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
Allocating group tables: done
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done

说明:
格式化需要等待一段时间,请观察系统运行状态,不要退出。

  1. 执行以下命令,新建挂载路径。
1
mkdir 挂载路径

以新建挂载路径“/mnt/sdc”为例:

1
mkdir /mnt/sdc

执行以下命令,将新建分区挂载到12中新建的路径下。

1
mount /dev/xvdb1 挂载路径

以挂载新建分区至“/mnt/sdc”为例:

1
mount /dev/xvdb1 /mnt/sdc

执行以下命令,查看挂载结果。

1
df -TH

回显类似如下信息,表示新建分区“/dev/xvdb1”已挂载至“/mnt/sdc”。

1
2
3
4
5
6
7
8
9
10
[root@ecs-b656 test]# df -TH
Filesystem Type Size Used Avail Use% Mounted on
/dev/xvda2 xfs 11G 7.4G 3.2G 71% /
devtmpfs devtmpfs 4.1G 0 4.1G 0% /dev
tmpfs tmpfs 4.1G 82k 4.1G 1% /dev/shm
tmpfs tmpfs 4.1G 9.2M 4.1G 1% /run
tmpfs tmpfs 4.1G 0 4.1G 0% /sys/fs/cgroup
/dev/xvda3 xfs 1.1G 39M 1.1G 4% /home
/dev/xvda1 xfs 1.1G 131M 915M 13% /boot
/dev/xvdb1 ext4 11G 38M 9.9G 1% /mnt/sdc
  • 设置开机自动挂载磁盘

如果您需要在实例启动时自动挂载磁盘,请在上述操作之后参考本节设置开机自动挂载磁盘。设置时不能采用在 /etc/fstab直接指定 /dev/xvdb1的方法,因为实例中设备的顺序编码在关闭或者开启实例过程中可能发生改变。推荐使用UUID来配置自动挂载数据盘。

说明:
磁盘的UUID(Universally Unique Identifier)是Linux系统为存储设备提供的唯一的标识字符串。

执行如下命令,查询磁盘分区的UUID。

以查询磁盘分区“/dev/xvdb1”的UUID为例:

1
blkid /dev/xvdb1

回显类似如下信息,表示“/dev/xvdb1”的UUID。

1
2
[root@ecs-b656 test]# blkid /dev/xvdb1
/dev/xvdb1: UUID="1851e23f-1c57-40ab-86bb-5fc5fc606ffa" TYPE="ext4"

执行以下命令,使用VI编辑器打开“fstab”文件。

1
vi /etc/fstab

将光标移至文件末尾,按“Enter”,添加如下内容。

1
UUID=xxx 挂载目录 文件系统 defaults 0 2

此处以文件系统为“ext4”,挂载目录为“/mnt/sdc”为例说明,如:

1
UUID=1851e23f-1c57-40ab-86bb-5fc5fc606ffa /mnt/sdc      ext4 defaults     0   2

此处设置了开机自动挂载后,卸载该磁盘前请先在“fstab”文件中将该行注释或删除;否则卸载磁盘后,可能不能正常进入操作系统。

1
按“Esc”后,输入“:wq”,按“Enter”。

保存设置并退出编辑器。