Hi everyone!
I work on Suse 12.3 with KDE 4.10.3.
I have Suse and Windows (7) installed on two different (physical) hard disk, and I want to have double boot.
I tried to use grub2 in order to do so, and while I have no problem in accessing the grub menu at the beginning of each session, I can’t find a way to boot windows.
When I select the entry windows from the grub menu I receive an error message telling me that the “hd0,3” (or any other hd I tried to enter in the configuration file of grub2, is not existent.
Here is the configuration file that I saved in the /etc/grub.d directory, named 15_windows
#! /bin/sh -e
echo “Adding Windows” >&2
cat << EOF
menuentry “Windows” {
set root=(hd0,2)
chainloader (hd0,2) +1
}
EOF
And (I think may be of interest) the output of fdisk -l :
Disk /dev/sda: 250.1 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders, total 488397168 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
Disk identifier: 0x0bc85b25
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 1640447 819200 7 HPFS/NTFS/exFAT
/dev/sda2 1640448 219627519 108993536 7 HPFS/NTFS/exFAT
/dev/sda3 219627520 465387519 122880000 f W95 Ext’d (LBA)
/dev/sda4 465387520 488394751 11503616 7 HPFS/NTFS/exFAT
/dev/sda5 219629568 465387519 122878976 7 HPFS/NTFS/exFAT
WARNING: GPT (GUID Partition Table) detected on ‘/dev/sdb’! The util fdisk doesn’t support GPT. Use GNU Parted.
Disk /dev/sdb: 1000.2 GB, 1000204886016 bytes
255 heads, 63 sectors/track, 121601 cylinders, total 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
Disk identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sdb1 1 1953525167 976762583+ ee GPT
Windows is installed on /dev/sda2.
Can anyone give me a tip ?
Thank you in advance
Alain