neue Platte parallel zur alten rein.
live gebootet, neue Platte partitioniert mit gpt
/boot auf sda2 (ohne luks)
/ auf sda4 (luks)
beide Platten eingehängt, per rsync alles auf die neue Platte copiert.
chroot auf die neue Platte.
Code: Alles auswählen
root@sysresccd:/# which cryptsetup
/sbin/cryptsetup
root@sysresccd:/# blkid
/dev/sda2: UUID="ef81b869-7ed5-440b-adb0-ff158ca62071" TYPE="ext2"
/dev/sda4: UUID="fbdf8af3-c894-41b5-89d8-fc8088c00c0e" TYPE="crypto_LUKS"
/dev/loop0: TYPE="squashfs"
/dev/mapper/cryptroot: UUID="50a5923a-8b2c-41a4-b587-da7585bfd0cb" TYPE="ext4"
root@sysresccd:/# cat /etc/crypttab
cryptroot UUID=fbdf8af3-c894-41b5-89d8-fc8088c00c0e none luks
root@sysresccd:/# cat /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
# / was on /dev/sda2 during installation
UUID=ef81b869-7ed5-440b-adb0-ff158ca62071 /boot ext2 defaults 0 2
/dev/mapper/cryptroot / ext4 errors=remount-ro 0 1
update-initramfs -u -k all
update-grub
System rebootet. Aber anstatt der passphrase abfrage kommt "/dev/mapper/cryptroot not found"
Was übersehe ich gerade?