Ubuntu 20.04 inicializa no terminal grub após atualizações, incapaz de corrigir permanentemente com update-grub

Ubuntu 20.04 inicializa no terminal grub após atualizações, incapaz de corrigir permanentemente com update-grub

Após uma atualização, o Ubuntu 20.04 inicializa no terminal grub. Consegui recuperar o login seguindo a solução abaixo, mas cada vez que reinicio recebo o terminal grub.

Eu segui as instruções deste vídeohttps://youtu.be/r7meKJsjqfYpara me colocar de volta em funcionamento, mas as últimas etapas update-grub(eu também tentei grub-mkconfig /boot/grub/grub.cfg) não resolvem o problema permanentemente. Eu recebo o terminal grub a cada reinicialização.

Minha solução até agora...

ls (hd1,gpt2)/ls (hd0,gpt2) <-----(this changes with/without external drive *)
set root=(hd1,gpt2)
linux /boot/vmlinuz root=/dev/sda2
initrd /boot/initrd.img
boot

(Tentei configurar linux /boot/vmlinuz-5.4.0-40-generic e linux /boot/vmlinuz-5.4.0-42-generic e usar os respectivos arquivos IMG)

Após reiniciar, abra o terminal. Eu tentei os dois....

sudo update-grub

e

grub-mkconfig /boot/grub/grub.cfg

quais saídas...

Sourcing file `/etc/default/grub'
Sourcing file `/etc/default/grub.d/init-select.cfg'
Generating grub configuration file ...
Found linux image: /boot/vmlinuz-5.4.0-42-generic
Found initrd image: /boot/initrd.img-5.4.0-42-generic
Found linux image: /boot/vmlinuz-5.4.0-40-generic
Found initrd image: /boot/initrd.img-5.4.0-40-generic
Adding boot menu entry for UEFI Firmware Settings
done

Preciso fazer mais alguma coisa? (Sou novo no Linux, então a documentação e outras soluções parecem bastante detalhadas e não descrevem realmente o meu problema - pelo menos sinto que estou perto de uma solução e perdendo o óbvio)

Aqui estão meus arquivos grub

cat /etc/default/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_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""

# 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-pc only)
#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"

cat /etc/default/grub.d/init-select.cfg

# Work around a bug in the obsolete init-select package which broke
# grub-mkconfig when init-select was removed but not purged.  This file does
# nothing and will be removed in a later release.
#
# See:
#   https://bugs.debian.org/858528
#   https://bugs.debian.org/863801

lsb_release -a

No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 20.04.1 LTS
Release:    20.04
Codename:   focal
  • Informação adicional...

Se eu inicializar com e sem minha unidade externa quando estou lsno terminal grub, vejo rótulos diferentes para a unidade raiz.

(proc) (hd0) (hd0,msdos3) (hd0,msdos2) (hd0,msdos1) (hd1) (hd1,gpt2) (hd1,gpt1) (cd0)

Sem unidade externa

(proc) (hd0) (hd0,gpt2) (hd0,gpt1) (cd0)

Responder1

Você tem uma unidade MBR e uma unidade GPT? UEFI deve ser gpt.

Vamos ver os detalhes, use a versão ppa com seu instalador ao vivo (2ª opção) ou qualquer instalação funcional, não o ISO de reparo de inicialização mais antigo: copie e cole o link pastebin para o relatório de resumo de informações de inicialização (não publique o relatório), não execute a correção automática até ser revisada.

https://help.ubuntu.com/community/Boot-Repair

https://sourceforge.net/p/boot-repair/home/Home/

Se for UEFI, você não deve ter o carregador de inicialização no MBR, pois todos os arquivos de inicialização estão na partição do sistema ESP - efi. O MBR pode ser usado para inicialização de BIOS antigo, mas não deve ser usado se for sistema UEFI.

O MBR existe com o gpt apenas para uma entrada de partição dizendo que a unidade é gpt, portanto, as ferramentas de partição antigas não tentam reparticionar a unidade para o MBR e danificá-la.

Responder2

Eu tentaria recriar o initramfs com:

sudo update-initramfs -c -k 5.4.0-42-generic

Seguido por sudo update-grube uma reinicialização.

informação relacionada