bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#67218: Reconfiguring from chroot to fix Grub/boot partition fails be


From: Oleg Pykhalov
Subject: bug#67218: Reconfiguring from chroot to fix Grub/boot partition fails because D-bus crashes
Date: Fri, 17 Nov 2023 07:38:17 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)

Hi Mathieu,

Mathieu <matf@disr.it> writes:

> Dear Guix users,
>
> For some reason, still to be understood, my EFI partition is no longer
> detected at boot and I cannot boot my existing Guix System. I could confirm
> that the Guix partition (encrypted) is fine, but my BIOS won't detect any
> bootable partition. Turns out my `/dev/nvme0n1p1` partition only contains a
> single file: `EFI/Guix/grubx64.efi`.

It could be broken 'nvram' of a motherboard. Because of that happened to
me on a single UEFI motherboard, personally I try not to use it at all,
but use all available disks instead.

With current Guix I'm not sure it is supported by the distribution. If
anyone would like to implement it in the upstream, here is my
configuration which I use [1] hopefully 'nvram' is not touched at all on
'guix system reconfigure' and survive a disk failure.

[…]

> This looks like a bug since I did everything the guide indicates. Can anyone
> reproduce it and confirm that chrooting into an existing Guix installation to
> reconfigure and rescue the system does not work? Is there something missing in
> the how-to to prevent the D-bus crash? Would there be another way to save my
> system, i.e., reinstalling Guix from scratch on another SSD and then `dd` the
> LUKS partition from the broken SSD onto the root partition of the new one?

I could recommend to delete everything not required for a boot from the
configuration file and try to reconfigure again (warning that you will
probably get permission errors after adding those services again which
will require to 'chown' their state directories).

Another way to recover is reinstalling Guix from scratch, but it's
possible to do this without reformating or using another drive. Just
move every directory in your '/' to '/old-system' and proced regular
installation.


[1]: guix 1f734a6
       repository URL: https://git.savannah.gnu.org/git/guix.git
       branch: master
       commit: 1f734a6f0a7db5b0e12091a0c869c5c4810ac80e

Attachment: grub.scm
Description: grub uefi without nvram

config.scm:
--8<---------------cut here---------------start------------->8---
(operating-system
  ;; ...
  (bootloader (bootloader-configuration
                 (bootloader grub-efi-bootloader-removable)
                 (targets '("/boot1/efi"
                            "/boot2/efi"
                            "/boot3/efi"))))
  (file-systems (cons* (file-system
                         (device (file-system-label "boot1"))
                         (mount-point "/boot1/efi")
                         (type "vfat"))
                       (file-system
                         (device (file-system-label "boot2"))
                         (mount-point "/boot2/efi")
                         (type "vfat"))
                       (file-system
                         (device (file-system-label "boot3"))
                         (mount-point "/boot3/efi")
                         (type "vfat"))
                       ;; ...
                       %base-file-systems)))
--8<---------------cut here---------------end--------------->8---

/boot?/efi current state:
--8<---------------cut here---------------start------------->8---
oleg@guixsd ~$ find /boot?/efi -type f -exec ls -l {} \;
-rwxr-xr-x 1 root root 159744 May  8  2022 /boot1/efi/EFI/Guix/grubx64.efi
-rwxr-xr-x 1 root root 159744 Nov 16 04:28 /boot1/efi/EFI/BOOT/BOOTX64.EFI
-rwxr-xr-x 1 root root 159744 Mar 17  2022 /boot2/efi/EFI/Guix/grubx64.efi
-rwxr-xr-x 1 root root 159744 Nov 16 04:28 /boot2/efi/EFI/BOOT/BOOTX64.EFI
-rwxr-xr-x 1 root root 76 Feb  9  2020 '/boot2/efi/System Volume 
Information/IndexerVolumeGuid'
-rwxr-xr-x 1 root root 12 Feb  9  2020 '/boot2/efi/System Volume 
Information/WPSettings.dat'
-rwxr-xr-x 1 root root 129 Feb  9  2020 '/boot2/efi/$RECYCLE.BIN/desktop.ini'
-rwxr-xr-x 1 root root 159744 Nov 16 04:28 /boot3/efi/EFI/BOOT/BOOTX64.EFI
--8<---------------cut here---------------end--------------->8---

as you can see /boot?/efi/EFI/BOOT/BOOTX64.EFI is the thing needed for
boot, everything else probably a garbage.

mount points:
--8<---------------cut here---------------start------------->8---
oleg@guixsd ~$ findmnt  | grep efi
│ ├─/sys/firmware/efi/efivars   efivarfs                  efivarfs   rw,relatime
├─/boot1/efi                    /dev/sdc1                 vfat       
rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
├─/boot2/efi                    /dev/sda1                 vfat       
rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
├─/boot3/efi                    /dev/sdd1                 vfat       
rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro
--8<---------------cut here---------------end--------------->8---

'/boot/grub' is not configured anywhere, but it's placed on a '/' mount
point which mounted from a raid disk array.

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]