Grow the boot volume of an oracle VM Ubuntu instance
Grow the boot volume of an oracle VM Ubuntu instance
Section titled “Grow the boot volume of an oracle VM Ubuntu instance”Backup current partition table
sfdisk -d /dev/sdb > sdb_partition_bak.dmpExecute a dry-run to see the changes that will apply. Install with apt-get install cloud-utils if you don’t have it already.
growpart -N /dev/sdb 1If all looks good:
growpart /dev/sdb 1Resize file system now:
resize2fs /dev/sdb1See the change now:
df -h