Her çalıştırdığımda boot-repair
, ana menüme çalışmayan 5 ekstra Windows önyükleme seçeneği ekler grub
. Sizin durumunuzda 11 ekstra giriş eklendi !
grub.cfg
sorunu gösterir
Sır /etc/grub/grub.cfg
dosyada bulunabilir :
### BEGIN /etc/grub.d/25_custom ###
menuentry "Windows UEFI bootmgfw.efi" {
search --fs-uuid --no-floppy --set=root D656-F2A8
chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry "Windows Boot UEFI loader" {
search --fs-uuid --no-floppy --set=root D656-F2A8
chainloader (${root})/EFI/Boot/bkpbootx64.efi
}
menuentry "EFI/ubuntu/fwupx64.efi" {
search --fs-uuid --no-floppy --set=root D656-F2A8
chainloader (${root})/EFI/ubuntu/fwupx64.efi
}
menuentry "Windows UEFI bootmgfw.efi sda1" {
search --fs-uuid --no-floppy --set=root 9478-B6E2
chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry "Windows Boot UEFI loader sda1" {
search --fs-uuid --no-floppy --set=root 9478-B6E2
chainloader (${root})/EFI/Boot/bkpbootx64.efi
### END /etc/grub.d/25_custom ###
### BEGIN /etc/grub.d/30_os-prober ###
menuentry 'Windows Boot Manager (on /dev/nvme0n1p2)' --class windows --class os $menuentry_id_option 'osprober-efi-D656-F2A8' {
savedefault
insmod part_gpt
insmod fat
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root D656-F2A8
else
search --no-floppy --fs-uuid --set=root D656-F2A8
fi
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry 'Windows Boot Manager (on /dev/sda1)' --class windows --class os $menuentry_id_option 'osprober-efi-9478-B6E2' {
savedefault
insmod part_gpt
insmod fat
set root='hd0,gpt1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt1 --hint-efi=hd0,gpt1 --hint-baremetal=ahci0,gpt1 9478-B6E2
else
search --no-floppy --fs-uuid --set=root 9478-B6E2
fi
chainloader /efi/Microsoft/Boot/bootmgfw.efi
}
### END /etc/grub.d/30_os-prober ###
Bu bölüm 30_os-prober
, grub
tutmak istediğiniz "iyi" Windows menü girişlerini içerir . Bölümü 25_custom
tarafından oluşturulan sahte girişleri içerir boot-repair
. Grub yapılandırma dosyasını düzenleyemezsiniz çünkü bir dahaki sefere update-grub
çalıştırıldığında üzerine yazılır .
Bölüm 25_custom
Boot Repair tarafından oluşturuldu
Sistemimde:
$ locate 25_custom
/boot/efi/boot-repair/log/20171111_224241/nvme0n1p5/25_custom
/boot/efi/boot-repair/log/20171208_030854/nvme0n1p5/25_custom
/etc/grub.d/25_custom
Ayarlanmış (ve çalışmıyor) ekstra Windows seçeneklerine bir göz atın:
$ cat /boot/efi/boot-repair/log/20171208_030854/nvme0n1p5/25_custom
#!/bin/sh
exec tail -n +3 $0
menuentry "Windows UEFI bootmgfw.efi" {
search --fs-uuid --no-floppy --set=root D656-F2A8
chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry "Windows Boot UEFI loader" {
search --fs-uuid --no-floppy --set=root D656-F2A8
chainloader (${root})/EFI/Boot/bkpbootx64.efi
}
menuentry "EFI/ubuntu/fwupx64.efi" {
search --fs-uuid --no-floppy --set=root D656-F2A8
chainloader (${root})/EFI/ubuntu/fwupx64.efi
}
menuentry "Windows UEFI bootmgfw.efi sda1" {
search --fs-uuid --no-floppy --set=root 9478-B6E2
chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry "Windows Boot UEFI loader sda1" {
search --fs-uuid --no-floppy --set=root 9478-B6E2
chainloader (${root})/EFI/Boot/bkpbootx64.efi
Bunlar hatalı girişler vardır boot-repair
oluşturulan /etc/grub.d/25_custom
sonradan içine derlendiğini \boot\grub\grub.cfg
.
Ters Önyükleme Onarımı'nın 25_custom
sudo -H gedit /etc/grub.d/25_custom
İlk üç satır dışındaki her şeyi kullanın ve silin:
#!/bin/sh
exec tail -n +3 $0
- Dosya artık metin içeren iki satır ve bir boş satır içeriyor.
- Dosya 'yı kaydet.
- Koş
sudo update-grub
.
- Yeniden Başlatma.
Artık menünüz artık çalışmayan beş sahte Windows menü girişi ile şişmiyor.
İçinde üç satır olup olmadığını tekrar kontrol edin 25_custom
Bu komutu çalıştırın ve 25_custom
üç satır olduğunu doğrulayın :
$ wc /etc/grub.d/25_custom
3 6 30
# ^ ^ ^
# | | +--- Number of characters
# | +----------- Number of words
# +------------------- Number of lines
#
Yorumları deşifre wc
(kelime sayısı) çıktısına ekledim .