So I did a VE 2.2 install and it's working just fine. I want to move the boot disk to a smaller SSD so I can use the larger one for other purposes. I happened to be looking at the output of fdisk, and something suspicious leaped out at me:
root@proxmox:~# fdisk -l /dev/sde
Disk /dev/sde: 128.0 GB, 128035676160 bytes
255 heads, 63 sectors/track, 15566 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000da2e3
Device Boot Start End Blocks Id System
/dev/sde1 * 1 66 523264 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sde2 66 15567 124510208 8e Linux LVM
It looks like the two partitions overlap on cylinder 66? At first I thought I was misreading/understanding the output, but every other disk I have looked at has the first cylinder of partition N+1 one after the last cylinder of partition N. If this is really wrong, I assume it just doesn't cause issues since /dev/sde1 is /boot which uses very little space, but if that stopped being true, the volume could get corrupted, no?
root@proxmox:~# fdisk -l /dev/sde
Disk /dev/sde: 128.0 GB, 128035676160 bytes
255 heads, 63 sectors/track, 15566 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disk identifier: 0x000da2e3
Device Boot Start End Blocks Id System
/dev/sde1 * 1 66 523264 83 Linux
Partition 1 does not end on cylinder boundary.
/dev/sde2 66 15567 124510208 8e Linux LVM
It looks like the two partitions overlap on cylinder 66? At first I thought I was misreading/understanding the output, but every other disk I have looked at has the first cylinder of partition N+1 one after the last cylinder of partition N. If this is really wrong, I assume it just doesn't cause issues since /dev/sde1 is /boot which uses very little space, but if that stopped being true, the volume could get corrupted, no?