FerAeroespacial
(usa Debian)
Enviado em 11/01/2016 - 22:35h
Arthur_Hoch escreveu:
FerAeroespacial escreveu:
Arthur_Hoch escreveu:
O que tem dentro deste arquivo? /etc/grub.d/40_custom?
#!/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.
Por que não coloca uma entrada para a partição /dev/sda2 aí dentro ?
Então, eu estava lendo sobre isso agora, mas não bem como fazer, porque tem um exemplo na Wiki mas eu não sei como eu devo fazer, o exemplo é esse:
#!/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 "HP / Microsoft Windows 8.1" {
echo "Loading HP / Microsoft Windows 8.1..."
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --no-floppy --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 763A-9CB6
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry "HP / Microsoft Control Center" {
echo "Loading HP / Microsoft Control Center..."
insmod part_gpt
insmod fat
insmod search_fs_uuid
insmod chain
search --fs-uuid --no-floppy --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 763A-9CB6
chainloader /EFI/HP/boot/bootmgfw.efi
}
menuentry "System shutdown" {
echo "System shutting down..."
halt
}
menuentry "System restart" {
echo "System rebooting..."
reboot
}
onde hd0,gpt2 e ahci0,gpt2 dizem respeito a /dev/sda2
Como sugere uma entrada?