Solved Almalinux 8 can't bootable, grub terminal show up.

Ohm J

Verified User
Joined
Aug 16, 2019
Messages
1,896
This is fresh install ISO and do first update.
Anyone encouter when updating via "dnf update" and reboot then it's not boot, "grub>" terminal show instead ?

So lucky this is just my test server 😅

it's be something like this
1745123671955.png


###To fixed this problem ###
#fresh install from ISO and execute these command
Code:
reboot # Ensure new installed from ISO should working fine.

dnf update grub2-common -y
grub2-install /dev/xvda #this command should return "no error"

reboot # Ensure new "grub2" should working fine.
 
Last edited:
I can recollect my own fresh installs from ISO, in certain cases they never booted by normal meanings. Wrong partitioning, missing bootloader, etc.

I am not sure what help you might want in this case. If it is a testing system you might either re-install and see whether the issue re-occurs, or troubleshoot the boot process typing booting commands manually.

this is fresh install from ISO, only 1 command execute "dnf update" and reboot.
 
Ahhhh, after spend times 24hr, now I can fixed this issued.

The issued happending when running VM on some cloud software, so "grub2-install {device}" can solved the problem after updated the new version of "grub2-common".

#fresh install from ISO and execute these command
Code:
reboot # Ensure new installed from ISO should working fine.

dnf update grub2-common -y
grub2-install /dev/xvda #this command should return "no error"

reboot # Ensure new "grub2" should working fine.
 
Back
Top