what you need to do is to reinstall grub.
Boot in to the live Linux USB.
You need to find out if your system uses EFI or BIOS. To do that, open the terminal and use the following command to list your partitions:
Mount the root partition first. I am using /dev/sda2 for root but you should change this with what you have on your system:
Code:
sudo mount /dev/sda2 /mnt
If you have EFI system, mount that partition as well:
Code:
sudo mount /dev/sda1 /mnt/boot/efi
Now, the next step is to finally install grub for UEFI system like this:
Code:
sudo grub-install --boot-directory=/mnt/boot --bootloader-id=ubuntu --target=x86_64-efi --efi-directory=/mnt/boot/efi
Restart PopOS using this command:
_______________________________________________________________
Installing grub on non-EFI system is even easier.
Mount the root partition of Linux:
Code:
sudo mount /dev/sda1 /mnt
And then install grub:
Code:
sudo grub-install /dev/sda
Reboot and it should be fine.