Page 2 of 2 FirstFirst 12
Results 11 to 15 of 15

Thread: Dual-boot, ubuntu works, win7 disk read error

  1. #11
    Join Date
    Jan 2008
    Location
    France
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Arrow Re: Dual-boot, ubuntu works, win7 disk read error

    Hello

    Quote Originally Posted by dyeabog View Post
    After recommended repair:
    http://paste.ubuntu.com/1393757/
    You are affected by this bug of GRUB2.00: https://bugs.launchpad.net/ubuntu/+s...2/+bug/1061255

    There is a workaround, but i haven't automatized it yet into Boot-Repair (because i want to be sure it is reliable), so you'll have to do it manually. Please tell us if you succeed, and exactly how (which commands you used).

  2. #12
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Dual-boot, ubuntu works, win7 disk read error

    @Yann,
    I had not seen this bug on LDM.
    But would another workaround just be to add our own Windows chain entry with msdos mod not ldm mod? Or like we used to have to do with grub legcy as legacy almost never found Windows 7 to add chain entries.

    LIke this with correct Windows UUID.

    Code:
    menuentry "Windows 7 (loader) (on /dev/sda1)" {
    
     insmod ntfs
    set root=(hd0,1)
    search --no-floppy --fs-uuid --set 2ae000d2e000a663
    chainloader +1
    
     }
    Or even this which someone once suggested. This assumes Windows on sdb1?
    menuentry "Windows 7"
    {

    drivemap -s (hd0) (hd1)
    set root='(hd1,msdos1)'
    ntldr /bootmgr

    }

    @dyeabog
    IF willing to experiment a bit, copy the entry below which I edited with your sda1 UUID to 40_custom and see it that will boot.

    #Add menu entry to 40_custom,
    gksudo gedit /etc/grub.d/40_custom

    #update grub menu
    sudo update-grub


    Code:
    menuentry "Windows 7 (loader) (on /dev/sda1) test" {
    insmod ntfs
    set root=(hd0,1)
    search --no-floppy --fs-uuid --set 908A5B7D8A5B5F32
    chainloader +1
    }
    If that works you can turn off os-prober to hide the incorrect entries. If you reconfigure or add another system, you can just turn it back on with false.

    #Turn off prober
    gksudo gedit /etc/default/grub
    #Add this line
    GRUB_DISABLE_OS_PROBER=true
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  3. #13
    Join Date
    Nov 2012
    Beans
    6

    Re: Dual-boot, ubuntu works, win7 disk read error

    @oldfred:

    It worked perfectly! I can start Windows 7 and login and see my files and I can start Ubuntu and everything works too!

    If it isn't too much trouble, why did this menu entry work and not the other ones?

    Thanks again!

  4. #14
    Join Date
    Jun 2009
    Location
    SW Forida
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Dual-boot, ubuntu works, win7 disk read error

    Glad to know that works and it is a lot safer to suggest to users than the dd option in the bug report.
    UEFI boot install & repair info - Regularly Updated :
    https://ubuntuforums.org/showthread.php?t=2147295
    Please use Thread Tools above first post to change to [Solved] when/if answered completely.

  5. #15
    Join Date
    Jan 2008
    Location
    France
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Arrow Re: Dual-boot, ubuntu works, win7 disk read error

    Good job Fred

Page 2 of 2 FirstFirst 12

Bookmarks

Posting Permissions

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