0

I found the device name of the disk by going to :

ECS Console > Block Storage > Disks > (Disk ID specific) More > Modify Atrributes.

The run

fdisk /dev/vdb

To create a new partition. But I do not think it is working for disk bigger than 2 TiB, so what is the procedure for doing the same for those.

Deepak Kamat
  • 1,880
  • 4
  • 23
  • 38

3 Answers3

0

using parted you can create a partition larger than 2TB.

Alpy
  • 759
  • 6
  • 9
0

You could create the file system directly on the disk, without a partition table:

# mkfs.xfs /dev/vdb

But GPT support was added to fdisk in util-linux in 2012, so this should not be necessary.

Florian Weimer
  • 32,022
  • 3
  • 48
  • 92
0

As 2TiB exceeds the limits of MBR you must use GPT partition.

Here you can find the list of the tools https://wiki.archlinux.org/index.php/partitioning#Partitioning_tools

You can use:

wojcieh
  • 312
  • 1
  • 8