<div dir="ltr"><div>Turns out that I also needed /run to be bound from the USB drive <br></div><div>to the chroot of the main disk:</div><div><br></div><div># Figure out which partition to mount<br></div><div>lsblkĀ </div><div># Create a mount point<br></div><div>mkdir /mnt/r</div><div># Mount the hard disk <br></div><div>mount /dev/sda2 /mnt/r<br></div><div><br></div><div># Bind the mount points<br></div><div>mount --bind /dev /mnt/r/dev<br>mount --bind /dev/pts /mnt/r/dev/pts<br>mount --bind /proc /mnt/r/proc<br>mount --bind /sys /mnt/r/sys<br>mount --bind /run /mnt/r/run <br></div><div><br></div><div># Chroot<br></div><div>chroot /mnt/r</div><div><br></div><div>Once in chroot, I had to fiddle with /etc/resolv.conf and its symlink that <br></div><div>points to /run/resolvconf/resolv.conf</div><div><br></div><div>Then the Ubuntu repos would resolve. <br></div><div><br></div><div>One note of caution: if you install grub-pc, then grub-efi will be uninstalled.</div><div>There does not seem to be a way to have them both on the system at the</div><div>same time. A restriction to keep in mind. </div><div><br></div><div>Once that is complete, all worked well. <br></div><div><br></div><div>Thanks Remy ... <br></div></div>