Create a Linode account to try this guide with a $ credit.
This credit will be applied to any valid services used during your first  days.

At any time after the Block Storage Volume has been created, it can be increased to a larger size.

Volume size cannot be decreased
At this time, the size of Volumes are only able to be increased (not decreased). To decrease the size of your Volume, you will need to create a new Volume at your preferred size, attach it to a Compute Instance, copy over your data, and remove the original Volume.
  1. Log in to the Cloud Manager.

  2. If the Volume is attached to a Compute Instance, power off that instance.

  3. Click on the Volumes link in the sidebar.

  4. Locate the desired Volume within the list, click the more options ellipsis dropdown menu, and select Resize.

  5. Enter the new Volume size. The minimum size is the current size of the Volume and maximum is 10,240 GB. Then click Submit.

  6. Click Resize Volume to start the resize. Once the resize has been completed, you will receive a notification in the Cloud Manager.

  7. After the Volume is resized, power back on your Compute Instance.

  8. Once your Compute Instance has fully booted up, you need to run the following commands to resize the file system within your Volume.

    1. Login to your Compute Instance using SSH or Lish.

    2. Unmount the Volume, making sure to use the unique path for your own Volume:

      umount /dev/disk/by-id/scsi-0Linode_Volume_BlockStorage1
    3. Assuming you have an ext2, ext3, or ext4 partition, run a file system check:

      e2fsck -f /dev/disk/by-id/scsi-0Linode_Volume_BlockStorage1
      
    4. Then resize it to fill the new Volume size:

      resize2fs /dev/disk/by-id/scsi-0Linode_Volume_BlockStorage1
      
    5. Mount your Volume back onto the filesystem:

      mount /dev/disk/by-id/scsi-0Linode_Volume_BlockStorage1 /mnt/BlockStorage1
      

This page was originally published on


Your Feedback Is Important

Let us know if this guide was helpful to you.