$ 0 0 Very useful after doing a repo sync on a gigantic repo...Create the disks in the Virtual Infrastructure ClientRight click on the guest, click “Edit Settings…”Under the “Hardware” tab, click “Add”For the device type, select “Hard Disk”, click “Next”, and “Next” againSpecify the size of your disk, optionally enable Thin Provisioning, and click “Next”, “Next”, “Finish”, “Ok”Re-scan the scsi bus for new hardwarecat /proc/partitionsNote the list of devicessudo apt-get install scsitoolssudo rescan-scsi-bus.shcat /proc/partitionsSee what devices got addedFormat the new diskFormat the newly detected drive using fdiskfdisk /dev/sdb n (for new partition) p (for primary partition) 1 (partition number) (keep the other values default) w (write changes) sudo mkfs -t ext3 /dev/Add the devices to /dev/disk/by-uuid/sudo partprobesudo blkid /dev/Note the UUIDAdd the new mount to /etc/fstab, and mount the filesystemsudo vi /etc/fstabmount -a