Signed-off-by: Gwenhael Le Moine <gwenhael.le.moine@gmail.com>
This commit is contained in:
Gwenhael Le Moine 2024-03-26 21:46:57 +01:00
parent daeb859042
commit f1b0bc383f
No known key found for this signature in database
GPG key ID: FDFE3669426707A7

View file

@ -0,0 +1,25 @@
---
title: Recover UEFI's grub entry after updating BIOS
date: 2024-03-26 19:24:03
layout: post
lang: en
tags: []
draft: false
---
#+OPTIONS: toc:nil num:nil
#+LANGUAGE: en
Another BIOS update from my MSI B550-A Pro motherboard, another loss of all BIOS settings and boot entries…
Here's how I recovered this time as a Slackware bootable install USB-key wouldn't boot.
* Boot from a LiveSlak
* open a Konsole
* become root
#+begin_src shell
su -
#+end_src
* Re-create boot entry
#+begin_src shell
efibootmgr -c -g -d /dev/nvme0n1 -p 1 -w -L "Slackware" -l '\EFI\grub\grubx64.efi'
#+end_src