When I rebooted my new work notebook (a very nice x201s, with a dual-core i7, 8GB RAM and an SSD by the way), it seemed that for whatever reason there was no Grub installed. Strange, but not the only problem I had with the alternate Ubuntu installer that I used for setting up LUKS-encrypted root and swap partitions. Since this turned out to be more involved than I originally thought, I decided to document what I did to maybe save others the trouble. BTW: You’ll need a Linux Live-CD for this, I recommend the excellent Debian-based Grml.
First we need to open the LUKS partition, which can be done with cryptsetup.
1 2 |
|
With that out of the way, you’ll have to mount your LVM volumes. This took me a bit because my VG wasn’t active, but thanks to an excellent blog post I found (see sources) this problem was solved quickly.
1 2 3 4 5 6 7 8 |
|
I then needed to mount the unencrypted /boot
partition as well as some special filesystems (with bind mounts) at the appropriate mount points.
1 2 3 4 5 6 |
|
With everything set up, all that’s left to do is chroot
ing into the system and fixing Grub.
1 2 |
|
Sources: