Bonjour,
Cela fais quelques temps que je cherche à me refaire une clé USB Multiboot avec plusieurs systèmes d'exploitation et utilitaires pour de la maintenance.
Et actuellement, je suis bloquer au démarrage de :
- Windows XP
- Ubuntu
- Debian
- UBCD
tout le reste démarre normalement.
Auriez-vous des idées ou solutions à partager? Avec, si possible, une explication.
Je ne cherche pas à faire faire ma clé USB par un logiciel, je souhaite justement apprendre de ça 🙂
Voici le partitionnement de ma clé USB :
Et voici le grub.cfg :
# OPTIONS
set default=0
set timeout=-1
insmod keylayouts
keymap /boot/grub/layout/fr.gkb
terminal_input at_keyboard
# ENTREES
menuentry "Demarrer sur le disque dur" {
set root=(hd1)
chainloader +1
}
menuentry "" {
true
}
menuentry "Microsoft :" {
true
}
menuentry " Windows XP Service Pack 3" {
set root=(hd0,5)
chainloader (hd0,5)+1
}
menuentry " Windows 7 Service Pack 1" {
set root=(hd0,6)
chainloader +1
}
menuentry " Windows 8.1 Update 3" {
set root=(hd0,7)
chainloader +1
}
menuentry " Windows 10 Anniversary" {
set root=(hd0,8)
chainloader +1
}
menuentry "" {
true
}
menuentry "Linux :" {
true
}
menuentry " Ubuntu 16.10, 32 bits" {
set root=(hd0,9)
linux /casper/vmlinuz locale=fr_FR bootkbd=fr boot=casper noeject noprompt --
initrd /casper/initrd.lz
}
menuentry " Debian 8.7.1, 32 bits" {
set root=(hd0,10)
chainloader /boot/grub/grub.cfg
}
menuentry "" {
true
}
menuentry "Utilitaire :" {
true
}
menuentry " Ultimate Boot CD 5.3.6" {
set root=(hd0,11)
}
menuentry "" {
true
}
menuentry "Eteindre l'ordinateur" {
halt
}
menuentry "Redemarrer l'ordinateur" {
reboot
}