阿里云数据盘挂载和卸载

我们在阿里云买了一个数据盘,如果要使用这个数据盘,首先我们得先进行数据盘的挂载 。
数据盘的挂载 Setp1. 检查阿里云服务器数据盘情况
运行fdisk -l命令,检查当前VPS的数据硬盘情况
[root@****** ~]# fdisk -lDisk /dev/vda: 42.9 GB, 42949672960 bytes, 83886080 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk label type: dosDisk identifier: 0x0008d73aDevice BootStartEndBlocksIdSystem/dev/vda1*2048838840314194099283LinuxDisk /dev/vdb: 214.7 GB, 214748364800 bytes, 419430400 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytes
这里我们可以看到有200GB左右的数据盘没有挂载,这就是我们买的数据盘 。
Step2. 进行分区
运行fdisk /dev/vdb
[root@****** ~]# fdisk /dev/vdb 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 tableBuilding a new DOS disklabel with disk identifier 0x0fecfcde.Command (m for help):
输入 n, 新建一个新分区
Command (m for help): nPartition type:pprimary (0 primary, 0 extended, 4 free)eextendedSelect (default p):
出现两个菜单e表示扩展分区,p表示主分区,然后输入 p
Select (default p): pPartition number (1-4, default 1):
输入p键出现提示:"(1-4): "选择主分区号
输入1表示第一个主分区
Partition number (1-4, default 1): 1First sector (2048-419430399, default 2048):
直接按回车表示1柱面开始分区
First sector (2048-419430399, default 2048): Using default value 2048Last sector, +sectors or +size{K,M,G} (2048-419430399, default 419430399):
提示最后一个柱面或大小

阿里云数据盘挂载和卸载

文章插图
直接回车,表示剩余空间分给此主分区输入+5620M 按回车,表示此分区为5G空间
Last sector, +sectors or +size{K,M,G} (2048-419430399, default 419430399): Using default value 419430399Partition 1 of type Linux and of size 200 GiB is setCommand (m for help):
输入p查看一下分区,输入w保存退出
【阿里云数据盘挂载和卸载】Command (m for help): wThe partition table has been altered!Calling ioctl() to re-read partition table.Syncing disks.
完毕之后,我们输入fdisk -l
[root@****** ~]# fdisk -lDisk /dev/vda: 42.9 GB, 42949672960 bytes, 83886080 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk label type: dosDisk identifier: 0x0008d73aDevice BootStartEndBlocksIdSystem/dev/vda1*2048838840314194099283LinuxDisk /dev/vdb: 214.7 GB, 214748364800 bytes, 419430400 sectorsUnits = sectors of 1 * 512 = 512 bytesSector size (logical/physical): 512 bytes / 512 bytesI/O size (minimum/optimal): 512 bytes / 512 bytesDisk label type: dosDisk identifier: 0x0fecfcdeDevice BootStartEndBlocksIdSystem/dev/vdb1204841943039920971417683Linux
正常是可以看到200GB已经完成分区为/dev/vdb1
Step3. 格式化分区及挂载目录
格式化挂载数据硬盘分区