Bonjour 
Je squatte le sujet, j’ai le même problème : je vois ma partition Windows mais il ne veut pas booter dessus : no such partition quand je sélectionne Windows XP.
J’ai manuellement édité /boot/grub/grub.cfg ce qui est peut-être la cause de ce souci ; mais j’y ai été contraint dans la mesure où Windows n’apparaissait pas du tout dans le menu de GRUB2…
Je précise que la partition (hd0,0) était bien celle de mon Windows sur l’ancien GRUB, d’où mon interrogation quant à ce problème.
Voilà mon grub.cfg (j’ai un backup au cas où
) [code]# DO NOT EDIT THIS FILE
It is automatically generated by /usr/sbin/grub-mkconfig using templates
from /etc/grub.d and settings from /etc/default/grub
BEGIN /etc/grub.d/00_header
set default=0
set timeout=5
set root=(hd1,7)
search --no-floppy --fs-uuid --set d6b136db-25e6-4205-b23e-2a8e69158c85
if loadfont /usr/share/grub/ascii.pf2 ; then
set gfxmode=640x480
insmod gfxterm
insmod vbe
if terminal_output.gfxterm ; then true ; else
# For backward compatibility with versions of terminal.mod that don’t
# understand terminal_output
terminal gfxterm
fi
fi
END /etc/grub.d/00_header
BEGIN /etc/grub.d/05_debian_theme
set root=(hd1,7)
search --no-floppy --fs-uuid --set d6b136db-25e6-4205-b23e-2a8e69158c85
insmod png
if background_image /boot/grub/moreblue-orbit-grub.png ; then
set color_normal=black/black
set color_highlight=magenta/black
else
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
fi
END /etc/grub.d/05_debian_theme
BEGIN /etc/grub.d/10_linux
menuentry “Debian GNU/Linux, Linux 2.6.26-2-686” {
set root=(hd1,7)
search --no-floppy --fs-uuid --set d6b136db-25e6-4205-b23e-2a8e69158c85
linux /boot/vmlinuz-2.6.26-2-686 root=UUID=d6b136db-25e6-4205-b23e-2a8e69158c85 ro quiet
initrd /boot/initrd.img-2.6.26-2-686
}
menuentry “Debian GNU/Linux, Linux 2.6.26-2-686 (recovery mode)” {
set root=(hd1,7)
search --no-floppy --fs-uuid --set d6b136db-25e6-4205-b23e-2a8e69158c85
linux /boot/vmlinuz-2.6.26-2-686 root=UUID=d6b136db-25e6-4205-b23e-2a8e69158c85 ro single
initrd /boot/initrd.img-2.6.26-2-686
}
END /etc/grub.d/10_linux
BEGIN /etc/grub.d/30_os-prober
menuentry “Windows XP” {
set root=(hd0,0)
chainloader +1
}
END /etc/grub.d/30_os-prober
BEGIN /etc/grub.d/40_custom
This file is an example on how to add custom entries
END /etc/grub.d/40_custom ###[/code]