Results 1 to 2 of 2

Thread: Grub is not showing on windows 10 computer

  1. #1

    Question Grub is not showing on windows 10 computer

    Hi all

    Can you please help me to fix boot issue. I decided to try installing Kali on my Windows 10 computer and attempting to do a dual boot. This issues seems pretty common, but for some reason I just cant get the grub menu to show up at all; it just boots me right into windows 10.

    I tried lots of things and also boot-repair-disc. I am providing the link: http://paste.ubuntu.com/24274612/

    I tried to reach guys on irc channel but nobody respond. I believe they are busy at the moment.

    Thank you for any help.

  2. #2
    Join Date
    2016-Oct
    Location
    /dev/sda
    Posts
    1,012
    You can re-install grub by booting into kali live USB. Here is the list of commands you need to enter-
    Code:
    sudo mount /dev/sda* /mnt
    sudo mount --bind /dev /mnt/dev
    sudo mount --bind /proc /mnt/proc
    sudo mount --bind /sys /mnt/sys
    sudo mount /dev/sda** /mnt/boot/efi
    sudo chroot /mnt
    grub-install /dev/sda
    exit
    sudo umount /mnt/dev
    sudo umount /mnt/proc
    sudo umount /mnt/sys
    sudo umount /mnt/boot/efi
    sudo umount /mnt
    Replace * in sudo mount /dev/sda* /mnt with your linux partition assigned value.
    Replace ** in sudo mount /dev/sda** /mnt/boot/efi with your EFI partition assigned value.
    Use fdisk -l to list all partitions.

Similar Threads

  1. GNU GRUB version 2.02. Cannot even boot a computer
    By akukaracza82 in forum TroubleShooting Archive
    Replies: 0
    Last Post: 2020-04-22, 09:44
  2. Grub not showing in secure boot with windows 10
    By frodomo in forum Installing Archive
    Replies: 4
    Last Post: 2018-05-06, 23:32
  3. grub not showing windows option
    By rushic24 in forum TroubleShooting Archive
    Replies: 7
    Last Post: 2016-03-12, 15:44
  4. Replies: 1
    Last Post: 2015-09-07, 21:51

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •