Sunday, April 28, 2024
 Popular · Latest · Hot · Upcoming
6
rated 0 times [  6] [ 0]  / answers: 1 / hits: 37930  / 2 Years ago, thu, june 16, 2022, 12:38:51

After trying to install both OS during 2 days, I'm confused and getting mad...
I have SSD 128 GB and HDD 500 GB both empty. My laptop is Asus K55VM. BIOS support UEFI.



What I have done:




  1. Install new SSD (Samsung 830 128GB)


  2. Use GParted on liveCD to create new table of partitions (GPT) and create 3 partitions (in the SSD) for different purposes:




    • Partition 1: 80 GB (w7);

    • Partition 2: 30 GB (Ubuntu 12.04 -Just / -);

    • Partition 3: 10 GB unused (for future extesion of the other partitions)


  3. Install Windows 7 (with UEFI) in Partition 1. This create:




    • /dev/sda1 -> 100 MB for System (UEFI boot I guess) - FAT32

    • /dev/sda2 -> 100 MB aprox. for MSR

    • /dev/sda3 -> 79.800 MB aprox. for Windows7 data




In this point everything works fine. I have W7. Now I install Ubuntu 12.04 amd64 (with UEFI) as follows:




  1. Install / in Partition 2 -> /dev/sda4 30 GB ext4, and in the hdd I install /home and swap.


  2. I select bootloader in /dev/sda1 (where it's supposed to be the UEFI boot).


  3. I install updates and reboot.




Problem: Now just appears grub menu with Ubuntu entries and not Windows 7.



Alternative solution found: When I turn on laptop, before loading GRUB I press ESC key and appear BIOS boot, so I can select to boot the Windows partition, Ubuntu partition, DVD, USB, etc... but I think is not the best way to boot different OS.



I've tried: sudo update-grub2 with no success.



What can I do??


More From » 12.04

 Answers
0

Find where the windows bootloader resides by mounting the efi partition:



sudo mount -t vfat /dev/sdx1 /mnt/efi/


And search for bootmgfw.efi. Then, find the UUID of the drive:



sudo grub-probe --target=fs_uuid /mnt/efi/EFI/Microsoft/Boot/bootmgfw.efi


Add this UUID to /etc/grub.d/40_custom:



menuentry "Windows x86_64 UEFI-GPT" {
search --fs-uuid --no-floppy --set=root UUID
chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi
}


Finally run update-grub.


[#35320] Friday, June 17, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
aciousoun

Total Points: 178
Total Questions: 110
Total Answers: 98

Location: Lithuania
Member since Fri, Sep 4, 2020
4 Years ago
;