{"id":307,"date":"2013-02-02T18:04:55","date_gmt":"2013-02-02T18:04:55","guid":{"rendered":"http:\/\/blog.daft-ideas.co.uk\/?p=307"},"modified":"2013-02-02T18:04:55","modified_gmt":"2013-02-02T18:04:55","slug":"grub-efi-dual-boot-errors","status":"publish","type":"post","link":"https:\/\/blog.daft-ideas.co.uk\/2013\/02\/02\/grub-efi-dual-boot-errors\/","title":{"rendered":"Grub EFI Dual boot errors"},"content":{"rendered":"
I recently decided to move install Xubuntu on my desktop, having gotten fed up of Arch Linux. Arch Linux will make it’s return, but I was having too much trouble with the AMD legacy drivers. When I’ve upgraded my graphics card (hint – for one that doesn’t have shit linux support), I’ll move back.<\/p>\n
In the meantime, I had some problems with Grub.<\/p>\n
To begin with, the install did not recognise my Windows partitions at all, but I could still boot from the EFI menu to Windows. I would rather have grub though, instead of having to hammer away at the F8 key on every cold boot.<\/p>\n
According to the Ubuntu page about UEFI<\/a>, you should use boot-repair.<\/a><\/p>\n I used boot repair, and the output from it can be found here<\/a>.<\/p>\n This updated grub, found the Windows partition, and added Windows as an option (actually 2 options for Windows. Don’t know why, but there are multiple EFI files for Windows on the EFI partition).<\/p>\n I got this error:<\/p>\n The grub entry for Windows looked like this:<\/p>\n I checked the EFI partition, and sure enough the file is there. I checked the UUID of sda1 (the EFI partition), and it was correct.<\/p>\n I tried to fix it myself, by using the hard drive name instead of the UUID, but that gave errors about partition type.<\/p>\n Turned out I needed to add this:<\/p>\n I found the information here.<\/a><\/p>\n I don’t know why that line wasn’t added, but there we are.<\/p>\n","protected":false},"excerpt":{"rendered":" I recently decided to move install Xubuntu on my desktop, having gotten fed up of Arch Linux. Arch Linux will make it’s return, but I was having too much trouble with the AMD legacy drivers. When I’ve upgraded my graphics card (hint – for one that doesn’t have shit linux… Continue reading error: no such file or device: 16E0-4903\r\nerror: no such file or device: 16E0-4903\r\nerror: file '\/EFI\/Microsoft\/Boot\/bootmgfw.efi' not found\r\n\r\nPress any key to continue\r\n<\/pre>\n
menuentry \"Windows 7\" {\r\nsearch --fs-uuid --no-floppy --set=root 16E0-4903\r\nchainloader (${root})\/EFI\/Microsoft\/Boot\/bkpbootmgfw.efi\r\n}\r\n<\/pre>\n
menuentry \"Windows 7\" {\r\ninsmod part_gpt\r\nsearch --fs-uuid --no-floppy --set=root 16E0-4903\r\nchainloader (${root})\/EFI\/Microsoft\/Boot\/bkpbootmgfw.efi\r\n}<\/pre>\n