I'm hoping someone can help me on this.
I have filled up a server and now i can't get in it. Support gave me the following instructions (except miss out number 4) but I'm come to a halt.
I can't get the code to work. How do i find out my device ID and partition number?
- Stop VM (Original)
- Click edit into your instance (Detach the boot disk) then save
- then Create new VM
- Add the disk of original VM in new VM as (existing disk which is relay-3) then click create
- Then SSH to new VM
- Perform extend method(growpart) on the additional disk. Please follow this documentation[1]:
sudo growpart /dev/DEVICE_ID PARTITION_NUMBER
Note: Please skip the number 4 step and just follow the step 1 to 7.
- Then mount to a directory
- Then execute resize2fs to newly mounted filesystem
sudo resize2fs /dev/DEVICE_IDPARTITION_NUMBER
- Once successfully extended, unmount the filesystem
- Then Detach additional disk
- Then Re-attach it as boot disk in the original VM
Thanks
For determining your device paths, use
mount
command (without other args), to get a list of mounted devices. Your root device is mounted to/
, your home device (if other than root) is mounted to/home
etc...For listing more information about disk volumes, use
sudo blkid
. It gives you a list of disk devices and their UUIDs.