Skip to end of banner
Go to start of banner

Attach a Storage Volume

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 7 Next »

This page:

Create a volume


  1. Log in to the Nimbus dashboard.
  2. Navigate to Volumes > Volumes, then click the + Create Volume button. 
  3. On the Create Volume dialog window, enter a volume name and choose a size of your choice in gigabytes, then click the Create Volume button. 
  4. On the Volumes page, click the drop-down arrow next to Edit Volume and select Manage Attachments.

  5. Select the instance you want to attach this volume to.
  6. Click the Attach Volume button.



Format and mount a filesytem


Once you have attached the volume as above, confirm that the volume is properly attached.

  1. Use ssh to log in to your instance from a terminal.
  2. Check that you have properly attached the volume:

    >sudo fdisk -l /dev/vdc


    You should see this returned:

    Disk /dev/vdc: 20 GiB, 21474836480 bytes, 41943040 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
  3. (Only new volumes) Format the volume. WARNING: Do this step only for new volumes. Do NOT do this step for existing volumes, as it will wipe out the volume:

    >sudo mkfs.ext4 /dev/vdc
  4. Mount the volume to a new directory called /data:

    >sudo mkdir /data
    >sudo mount /dev/vdc /data
  5. Check your new /data volume:

    >df -h | grep vdc


You have now successfully attached and mounted your storage volume.

  • No labels