kvm:add_disk_image
Differences
This shows you the differences between two versions of the page.
kvm:add_disk_image [2016/07/04 09:47] – created peter | kvm:add_disk_image [2019/11/30 12:45] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== KVM - Add Disk Image ====== | ||
- | |||
- | This is useful when you for example want to expand the disk space of your virtual machine when it is using LVM, or if you want to add a swap disk to a virtual machine. | ||
- | |||
- | ===== Requirements ===== | ||
- | |||
- | * Host running KVM and virsh | ||
- | * Virtual Machine to add disk to | ||
- | |||
- | The example VM is named **example-vm** in virsh (domain). | ||
- | |||
- | ===== Create and attach the disk image ===== | ||
- | |||
- | Execute these steps on the KVM hypervisor host. | ||
- | |||
- | cd to the folder where you store your disk images: | ||
- | |||
- | <code bash> | ||
- | cd / | ||
- | </ | ||
- | |||
- | Create the new disk image: | ||
- | |||
- | <code bash> | ||
- | qemu-img create -f raw example-vm-swap.img 1G | ||
- | </ | ||
- | |||
- | We use **qemu-img** to **create** a new **raw** disk image with a size of 1 GB. | ||
- | |||
- | Attach the disk to the example virtual machine using virsh: | ||
- | |||
- | <code bash> | ||
- | virsh attach-disk example-vm --source / | ||
- | </ | ||
- | |||
- | We use virsh to attach the disk image **/ | ||
- | |||
- | Note that if you already have a **/ | ||
- | |||
- | |||
- | ===== Formatting the disk ===== | ||
- | |||
- | Execute these steps in your virtual machine. | ||
- | |||
- | Reboot it so that the kernel sees the new disk: | ||
- | |||
- | <code bash> | ||
- | reboot | ||
- | </ | ||
- | |||
- | Partition the drive with **cfdisk**. | ||
- | |||
- | <code bash> | ||
- | cfdisk /dev/vdb | ||
- | </ | ||
- | |||
- | Format the disk as swap: | ||
- | |||
- | <code bash> | ||
- | mkswap /dev/vdb1 | ||
- | </ | ||
- | |||
- | Or format it as ext4: | ||
- | |||
- | <code bash> | ||
- | mkfs.ext4 /dev/vdb1 | ||
- | </ | ||
- | |||
- | Make the swap active: | ||
- | |||
- | <code bash> | ||
- | swapon /dev/vdb1 | ||
- | </ | ||
- | |||
- | Or mount the partition: | ||
- | |||
- | <code bash> | ||
- | mkdir / | ||
- | mount /dev/vdb1 / | ||
- | </ | ||
- | |||
- | Add to /etc/fstab for reboot persistence: | ||
- | |||
- | <file bash / | ||
- | / | ||
- | </ | ||
- | |||
- | Or for the ext4 disk: | ||
- | |||
- | <file bash / | ||
- | / | ||
- | </ | ||
- | |||
- | That's it. You've now created, attached, formatted and mounted a new disk in your VM. | ||
- | |||
- | ===== Sources ===== | ||
- | |||
- | * qemu-img man page [http:// | ||
- | * virsh-attach doc page [http:// | ||
kvm/add_disk_image.1467625674.txt.gz · Last modified: 2020/07/15 09:30 (external edit)