In subsection 7 of this section (Setup a volume group), we see: In my case /dev/sda1 and /dev/sda2 are the /boot and root partitions so I care only about /dev/sda3 and /dev/sdb1. /dev/sda3 points to /dev/scsi/host1/bus0/target0/lun0/part3 and /dev/sdb1 points to /dev/scsi/host1/bus0/target1/lun0/part1. Therefore my vgcreate will look as follows: But the code listing is: vgcreate vg /dev/scsi/host1/bus0/target0/lun0/part2 \ /dev/scsi/host1/bus0/target1/lun0/part1 If /dev/sda3 points to /dev/scsi/host1/bus0/target0/lun0/part3, shouldn't the code listing instead read: vgcreate vg /dev/scsi/host1/bus0/target0/lun0/part3 \ /dev/scsi/host1/bus0/target1/lun0/part1 ? -- Stephen Reproducible: Always Steps to Reproduce: 1. n/a 2. 3. Actual Results: n/a Expected Results: n/a n/a
You're correct. I verified this and fixed the typo in the lvm.xml. Thanks for the catch.