Pas de windows dans Grub

Bonjour à tous,
Je viens d’installer la dernière version de debian.
Windows était déjà installé dans une autre partition.
Grub ne détecte pas windows au démarrage.
os-prober est bien installé
GRUB_DISABLE_OS_PROBER est bien false
Du coup, je sèche un peu…
Quelqu’un pourrait me venir en aide ?
Merci !
David

Qu’affichent les commandes suivantes ?

os-prober
fdisk -l
ls /sys/firmware

os-prober :

/dev/sda1@/EFI/Microsoft/Boot/bootmgfw.efi:Windows Boot Manager:Windows:efi

fdisk -l :

*Disque /dev/sdb : 931,51 GiB, 1000204886016 octets, 1953525168 secteurs*
*Modèle de disque : HGST HTS721010A9*
*Unités : secteur de 1 × 512 = 512 octets*
*Taille de secteur (logique / physique) : 512 octets / 4096 octets*
*taille d'E/S (minimale / optimale) : 4096 octets / 4096 octets*
*Type d'étiquette de disque : gpt*
*Identifiant de disque : AED6203C-25D3-43D1-A312-2E3AD4632E5B*

*Périphérique Début        Fin   Secteurs Taille Type*
*/dev/sdb1     2048 1953523711 1953521664 931,5G Données de base Microsoft*


*Disque /dev/sda : 465,76 GiB, 500107862016 octets, 976773168 secteurs*
*Modèle de disque : WDC WDS500G2B0B-*
*Unités : secteur de 1 × 512 = 512 octets*
*Taille de secteur (logique / physique) : 512 octets / 512 octets*
*taille d'E/S (minimale / optimale) : 512 octets / 512 octets*
*Type d'étiquette de disque : gpt*
*Identifiant de disque : 3B7C1A48-B3A1-429C-86DA-47DF5920DB33*

*Périphérique     Début       Fin  Secteurs Taille Type*
*/dev/sda1         2048    206847    204800   100M Système EFI*
*/dev/sda2       206848    239615     32768    16M Réservé Microsoft*
*/dev/sda3       239616 487843839 487604224 232,5G Données de base Microsoft*
*/dev/sda4    487843840 536672255  48828416  23,3G Système de fichiers Linux*
*/dev/sda5    975448064 976769023   1320960   645M Environnement de récupération Windows*
*/dev/sda6    536672256 556204031  19531776   9,3G Système de fichiers Linux*
*/dev/sda7    556204032 558204927   2000896   977M Partition d'échange Linux*
*/dev/sda8    558204928 562110463   3905536   1,9G Système de fichiers Linux*
*/dev/sda9    562110464 975448063 413337600 197,1G Système de fichiers Linux*

Les entrées de la table de partitions ne sont pas dans l’ordre du disque.

ls /sys/firmware :

acpi  dmi  efi  memmap

os-prober détecte bien le gestionnaire d’amorçage EFI de Windows. Si GRUB_DISABLE_OS_PROBER=false dans /etc/default/grub, alors il n’y a pas de raison que update-grub ne l’ajoute pas au menu de GRUB. On peut voir le contenu du fichier /etc/default/grub et la sortie complète de update-grub ?

# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
#   info -f grub -n 'Simple configuration'

GRUB_DEFAULT=0
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet"
GRUB_CMDLINE_LINUX=""

# If your computer has multiple operating systems installed, then you
# probably want to run os-prober. However, if your computer is a host
# for guest OSes installed via LVM or raw disk devices, running
# os-prober can cause damage to those guest OSes as it mounts
# filesystems to look for things.
#GRUB_DISABLE_OS_PROBER=false

# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"

# Uncomment to disable graphical terminal
#GRUB_TERMINAL=console

# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480

# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true

# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"

# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
Generating grub configuration file ...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
Found linux image: /boot/vmlinuz-6.1.0-13-amd64
Found initrd image: /boot/initrd.img-6.1.0-13-amd64
Found linux image: /boot/vmlinuz-6.1.0-12-amd64
Found initrd image: /boot/initrd.img-6.1.0-12-amd64
Found linux image: /boot/vmlinuz-6.1.0-10-amd64
Found initrd image: /boot/initrd.img-6.1.0-10-amd64
Warning: os-prober will not be executed to detect other bootable partitions.
Systems on them will not be added to the GRUB boot configuration.
Check GRUB_DISABLE_OS_PROBER documentation entry.
Adding boot menu entry for UEFI Firmware Settings ...
done

La ligne est commentée.

Il faut que j’enlève le #, c’est ça ?

Oui, c’est ça.

Ça fonctionne !
Merci beaucoup :slight_smile: