Ci-dessous, les différences entre deux révisions de la page.
| Les deux révisions précédentesRévision précédenteProchaine révision | Révision précédente | ||
| hardware:lenovo:thinkstation_s30:erreur_demarrage_debian_uefi [2024/11/08 17:54] – yoann | hardware:lenovo:thinkstation_s30:erreur_demarrage_debian_uefi [2024/12/10 10:12] (Version actuelle) – yoann | ||
|---|---|---|---|
| Ligne 47: | Ligne 47: | ||
| * < | * < | ||
| - | Le démarrage échoue toujours. | + | Le démarrage échoue toujours. |
| - | **efibootmgr** retourne | + | <code bash> |
| + | set prefix=(hd1, | ||
| + | set root=(md/ | ||
| + | |||
| + | insmod normal | ||
| + | normal | ||
| + | |||
| + | insmod linux | ||
| + | linux /vmlinuz root=/ | ||
| + | initrd / | ||
| + | |||
| + | boot | ||
| + | </ | ||
| + | |||
| + | Après MAJ firmware et une fois le système démarré, | ||
| < | < | ||
| Ligne 75: | Ligne 89: | ||
| The only problem then is that the firmware will almost certainly favour Windows' | The only problem then is that the firmware will almost certainly favour Windows' | ||
| </ | </ | ||
| + | |||
| + | <code bash> | ||
| + | grub-install --removable /dev/sda --target=x86_64-efi --efi-directory=/ | ||
| + | grub-install --removable /dev/sdb --target=x86_64-efi --efi-directory=/ | ||
| + | |||
| + | efibootmgr --create --disk /dev/sda --part 1 --label debian1 --loader ' | ||
| + | </ | ||
| + | |||
| + | Les entrées crées via efibootmgr n' | ||
| + | |||
| + | <code bash> | ||
| + | efibootmgr --create --disk /dev/sda --part 1 --label debian1 --loader ' | ||
| + | </ | ||
| + | |||
| + | < | ||
| + | Après redémarrage les entrées du boot uefi sont modifiées par le BIOS. | ||
| + | </ | ||
| + | |||
| + | Avant redémarrage : | ||
| + | |||
| + | Après redémarrage : | ||
| + | |||
| ===== Références ===== | ===== Références ===== | ||
| Ligne 82: | Ligne 118: | ||
| * [[https:// | * [[https:// | ||
| * https:// | * https:// | ||
| + | |||