Ça dépend. Tu veux conserver l’installation Microsoft avec son ancienne partition EFI ou tu veux partir sur des bases neuves ?
(En passant, Le souci ø , sans S au singulier.)
$TELLE que quoi ?
Dans cette phrase, $TELLE=partition EFI de windows 8
-> Faut-il marquer la partition EFI de windows 8 comme partition EFI de windows 8 ? Non, elle est déjà marquée.
wiki.debian.org/EFIStub
[quote]
Since Wheezy, Debian kernel on x86 contain their own BootLoader called EFI stub. Therefore it is possible to load the kernel directly, without any additional bootloader (like grub-efi).
Copy the files
The UEFI firmware is only able to load files from the EFI partition (usually FAT). If you use a standard UEFI installation of Debian, you should copy the kernel and the initrd to /boot/efi. The best way to keep it up to date is to place a script in /etc/kernel/postinst.d/zz-update-efistub:
1 #!/bin/sh
2 cp -u /vmlinuz /initrd /boot/efi/EFI/debian/
Make it executable and launch it manually:
chmod +x /etc/kernel/postinst.d/zz-update-efistub
./etc/kernel/postinst.d/zz-update-efistub
Add the boot entry
Replace the UUID with the one of your / partition, see the efibootmgr manpage if you EFI partition is not /dev/sda1:
efibootmgr -c -g -L "Debian (EFI stub)" -l '\EFI\debian\vmlinuz' -u root=UUID=$UUID ro quiet rootfstype=ext4 add_efi_memmap initrd=\\EFI\\debian\\initrd.img[/quote]
Si Microsoft se démarre, on peut penser que la partition EFI est encore opérationnelle.
the EFI partition (usually FAT) La partition EFI est habituellement une partition FAT.
Voir
parted
pour repérer la partition EFI.