Okay, after around 10 minutes of searching without result, I just modify the
grub.conf myself and now it's working.
Here's the thing we need to add :
Code:
title Windows XP
rootnoverify (hd0,1)
chainloader +1
The reason why we need to change
(hd0,0) to
(hd0,1) is because
HP is dumb and want to be
different so this mean :
(hd0,0) = D:\
(hd0,1) = C:\
That's dumb 'cause now,
FC4 put the
(hd0,0) as the second boot but It's not true because this is the *ugly*
System Save of
HP. So much problem for nothing. And I just found the keyboard layout, it wasn't there, that's strange.
Here you go for my new
grub.conf for
HP a630n (with Factory hardrive layout) :
Code:
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You do not have a /boot partition. This means that
# all kernel and initrd paths are relative to /, eg.
# root (hd0,2)
# kernel /boot/vmlinuz-version ro root=/dev/sda3
# initrd /boot/initrd-version.img
#boot=/dev/sda
default=0
timeout=5
splashimage=(hd0,2)/boot/grub/splash.xpm.gz
hiddenmenu
title Fedora Core (2.6.11-1.1369_FC4smp)
root (hd0,2)
kernel /boot/vmlinuz-2.6.11-1.1369_FC4smp ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.11-1.1369_FC4smp.img
title Fedora Core-up (2.6.11-1.1369_FC4)
root (hd0,2)
kernel /boot/vmlinuz-2.6.11-1.1369_FC4 ro root=LABEL=/ rhgb quiet
initrd /boot/initrd-2.6.11-1.1369_FC4.img
title Windows XP Home Edition (hd0,1)
rootnoverify (hd0,1)
chainloader +1
title HP System Save (hd0,0)
rootnoverify (hd0,0)
chainloader +1
The last thing I need to know is to
mount my second hardrive and my
(hd0,1). Is the command
mount /dev/hda1 /mnt/hda1 ?