Results 1 to 24 of 24

Thread: GRUB loader not shown - Dual boot Windows 10 and Kali linux 2016.2

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Join Date
    2016-Oct
    Location
    /dev/sda
    Posts
    1,012
    The grub should be installed in the EFI partition so you have to mount EFI partition too along with your root partition. Run these commands and see if it helps:

    Code:
    sudo mount /dev/sda5 /mnt
    sudo mount --bind /dev /mnt/dev
    sudo mount --bind /proc /mnt/proc
    sudo mount --bind /sys /mnt/sys
    sudo mount /dev/sda2 /mnt/boot/efi
    sudo chroot /mnt
    grub-install /dev/sda
    update-grub
    exit
    sudo umount /mnt/dev
    sudo umount /mnt/proc
    sudo umount /mnt/sys
    sudo umount /mnt
    Last edited by _defalt; 2017-02-19 at 14:03.

Similar Threads

  1. Problem with GRUB Boot Loader Dual Booting Windows 10
    By 2600shitposts in forum Installing Kali Linux
    Replies: 0
    Last Post: 2023-06-24, 19:57
  2. Replies: 3
    Last Post: 2022-12-06, 23:44
  3. Replies: 1
    Last Post: 2022-08-11, 23:53

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
  •