Eu vi Inicialização dupla - Arco instalado e a entrada do windows desapareceu no grub e eu tenho o mesmo problema / similar. Eu tenho o Grub e ele mostra apenas a configuração da Debian e não o MS-Windows. Eu também tentei o seguinte, mas sem sucesso -
[$] sudo grub-install /dev/sda
[sudo] password for shirish:
Installing for i386-pc platform.
Installation finished. No error reported.
Então -
[$] sudo grub-mkconfig -o /boot/grub/grub.cfg
Generating grub configuration file ...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
D000001: cmpversions a='0:4.9.0-2-amd64' b='0:4.9.0-1-amd64' r=1
Found linux image: /boot/vmlinuz-4.9.0-2-amd64
Found initrd image: /boot/initrd.img-4.9.0-2-amd64
Found linux image: /boot/vmlinuz-4.9.0-1-amd64
Found initrd image: /boot/initrd.img-4.9.0-1-amd64
Found memtest86+ image: /boot/memtest86+.bin
Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin
Found GRUB Invaders image: /boot/invaders.exec
done
O acima me diz que não é capaz de encontrar a partição do MS-Windows.
Aqui está a saída de parted -l
-
l: ATA ST1000DM003-9YN1 (scsi)
Disk /dev/sda: 1000GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos
Disk Flags:
Number Start End Size Type File system Flags
1 32.3kB 52.4GB 52.4GB primary ntfs
2 52.4GB 1000GB 948GB extended lba
5 52.4GB 105GB 52.4GB logical ntfs
6 105GB 305GB 200GB logical ext4 boot
7 305GB 405GB 100GB logical ext4
8 405GB 995GB 590GB logical ext4
9 995GB 1000GB 5348MB logical linux-swap(v1)
Model: Seagate BUP Slim BK (scsi)
Disk /dev/sdb: 2000GB
Sector size (logical/physical): 512B/4096B
Partition Table: msdos
Disk Flags:
Number Start End Size Type File system Flags
1 1049kB 2000GB 2000GB primary ntfs
and then lsblk output -
[$] sudo lsblk -f
NAME FSTYPE LABEL UUID MOUNTPOINT
sda
├─sda1 ntfs WIN xxxxxxxxxxxxxxxxxxxx
├─sda2
├─sda5 ntfs Data xxxxxxxxxxxxxxxxxxxx
├─sda6 ext4 xxxxxxxxxxxxxxxxxxxx /
├─sda7 ext4 xxxxxxxxxxxxxxxxxxxx /home
├─sda8 ext4 xxxxxxxxxxxxxxxxxxxx/data
└─sda9 swap xxxxxxxxxxxxxxxxxxxx [SWAP]
sdb iso9660 ISOIMAGE 2015-06-04-16-30-00-00
└─sdb1 ntfs Seagate-Slim-Backup xxxxxxxxxxxxxxxxxxxx /media/shirish/Seagate-Slim-Backup
sr0
Eu não compartilhei informações do UUID. por questões de segurança e privacidade.
Meu /boot/grub/grub.cfg
não faz menção a nenhum MS-Windows
[$] cat
[$]
Como obtenho o MS-Windows novamente no menu?
Até tentei osprober mas não deu certo: (
[$] cat / usr / share / doc / os-prober / README
Eu até tentei os-prober
readme -
$ sudo cat /usr/share/doc/os-prober | grep
$
Eu até tentei o README, mas sem sucesso, a partir do README 0
Tests that require the partition to be mounted can be placed in
30 /usr/lib/os-probes/mounted/. These tests are passed the following
31 parameters: partition, mount point, filesystem.
$ sudo mount /dev/sda1 /usr/lib/os-probes/mounted/
e tentou coisas como -
[$] sudo os-prober partition /dev/sda1 /usr/lib/os-probes/mounted/
[sudo] password for shirish:
[$]
Então eu corri o os-prober como sudo -
[$] sudo os-prober
e depois correu -
┌─[shirish@debian] - [/boot] - [10119]
└─[$] sudo grub-mkconfig -o /boot/grub/grub.cfg
Generating grub configuration file ...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
Found linux image: /boot/vmlinuz-4.9.0-2-amd64
Found initrd image: /boot/initrd.img-4.9.0-2-amd64
Found memtest86+ image: /boot/memtest86+.bin
Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin
Found GRUB Invaders image: /boot/invaders.exec
done
Como pode ser visto, ele não encontra a partição do MS-Windows, está perdido para sempre ou pode haver uma saída?
Infelizmente teve que desmontar: (
[$] sudo umount /usr/lib/os-probes/mounted/
[$]
Sem ideias, parece que o bootloader do Windows é todo gravado, caso contrário, deveríamos ter alguma saída?
É assim que fica em /etc/grub.d/40_custom
após o compartilhamento do GAD3R -
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry "Windows" {
insmod part_msdos
insmod ntfs
set root='(hd0,msdos1)'
chainloader +1
}
Depois de colocar as sugestões do GAD3R, recebo -
[$] cat /etc/default/grub | grep GRUB_DISABLE_OS_PROBER
11 GRUB_DISABLE_OS_PROBER=false
e executando update-grub eu recebo o seguinte -
[$] sudo update-grub
Generating grub configuration file ...
Found background image: /usr/share/images/desktop-base/desktop-grub.png
Found linux image: /boot/vmlinuz-4.9.0-2-amd64
Found initrd image: /boot/initrd.img-4.9.0-2-amd64
Found memtest86+ image: /boot/memtest86+.bin
Found memtest86+ multiboot image: /boot/memtest86+_multiboot.bin
Found GRUB Invaders image: /boot/invaders.exec
Nenhuma mudança, então algo ainda está errado: (