Skip Navigation
47 comments
  • Pretty unhelpful responses so far. Enter

     bash
        
    exit
    `
    
      

    to exit the current screen and return to a selection of installed OS/Kernels. You should be able to boot normally from there on. Once logged in, try

     bash
        
    update-grub 
    
    
      

    which should repair your bootloader config.

  • Welcome, this is the Linux user equivalent of popping your cherry.

    You have a few options, but the easiest is to just use a rescue thing like Rescatux on a USB drive that automates most of the process. If you haven't the means of flashing a USB drive (like another computer) but still have your linux installation USB drive, most distros offer a "rescue existing install" option somewhere in their installer/liveUSB. But you'll have to search around.

    • Same thing happened to my windiws oc way back in 2002. Hdd crash wrecked its boot loader

  • Burn a live Linux system onto a USB (can be one with just a terminal, like Arch Linux). If you don't have another computer to plug the USB into, this can be done on an Android phone using EtchDroid.

    Then, boot from that USB and mount your main filesystem. Inside of the Live system, chroot into the mounted filesystem and run sudo grub-mkconfig -o /boot/grub/grub.cfg which should fix the bootloader.

    After that, you can just exit the USB system and return back to your OS which should boot now.

    (If you don't know how to mount a filesystem or chroot, I would explain but I forgot how to do it. If someone else could explain that would be neat)

47 comments