Skip to content

Instantly share code, notes, and snippets.

@samuelcolvin
Created May 14, 2017 12:04
Show Gist options
  • Save samuelcolvin/43c5ed2807e7db004b1058d0c9bfb068 to your computer and use it in GitHub Desktop.
Save samuelcolvin/43c5ed2807e7db004b1058d0c9bfb068 to your computer and use it in GitHub Desktop.
repairing boot for LUKS encrypted fs

Guides:

cryptsetup luksOpen /dev/sdb3 home_sdb3
vgchange -ay
lvscan
mkdir /media/linux
mount /dev/ubuntu-vg/root /media/linux/
mount -o bind /proc /media/linux/proc
mount -o bind /dev /media/linux/dev
mount -o bind /sys /media/linux/sys
chroot /media/linux /bin/bash
> fdisk -l:

Disk /dev/sdb: 238.5 GiB, 256060514304 bytes, 500118192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: ED00E611-2AA0-40CB-BA69-97B8FAD3303E

Device       Start       End   Sectors   Size Type
/dev/sdb1     2048   1050623   1048576   512M EFI System
/dev/sdb2  1050624   2050047    999424   488M Linux filesystem
/dev/sdb3  2050048 500117503 498067456 237.5G Linux filesystem
mount /dev/sdb2 /boot
mount /dev/sdb1 /boot/efi
grub-install /dev/sdb
**OR** grub-update

umount /boot/efi
umount /boot

leave chroot

exit 
umount /media/linux/boot/efi
umount /media/linux/boot
umount -l /media/linux
vgchange -an
cryptsetup luksClose home_sdb3
@ravelzh
Copy link

ravelzh commented Feb 20, 2022

Not all heroes wearing capes, THANK YOU :-) 👍

@F-Phi
Copy link

F-Phi commented Mar 13, 2022

update-grub NOT "OR grub-update" as mentioned above

@brandon1024
Copy link

Thank you!!

@marcosvfc
Copy link

Thank you!!! Many many thanks

@themmm
Copy link

themmm commented Feb 7, 2023

Had to use "rbind" to make it work:

mount -o rbind /proc /media/linux/proc
mount -o rbind /dev /media/linux/dev
mount -o rbind /sys /media/linux/sys

Other than that it worked great ty!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment