I have upgraded an EC2 instance from m4 to m5, and now want to increase the size of the attached EBS storage volume. I am using an solid-state (SSD) EBS volume mounted as an NVMe drive.
After some research, I performed this command:
growpart /dev/nvme0n1 p1
After doing so, I received this error message in response:
FAILED: partition-number must be a number
I have tried to find instructions in the AWS docs and forums, but have not found a solution to this error message.
How can I increase the size of the EBS volume?
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/recognize-expanded-volume-linux.html
growpart [OPTIONS] DISK PARTITION-NUMBER
So to grow the partition, we use the diskname
nvme0n1
(seedisk
underTYPE
) and desired partition is1
And then to extend the fs -
resize2fs device [ size ]
(device refers to the location of the target filesystem)
So to extend the fs, we use the device name
/dev/nvme01np1
:Voila!