Grub 2, Windows 10 not automatically added, manual entry not working either












2















Here is a link to my previous Question here asking this info, but that info is outdated as Grub did not work when I originally had Windows 7 installed. Installed Manjaro on seperate drive, Windows 7 not showing up, got frustrated, kinda broke Win7, replaced it with Win10 and now trying to get Windows 10 to show up in grub. (Windows 10 works)



So now the process. I have a bit too much distrust in installing Windows since I had it mess up my system before, as such when I Installed Windows 10 over my Win7 I physically disconnected the other drives.




  1. I had Windows 10 placed on a bootable USB drive with GPT partition.

  2. Installed Windows 10.

  3. Reboot into Manjaro with all drives plugged in.

  4. Ran sudo grub-mkconfig and sudo update-grub Windows was still not found


Added custom entry in /etc/grub.d/40_custom:



#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.

menuentry "Windows 10" {
insmod part_gpt
insmod chain
set root='(hd4, msdos1)'
chainloader +1
}


With no success, Grub saying "hd4,msdos2" not found (or similar)



Rebooted into grub ran in command mode
listed off all the drives ls



Found Windows 10 was installed:




  • System Reserved (hd4,msdos1)

  • C:/ (hd4,msdos2)


Browsing in grub ls (hd4,msdos2)/
The efi file was located: (hd4,msdos2)/Windows/Boot/EFI/bootmgfw.efi



Edited /etc/grub.d/40_custom



#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.

menuentry "Windows 10" {
insmod part_msdos
insmod ntfs
insmod chain
set root='(hd4, msdos2)'
chainloader /Windows/Boot/EFI/bootmgfw.efi
}


With no success, Grub saying "hd4,msdos2" not found (or similar) again...



And here I am asking for help.



I am not sure 100% but I do believe that I installed Manjaro (and Windows 10) as UEFI



sudo fdisk -l:



Disk /dev/sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x0004e0a2

Device Boot Start End Sectors Size Id Type
/dev/sda1 2048 234438655 234436608 111.8G 7 HPFS/NTFS/exFAT


Disk /dev/sdc: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disklabel type: dos
Disk identifier: 0x0005e1a9

Device Boot Start End Sectors Size Id Type
/dev/sdc1 2048 1953520064 1953518017 931.5G 83 Linux


Disk /dev/sdb: 111.8 GiB, 120034123776 bytes, 234441648 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xaf87c8bd

Device Boot Start End Sectors Size Id Type
/dev/sdb1 2048 234438655 234436608 111.8G 7 HPFS/NTFS/exFAT


Disk /dev/sdd: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0xc443369b

Device Boot Start End Sectors Size Id Type
/dev/sdd1 * 2048 1026047 1024000 500M 7 HPFS/NTFS/exFAT
/dev/sdd2 1026048 1953521663 1952495616 931G 7 HPFS/NTFS/exFAT


Disk /dev/sde: 238.5 GiB, 256060514304 bytes, 500118192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: gpt
Disk identifier: D018CAAD-8426-4B8A-99FB-399757F9E3DB

Device Start End Sectors Size Type
/dev/sde1 2048 9884859 9882812 4.7G EFI System
/dev/sde2 9884860 494259859 484375000 231G Linux filesystem
/dev/sde3 494259860 500118158 5858299 2.8G Linux filesystem




  • /dev/sde1 -> /boot/efi


  • /dev/sde2 -> /


  • /dev/sde3 -> swap


  • /dev/sdc1 -> /home


/etc/fstab:



# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
UUID=596E-1D7B /boot/efi vfat defaults,noatime 0 2
UUID=e96e9dc6-b686-419c-8070-532b71f0631a / ext4 defaults,noatime,discard 0 1
UUID=b0dedb36-a45d-407f-be01-1da38f343149 /home ext4 defaults,commit=60,noatime 0 2
UUID=5acc3a2a-fc46-4d5d-916c-3e42f1b77141 swap swap defaults,noatime,discard 0 2
tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0

#windows drive
#UUID=847ACFC37ACFAFEA /mnt/windows ntfs locale=en_US.utf8,dmask=022,fmask=022 0 2
#UUID=C810D31310D306FA /mnt/windows2 ntfs locale=en_US.utf8,dmask=022,fmask=022 0 2









share|improve this question





























    2















    Here is a link to my previous Question here asking this info, but that info is outdated as Grub did not work when I originally had Windows 7 installed. Installed Manjaro on seperate drive, Windows 7 not showing up, got frustrated, kinda broke Win7, replaced it with Win10 and now trying to get Windows 10 to show up in grub. (Windows 10 works)



    So now the process. I have a bit too much distrust in installing Windows since I had it mess up my system before, as such when I Installed Windows 10 over my Win7 I physically disconnected the other drives.




    1. I had Windows 10 placed on a bootable USB drive with GPT partition.

    2. Installed Windows 10.

    3. Reboot into Manjaro with all drives plugged in.

    4. Ran sudo grub-mkconfig and sudo update-grub Windows was still not found


    Added custom entry in /etc/grub.d/40_custom:



    #!/bin/sh
    exec tail -n +3 $0
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.

    menuentry "Windows 10" {
    insmod part_gpt
    insmod chain
    set root='(hd4, msdos1)'
    chainloader +1
    }


    With no success, Grub saying "hd4,msdos2" not found (or similar)



    Rebooted into grub ran in command mode
    listed off all the drives ls



    Found Windows 10 was installed:




    • System Reserved (hd4,msdos1)

    • C:/ (hd4,msdos2)


    Browsing in grub ls (hd4,msdos2)/
    The efi file was located: (hd4,msdos2)/Windows/Boot/EFI/bootmgfw.efi



    Edited /etc/grub.d/40_custom



    #!/bin/sh
    exec tail -n +3 $0
    # This file provides an easy way to add custom menu entries. Simply type the
    # menu entries you want to add after this comment. Be careful not to change
    # the 'exec tail' line above.

    menuentry "Windows 10" {
    insmod part_msdos
    insmod ntfs
    insmod chain
    set root='(hd4, msdos2)'
    chainloader /Windows/Boot/EFI/bootmgfw.efi
    }


    With no success, Grub saying "hd4,msdos2" not found (or similar) again...



    And here I am asking for help.



    I am not sure 100% but I do believe that I installed Manjaro (and Windows 10) as UEFI



    sudo fdisk -l:



    Disk /dev/sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0x0004e0a2

    Device Boot Start End Sectors Size Id Type
    /dev/sda1 2048 234438655 234436608 111.8G 7 HPFS/NTFS/exFAT


    Disk /dev/sdc: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 4096 bytes
    I/O size (minimum/optimal): 4096 bytes / 4096 bytes
    Disklabel type: dos
    Disk identifier: 0x0005e1a9

    Device Boot Start End Sectors Size Id Type
    /dev/sdc1 2048 1953520064 1953518017 931.5G 83 Linux


    Disk /dev/sdb: 111.8 GiB, 120034123776 bytes, 234441648 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0xaf87c8bd

    Device Boot Start End Sectors Size Id Type
    /dev/sdb1 2048 234438655 234436608 111.8G 7 HPFS/NTFS/exFAT


    Disk /dev/sdd: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: dos
    Disk identifier: 0xc443369b

    Device Boot Start End Sectors Size Id Type
    /dev/sdd1 * 2048 1026047 1024000 500M 7 HPFS/NTFS/exFAT
    /dev/sdd2 1026048 1953521663 1952495616 931G 7 HPFS/NTFS/exFAT


    Disk /dev/sde: 238.5 GiB, 256060514304 bytes, 500118192 sectors
    Units: sectors of 1 * 512 = 512 bytes
    Sector size (logical/physical): 512 bytes / 512 bytes
    I/O size (minimum/optimal): 512 bytes / 512 bytes
    Disklabel type: gpt
    Disk identifier: D018CAAD-8426-4B8A-99FB-399757F9E3DB

    Device Start End Sectors Size Type
    /dev/sde1 2048 9884859 9882812 4.7G EFI System
    /dev/sde2 9884860 494259859 484375000 231G Linux filesystem
    /dev/sde3 494259860 500118158 5858299 2.8G Linux filesystem




    • /dev/sde1 -> /boot/efi


    • /dev/sde2 -> /


    • /dev/sde3 -> swap


    • /dev/sdc1 -> /home


    /etc/fstab:



    # /etc/fstab: static file system information.
    #
    # Use 'blkid' to print the universally unique identifier for a device; this may
    # be used with UUID= as a more robust way to name devices that works even if
    # disks are added and removed. See fstab(5).
    #
    # <file system> <mount point> <type> <options> <dump> <pass>
    UUID=596E-1D7B /boot/efi vfat defaults,noatime 0 2
    UUID=e96e9dc6-b686-419c-8070-532b71f0631a / ext4 defaults,noatime,discard 0 1
    UUID=b0dedb36-a45d-407f-be01-1da38f343149 /home ext4 defaults,commit=60,noatime 0 2
    UUID=5acc3a2a-fc46-4d5d-916c-3e42f1b77141 swap swap defaults,noatime,discard 0 2
    tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0

    #windows drive
    #UUID=847ACFC37ACFAFEA /mnt/windows ntfs locale=en_US.utf8,dmask=022,fmask=022 0 2
    #UUID=C810D31310D306FA /mnt/windows2 ntfs locale=en_US.utf8,dmask=022,fmask=022 0 2









    share|improve this question



























      2












      2








      2








      Here is a link to my previous Question here asking this info, but that info is outdated as Grub did not work when I originally had Windows 7 installed. Installed Manjaro on seperate drive, Windows 7 not showing up, got frustrated, kinda broke Win7, replaced it with Win10 and now trying to get Windows 10 to show up in grub. (Windows 10 works)



      So now the process. I have a bit too much distrust in installing Windows since I had it mess up my system before, as such when I Installed Windows 10 over my Win7 I physically disconnected the other drives.




      1. I had Windows 10 placed on a bootable USB drive with GPT partition.

      2. Installed Windows 10.

      3. Reboot into Manjaro with all drives plugged in.

      4. Ran sudo grub-mkconfig and sudo update-grub Windows was still not found


      Added custom entry in /etc/grub.d/40_custom:



      #!/bin/sh
      exec tail -n +3 $0
      # This file provides an easy way to add custom menu entries. Simply type the
      # menu entries you want to add after this comment. Be careful not to change
      # the 'exec tail' line above.

      menuentry "Windows 10" {
      insmod part_gpt
      insmod chain
      set root='(hd4, msdos1)'
      chainloader +1
      }


      With no success, Grub saying "hd4,msdos2" not found (or similar)



      Rebooted into grub ran in command mode
      listed off all the drives ls



      Found Windows 10 was installed:




      • System Reserved (hd4,msdos1)

      • C:/ (hd4,msdos2)


      Browsing in grub ls (hd4,msdos2)/
      The efi file was located: (hd4,msdos2)/Windows/Boot/EFI/bootmgfw.efi



      Edited /etc/grub.d/40_custom



      #!/bin/sh
      exec tail -n +3 $0
      # This file provides an easy way to add custom menu entries. Simply type the
      # menu entries you want to add after this comment. Be careful not to change
      # the 'exec tail' line above.

      menuentry "Windows 10" {
      insmod part_msdos
      insmod ntfs
      insmod chain
      set root='(hd4, msdos2)'
      chainloader /Windows/Boot/EFI/bootmgfw.efi
      }


      With no success, Grub saying "hd4,msdos2" not found (or similar) again...



      And here I am asking for help.



      I am not sure 100% but I do believe that I installed Manjaro (and Windows 10) as UEFI



      sudo fdisk -l:



      Disk /dev/sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 512 bytes
      I/O size (minimum/optimal): 512 bytes / 512 bytes
      Disklabel type: dos
      Disk identifier: 0x0004e0a2

      Device Boot Start End Sectors Size Id Type
      /dev/sda1 2048 234438655 234436608 111.8G 7 HPFS/NTFS/exFAT


      Disk /dev/sdc: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 4096 bytes
      I/O size (minimum/optimal): 4096 bytes / 4096 bytes
      Disklabel type: dos
      Disk identifier: 0x0005e1a9

      Device Boot Start End Sectors Size Id Type
      /dev/sdc1 2048 1953520064 1953518017 931.5G 83 Linux


      Disk /dev/sdb: 111.8 GiB, 120034123776 bytes, 234441648 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 512 bytes
      I/O size (minimum/optimal): 512 bytes / 512 bytes
      Disklabel type: dos
      Disk identifier: 0xaf87c8bd

      Device Boot Start End Sectors Size Id Type
      /dev/sdb1 2048 234438655 234436608 111.8G 7 HPFS/NTFS/exFAT


      Disk /dev/sdd: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 512 bytes
      I/O size (minimum/optimal): 512 bytes / 512 bytes
      Disklabel type: dos
      Disk identifier: 0xc443369b

      Device Boot Start End Sectors Size Id Type
      /dev/sdd1 * 2048 1026047 1024000 500M 7 HPFS/NTFS/exFAT
      /dev/sdd2 1026048 1953521663 1952495616 931G 7 HPFS/NTFS/exFAT


      Disk /dev/sde: 238.5 GiB, 256060514304 bytes, 500118192 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 512 bytes
      I/O size (minimum/optimal): 512 bytes / 512 bytes
      Disklabel type: gpt
      Disk identifier: D018CAAD-8426-4B8A-99FB-399757F9E3DB

      Device Start End Sectors Size Type
      /dev/sde1 2048 9884859 9882812 4.7G EFI System
      /dev/sde2 9884860 494259859 484375000 231G Linux filesystem
      /dev/sde3 494259860 500118158 5858299 2.8G Linux filesystem




      • /dev/sde1 -> /boot/efi


      • /dev/sde2 -> /


      • /dev/sde3 -> swap


      • /dev/sdc1 -> /home


      /etc/fstab:



      # /etc/fstab: static file system information.
      #
      # Use 'blkid' to print the universally unique identifier for a device; this may
      # be used with UUID= as a more robust way to name devices that works even if
      # disks are added and removed. See fstab(5).
      #
      # <file system> <mount point> <type> <options> <dump> <pass>
      UUID=596E-1D7B /boot/efi vfat defaults,noatime 0 2
      UUID=e96e9dc6-b686-419c-8070-532b71f0631a / ext4 defaults,noatime,discard 0 1
      UUID=b0dedb36-a45d-407f-be01-1da38f343149 /home ext4 defaults,commit=60,noatime 0 2
      UUID=5acc3a2a-fc46-4d5d-916c-3e42f1b77141 swap swap defaults,noatime,discard 0 2
      tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0

      #windows drive
      #UUID=847ACFC37ACFAFEA /mnt/windows ntfs locale=en_US.utf8,dmask=022,fmask=022 0 2
      #UUID=C810D31310D306FA /mnt/windows2 ntfs locale=en_US.utf8,dmask=022,fmask=022 0 2









      share|improve this question
















      Here is a link to my previous Question here asking this info, but that info is outdated as Grub did not work when I originally had Windows 7 installed. Installed Manjaro on seperate drive, Windows 7 not showing up, got frustrated, kinda broke Win7, replaced it with Win10 and now trying to get Windows 10 to show up in grub. (Windows 10 works)



      So now the process. I have a bit too much distrust in installing Windows since I had it mess up my system before, as such when I Installed Windows 10 over my Win7 I physically disconnected the other drives.




      1. I had Windows 10 placed on a bootable USB drive with GPT partition.

      2. Installed Windows 10.

      3. Reboot into Manjaro with all drives plugged in.

      4. Ran sudo grub-mkconfig and sudo update-grub Windows was still not found


      Added custom entry in /etc/grub.d/40_custom:



      #!/bin/sh
      exec tail -n +3 $0
      # This file provides an easy way to add custom menu entries. Simply type the
      # menu entries you want to add after this comment. Be careful not to change
      # the 'exec tail' line above.

      menuentry "Windows 10" {
      insmod part_gpt
      insmod chain
      set root='(hd4, msdos1)'
      chainloader +1
      }


      With no success, Grub saying "hd4,msdos2" not found (or similar)



      Rebooted into grub ran in command mode
      listed off all the drives ls



      Found Windows 10 was installed:




      • System Reserved (hd4,msdos1)

      • C:/ (hd4,msdos2)


      Browsing in grub ls (hd4,msdos2)/
      The efi file was located: (hd4,msdos2)/Windows/Boot/EFI/bootmgfw.efi



      Edited /etc/grub.d/40_custom



      #!/bin/sh
      exec tail -n +3 $0
      # This file provides an easy way to add custom menu entries. Simply type the
      # menu entries you want to add after this comment. Be careful not to change
      # the 'exec tail' line above.

      menuentry "Windows 10" {
      insmod part_msdos
      insmod ntfs
      insmod chain
      set root='(hd4, msdos2)'
      chainloader /Windows/Boot/EFI/bootmgfw.efi
      }


      With no success, Grub saying "hd4,msdos2" not found (or similar) again...



      And here I am asking for help.



      I am not sure 100% but I do believe that I installed Manjaro (and Windows 10) as UEFI



      sudo fdisk -l:



      Disk /dev/sda: 111.8 GiB, 120034123776 bytes, 234441648 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 512 bytes
      I/O size (minimum/optimal): 512 bytes / 512 bytes
      Disklabel type: dos
      Disk identifier: 0x0004e0a2

      Device Boot Start End Sectors Size Id Type
      /dev/sda1 2048 234438655 234436608 111.8G 7 HPFS/NTFS/exFAT


      Disk /dev/sdc: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 4096 bytes
      I/O size (minimum/optimal): 4096 bytes / 4096 bytes
      Disklabel type: dos
      Disk identifier: 0x0005e1a9

      Device Boot Start End Sectors Size Id Type
      /dev/sdc1 2048 1953520064 1953518017 931.5G 83 Linux


      Disk /dev/sdb: 111.8 GiB, 120034123776 bytes, 234441648 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 512 bytes
      I/O size (minimum/optimal): 512 bytes / 512 bytes
      Disklabel type: dos
      Disk identifier: 0xaf87c8bd

      Device Boot Start End Sectors Size Id Type
      /dev/sdb1 2048 234438655 234436608 111.8G 7 HPFS/NTFS/exFAT


      Disk /dev/sdd: 931.5 GiB, 1000204886016 bytes, 1953525168 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 512 bytes
      I/O size (minimum/optimal): 512 bytes / 512 bytes
      Disklabel type: dos
      Disk identifier: 0xc443369b

      Device Boot Start End Sectors Size Id Type
      /dev/sdd1 * 2048 1026047 1024000 500M 7 HPFS/NTFS/exFAT
      /dev/sdd2 1026048 1953521663 1952495616 931G 7 HPFS/NTFS/exFAT


      Disk /dev/sde: 238.5 GiB, 256060514304 bytes, 500118192 sectors
      Units: sectors of 1 * 512 = 512 bytes
      Sector size (logical/physical): 512 bytes / 512 bytes
      I/O size (minimum/optimal): 512 bytes / 512 bytes
      Disklabel type: gpt
      Disk identifier: D018CAAD-8426-4B8A-99FB-399757F9E3DB

      Device Start End Sectors Size Type
      /dev/sde1 2048 9884859 9882812 4.7G EFI System
      /dev/sde2 9884860 494259859 484375000 231G Linux filesystem
      /dev/sde3 494259860 500118158 5858299 2.8G Linux filesystem




      • /dev/sde1 -> /boot/efi


      • /dev/sde2 -> /


      • /dev/sde3 -> swap


      • /dev/sdc1 -> /home


      /etc/fstab:



      # /etc/fstab: static file system information.
      #
      # Use 'blkid' to print the universally unique identifier for a device; this may
      # be used with UUID= as a more robust way to name devices that works even if
      # disks are added and removed. See fstab(5).
      #
      # <file system> <mount point> <type> <options> <dump> <pass>
      UUID=596E-1D7B /boot/efi vfat defaults,noatime 0 2
      UUID=e96e9dc6-b686-419c-8070-532b71f0631a / ext4 defaults,noatime,discard 0 1
      UUID=b0dedb36-a45d-407f-be01-1da38f343149 /home ext4 defaults,commit=60,noatime 0 2
      UUID=5acc3a2a-fc46-4d5d-916c-3e42f1b77141 swap swap defaults,noatime,discard 0 2
      tmpfs /tmp tmpfs defaults,noatime,mode=1777 0 0

      #windows drive
      #UUID=847ACFC37ACFAFEA /mnt/windows ntfs locale=en_US.utf8,dmask=022,fmask=022 0 2
      #UUID=C810D31310D306FA /mnt/windows2 ntfs locale=en_US.utf8,dmask=022,fmask=022 0 2






      grub2 uefi






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 13 '17 at 12:36









      Community

      1




      1










      asked Sep 18 '16 at 8:14









      DrewDrew

      190215




      190215






















          1 Answer
          1






          active

          oldest

          votes


















          -1














          Are you using the GPT file system? EFI needs it. For "msdos1", try "gpt1." Sorry, GPTpartition numbering starts at 1, not 0. The number you need is for /boot/efi, whivch seems to be No. 1.






          share|improve this answer










          New contributor




          user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "106"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f310615%2fgrub-2-windows-10-not-automatically-added-manual-entry-not-working-either%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            -1














            Are you using the GPT file system? EFI needs it. For "msdos1", try "gpt1." Sorry, GPTpartition numbering starts at 1, not 0. The number you need is for /boot/efi, whivch seems to be No. 1.






            share|improve this answer










            New contributor




            user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.

























              -1














              Are you using the GPT file system? EFI needs it. For "msdos1", try "gpt1." Sorry, GPTpartition numbering starts at 1, not 0. The number you need is for /boot/efi, whivch seems to be No. 1.






              share|improve this answer










              New contributor




              user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.























                -1












                -1








                -1







                Are you using the GPT file system? EFI needs it. For "msdos1", try "gpt1." Sorry, GPTpartition numbering starts at 1, not 0. The number you need is for /boot/efi, whivch seems to be No. 1.






                share|improve this answer










                New contributor




                user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.










                Are you using the GPT file system? EFI needs it. For "msdos1", try "gpt1." Sorry, GPTpartition numbering starts at 1, not 0. The number you need is for /boot/efi, whivch seems to be No. 1.







                share|improve this answer










                New contributor




                user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                share|improve this answer



                share|improve this answer








                edited 20 mins ago





















                New contributor




                user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                answered 30 mins ago









                user3001834user3001834

                11




                11




                New contributor




                user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                New contributor





                user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                user3001834 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f310615%2fgrub-2-windows-10-not-automatically-added-manual-entry-not-working-either%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    サソリ

                    広島県道265号伴広島線

                    Setup Asymptote in Texstudio