<div dir="ltr"><div>I got around to fixing my desktop today. In addition to the instructions I posted above and the procedure to mount system directories below, there was only one necessary change:<br><br><a href="https://gist.github.com/samuelcolvin/43c5ed2807e7db004b1058d0c9bfb068">https://gist.github.com/samuelcolvin/43c5ed2807e7db004b1058d0c9bfb068</a><br></div><div><br></div><div>That guy suggested used grub-install /dev/sda instead of dpkg-reconfigure grub-pc.</div><div><br></div><div>That worked no problem. Thanks for your help!</div><div><br></div><div>Todd</div><div><br></div>On Tue, 4 Aug 2020 23:04:17 +0100 Colin Watson <<a href="mailto:cjwatson@debian.org">cjwatson@debian.org</a>> wrote:<br>> On Tue, Aug 04, 2020 at 05:08:44PM -0400, Todd Howe wrote:<br>> > ls /media/root/$UUID<br>> > apt install grub<br>> > grub-install --root-directory=/media/root/$UUID /dev/sda<br>> <br>> I generally don't recommend this sort of approach.  Instead, and<br>> simpler:<br>> <br>>   for x in dev proc sys; do<br>>     mount --rbind "/$x" "/media/root/$UUID/$x"<br>>   done<br>>   chroot "/media/root/$UUID/$x"<br>>   dpkg-reconfigure grub-pc<br>>   exit<br>>   for x in dev proc sys; do<br>>     umount -l "/media/root/$UUID/$x"<br>>   done<br>> <br>> (Untested and there may be some minor roadblocks, but this is my usual<br>> approach; if you do this interactively then hopefully it'll be<br>> reasonably clear how to make whatever minor adjustments are needed.  I<br>> think it's essentially just the bind-mounts that you were missing when<br>> you tried to chroot later on.)<br>> <br>> -- <br>> Colin Watson (he/him)                              [<a href="mailto:cjwatson@debian.org">cjwatson@debian.org</a>]<br>> <br>> <br></div>