Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rafaelcalleja/d459b9c022d1d87e291445b911af947d to your computer and use it in GitHub Desktop.
Save rafaelcalleja/d459b9c022d1d87e291445b911af947d to your computer and use it in GitHub Desktop.
Resize a hard disk for a vagrant-provisioned, VirtualBox-provided virtual machine using gparted and fdisk.

Added gparted instructions to extend the virtual disk to fork from christopher-hopper/vm-resize-hard-disk.md.

Resize a Hard Disk for a Virtual Machine

Our Virtual Machines are provisioned using Vagrant from a Linux base box to run using VirutalBox. If the Hard Disk space runs out and you cannot remove files to free-up space, you can resize the Hard Disk using some VirtualBox and Linux commands.

Some assumptions

The following steps assume you've got a set-up like mine, where:

  • you use a Cygwin or Linux command-line terminal on your host machine
  • the VirtualBox install path is in your Windows (and therefore Cygwin bash) PATH environment variable
  • the vagrant boxes live at the path provisioning/boxes/mybox
  • your Cygwin HOME path is the same as your Windows %USERPROFILE% (see How do I change my Cygwin HOME folder after installation)
  • VirtualBox creates new Virtual Machines in the default location ~/VirtualBox\ VMs/

Steps to resize the hard disk

  1. Stop the virtual machine using Vagrant.

     # cd provisioning/boxes/mybox
     # vagrant halt
    
  2. Locate the VirtuaBox VM and the HDD attached to its SATA Controller. In this instance we're assuming the VM is located in the default location and is named mybox_default_1382400620.

     # cd ~/VirtualBox\ VMs/mybox_default_1382400620
     # VBoxManage showvminfo mybox_default_1382400620 | grep ".vmdk"
    

    The showvminfo command should show you the location on the file-system of the HDD of type VMDK along with the name of the Controller it is attached to - it will look something like this:

     SATA Controller (0, 0): C:\Users\user.name\VirtualBox VMs\mybox_default_1382400620\box-disk1.vmdk (UUID: 2f79610e-6c06-46d5-becb-448386ea40ec)
    
  3. clone the VMDK type disk to a VDI type disk so it can be resized.

     # cd ~/VirtualBox\ VMs/mybox_default_1382400620
     # VBoxManage clonehd "box-disk1.vmdk" "clone-disk1.vdi" --format vdi
    

    NOTE: We do this because VMDK type disks cannot be resized by VirtualBox. It has the added benefit of allowing us to keep our original disk backed-up during the resize operation.

  4. Find out how big the disk is currently, to determine how large to make it when resized. The information will show the current size and the Format variant. If Dynamic Allocation was used to create the disk, the Format variant will be "dynamic default".

     # VboxManage showhdinfo "clone-disk1.vdi"
    
  5. Resize the cloned disk to give it more space. The size argument below is given in Megabytes (1024 Bytes = 1 Megabyte). Because this disk was created using dynamic allocation I'm going to resize it to 20 GB.

     # VBoxManage modifyhd "clone-disk1.vdi" --resize 20480
    

    NOTE: If the disk was created using dynamic allocation (see previous step) then the physical size of the disk will not need to match its logical size - meaning you can create a very large logical disk that will increase in physical size only as space is used.

  6. Find out the name of the SATA Storage Controller to attach the newly resized disk to.

     # VBoxManage showvminfo mybox_default_1382400620 | grep "Storage"
    
  7. Attach the newly resized disk to the SATA Controller of the Virtual Machine.

     # VBoxManage storageattach mybox_default_1382400620 --storagectl "SATA" --port 0 --device 0 --type hdd --medium clone-disk1.vdi
    
  8. Reboot the Virtual Machine using Vagrant.

     # cd provisioning/boxes/mybox
     # vagrant up
    
  9. Open a command-line shell as root on the Virtual Machine via ssh.

     # vagrant ssh
     # sudo su -
    
  10. Find the name of the logical volume mapping the file-system is on (ie. /dev/mapper/VolGroupOS-lv_root).

     # df 
    
  11. Find the name of the physical volume (or device) that all the partitions are created on (ie. /dev/sda).

     # fdisk -l
    
  12. Install gparted if needed

     # apt-get update
     # apt-get install gparted
    
  13. Create a new primary partition for use as a Linux LVM

     # parted
    
    1. mkpart

    2. Press p for primary.

    3. Type ext3 for the file system type.

    4. Type 4295 (or some arbitrary low number) for the starting block. Gparted will select the next closest block and ask for confirmation.

    5. Type 20GB as the ending block (or the max size the virtual disk was resized to earlier).

    6. Type Yes to confirm the start and end block selection.

    7. Type print to check that the appropriate changes have been made.

    8. Type quit to exit gparted.

      You should see something like this:

      GNU Parted 2.3
      Using /dev/sda
      Welcome to GNU Parted! Type 'help' to view a list of commands.
      (parted) mkpart                                                           
      Partition type?  primary/logical? p                                       
      File system type?  [ext2]? ext3
      Start? 4295
      End? 20GB
      Warning: You requested a partition from 4295MB to 20.0GB.                 
      The closest location we can manage is 8589MB to 20.0GB.
      Is this still acceptable to you?
      Yes/No? Yes                                                               
      (parted) print                                                            
      Model: ATA VBOX HARDDISK (scsi)
      Disk /dev/sda: 21.5GB
      Sector size (logical/physical): 512B/512B
      Partition Table: msdos
      
      Number  Start   End     Size    Type      File system  Flags
       1      1049kB  256MB   255MB   primary   ext2         boot
       2      257MB   8589MB  8332MB  extended
       5      257MB   8589MB  8332MB  logical                lvm
       3      8589MB  20.0GB  11.4GB  primary
      
  14. Create a new primary partition for use as a Linux LVM

     # fdisk /dev/sda
    

    1.Press t to change the system's partition ID

    1. Press 3 (or the number of the last partition in the above table) to select the newly created partition
    2. Type 8e to change the Hex Code of the partition for Linux LVM
    3. Press w to write the changes to the partition table.
  15. Reboot the machine, then ssh back in when it is up again and switch to the root user once more.

     # reboot
     # vagrant ssh
     # sudo su -
    
  16. Create a new physical volume using the new primary partition just created.

     # pvcreate /dev/sda3
    
  17. Find out the name of the Volume Group that the Logical Volume mapping belongs to (ie. VolGroupOS).

     # vgdisplay
    
  18. Extend the Volume Group to use the newly created physical volume.

     # vgextend VolGroupOS /dev/sda3
    
  19. Extend the logical volume to use more of the Volume Group size now available to it. You can either tell it to use all the space available on the Volume Group:

     # lvextend -l +100%FREE /dev/mapper/VolGroupOS-lv_root
    

    Or, if you want to control the growth of the Disk, extend it to add a set amount of space in Megabytes, Gigabytes or Terabytes:

     # lvextend -L+20G /dev/mapper/VolGroupOS-lv_root
    
  20. Resize the file-system to use up the space made available in the Logical Volume

     # resize2fs /dev/mapper/VolGroupOS-lv_root
    
  21. Verfiy that there is now more space available

     # df -h 
    
  22. A restart of the VM using vagrant may be a good idea here, to ensure that all services are running correctly now that there is more space available. Exit the root user, exit the vagrant user and ssh session, then tell vagrant to restart the machine.

     # exit
     # exit
     # vagrant reload --provision
    
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment