I know it’s my fault for believing what my neglected laptop told me about its battery but I went ahead an did a kernel update anyway and wound up needing to repair my system.

After a quick search I wound up on https://wiki.debian.org/GrubEFIReinstallOnLUKS per usual.

The biggest hassle of this is having to type out the longish for loop to bind the various vfs to the chroot environment. It was bad enough when it was proc/sys/dev but it’s worse these days:

for i in /dev /dev/pts /proc /sys /sys/firmware/efi/efivars /run; do sudo mount -B $i /mnt$i; done

I realise there are various things that’d automate that if I connected the rescue image to the internet and added a package but that’s also hassles as I’ve really just booted it with the express purpose of reinstalling grub.

But maybe there is already some form of shortcut for this in the system that I’ve missed? Or some existing ticket/effort to enact one I could +1?

  • frizop@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    1 day ago

    so, deb boot strap, or debbootstrap is involved in many of these tasks you’re talking about, or the docs cover the specific mount commands needed to be used in conjuection with debbootstrap, I found docs for it here: https://wiki.debian.org/Debootstrap

    Hope this helps

    • BuoyantCitrus@lemmy.caOP
      link
      fedilink
      arrow-up
      1
      ·
      9 hours ago

      My understanding of debbootstrap is that it’s for installing a minimal system, which is very much not what I want to do when rescuing an existing system as it’d probably overwrite things I’d like to keep. And the mount commands in the docs there to bind virtual filesystems before a chroot are similar to the sorts of things I’m hoping to find a memorable shortcut for yes. However, I already know what I want to bind mount, just looking for a more convenient way to go about it in a panic. Thanks for the suggestion.