天天看点

DG添加磁盘以及扩容操作

注意有些节点服务器不支持.

In order to resize your volume, you will

have to go through this process.

1) Power off your Droplet.

2) Detach Volume

3) Resize Volume  这步扩容需要注意,是在VOlume界面扩容的,并且这个磁盘需要分离的状态才能看到resize

volume 是可以用的状态.

4) Attach Volume

5) Power on Droplet

接下来系统识别的跟阿里云扩容操作是一样的,先删除分区表,重新构建,然后检查文件系统,重新识别文件系统大小:

xxxxxxxxxx      

1

fdisk /dev/sda  ,这里进行的操作是删除分区,重新建分区,保存      

2

e2fsck -f   /dev/sda1      

3

resize2fs   /dev/sda1      

4