Differences between revisions 1 and 13 (spanning 12 versions)
Revision 1 as of 2017-10-10 21:47:12
Size: 147
Editor: shran
Comment:
Revision 13 as of 2017-10-10 22:15:08
Size: 703
Editor: shran
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
 1 where should the KVM host be installed
 1 where will you store the KVM guests filesystem images
 * where should the KVM host be installed
 * where will you store the KVM guests filesystem images

=== KVM host ===

==== Physical Disks ====

{{{
sda 16G
sda1 256M
sda2 15360M

sdb 16G
sdb1 256M
sdb2 15360M
}}}

==== Raid ====

{{{
md0 raid1 (sda1, sdb1)
md1 raid1 (sda2, sdb2)
}}}

==== Luks ====

{{{
md1 luks (md1_crypt)
}}}

==== LVM ====

{{{
md1_crypt lvm (vg1)
}}}

==== LVM volumes ====

{{{
vg1 root 2G (/dev/vg1/root)
vg1 swap 512M (/dev/vg1/swap)
}}}

==== Filesystems and mountpoints ====
{{{
/dev/vg1/root / (btrfs)
/dev/md0 /boot (btrfs)
/dev/vg1/swap (swap)
}}}

Configuring your disks is really two parts

  • where should the KVM host be installed
  • where will you store the KVM guests filesystem images

KVM host

Physical Disks

sda     16G
sda1   256M
sda2 15360M

sdb     16G
sdb1   256M
sdb2 15360M

Raid

md0 raid1 (sda1, sdb1)
md1 raid1 (sda2, sdb2)

Luks

md1 luks (md1_crypt)

LVM

md1_crypt lvm (vg1)

LVM volumes

vg1 root   2G (/dev/vg1/root)
vg1 swap 512M (/dev/vg1/swap)

Filesystems and mountpoints

/dev/vg1/root /     (btrfs)
/dev/md0      /boot (btrfs)
/dev/vg1/swap       (swap)

None: KVM host disk (last edited 2017-10-10 22:24:17 by shran)