【华为云-上云之路】CentOS7 云耀云服务器(HECS)挂载磁盘教程(挂载后处理)

举报
Rory 发表于 2020/06/09 18:17:38 2020/06/09
【摘要】 我们购买了云耀云服务器之后,通常会单独购买一个“云硬盘”,这里需要注意的是购买云硬盘的时候需要跟你云服务器实例在同一区,保证能挂载到你的云服务器实例。购买了云硬盘后,需要去控制台操作,一般情况下同一个区,如北京,上海,同一个区都可以挂载。

在我们部署云服务器的时候,通常情况都会把数据盘和系统分开,保证数据的安全,下面就来介绍一下如何操作。


我们购买了云耀云服务器之后,通常会单独购买一个“云硬盘”,这里需要注意的是购买云硬盘的时候,需要跟你云服务器实例在同一区,保证能挂载到你的云服务器实例。购买了云硬盘后,需要去控制台操作挂载,一般情况下同一个区,如北京,上海,同一个区都可以挂载。

image.png

image.png

挂载成功如上图所示。


今天重点要讲的是挂载后处理,也就是如何操作,使我们可以正常的使用。


一、流程梳理

在开始操作之前,我们简单把流程梳理一遍:


查看磁盘信息->磁盘分区->格式化->挂载分区


二、操作流程

1、首先我们需要在服务器上面查看磁盘信息、分区信息


可能用到的命令:


lsblk  #查看磁盘信息
NAME   MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
vda    253:0    0  40G  0 disk 
└─vda1 253:1    0  40G  0 part /
vdb    253:16   0  10G  0 disk 
lsblk -f  #查看磁盘信息简洁版
NAME   FSTYPE LABEL UUID                                 MOUNTPOINT
vda                                                      
└─vda1 ext4         207b19eb-8170-4983-acb5-9098af381e72 /
vdb                                                      
fdisk -f #查看磁盘分区
Disk /dev/vda: 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: 0x0002af06
 
   Device Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048    83886079    41942016   83  Linux
 
Disk /dev/vdb: 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

2、磁盘分区\格式化

分区命令:fdisk /dev/vdb  参数说明:m 显示命令列表, n 新增分区, p 显示磁盘分区, d 删除分区, w写入并退出


[root@abc ~]# 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 table
Building a new DOS disklabel with disk identifier 0x96157659.
 
Command (m for help): n   #此处输入n
Partition type:
   p   primary (0 primary, 0 extended, 4 free)
   e   extended
Select (default p): p #此处输入p
Partition number (1-4, default 1): #此处回车
First sector (2048-20971519, default 2048): #此处回车
Using default value 2048
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): w
The partition table has been altered!
 
Calling ioctl() to re-read partition table.
Syncing disks.


分区成功.我们再输入lsblk命令,看到磁盘信息变化,多出一个vdb1分区:

NAME   MAJ:MIN RM SIZE RO TYPE MOUNTPOINT
vda    253:0    0  40G  0 disk 
└─vda1 253:1    0  40G  0 part /
vdb    253:16   0  10G  0 disk 
└─vdb1 253:17   0  10G  0 part



使用fdisk -l 命令查看分区信息:

Disk /dev/vda: 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: 0x0002af06
 
   Device Boot      Start         End      Blocks   Id  System
/dev/vda1   *        2048    83886079    41942016   83  Linux
 
Disk /dev/vdb: 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: 0x96157659
 
   Device Boot      Start         End      Blocks   Id  System
/dev/vdb1            2048    20971519    10484736   83  Linux

提示:在分区前和分区后分别使用lsblk 和fdisk命令查看对比前后变化。


然后格式化分区,使用ext4文件系统:

mkfs -t ext4 /dev/vdb1


挂载分区:


首先根据自己的需要,建立一个目录,也就是数据存放的地方,比如我这里使用:

mkdir /data


建立好以后使用命令

ls -l /

或者

ll /

查看,已经建立好data目录。


挂载分区:

mount  /dev/vdb1 /data


查看磁盘使用情况:

df -h


#显示下面的信息即挂载成功

/dev/vdb1       9.8G   37M  9.2G   1% /data


永久挂载,避免重启后挂载点消失需要重新挂载:

vim /etc/fstab

追加内容并保存:/dev/vdb1 /data ext4 defaults 0 0


修改并保存etc/fstab文件后执行,

mount -a

使操作生效,这样每次开机后都会自动挂载了。


【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。