all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Roel Janssen <roel@gnu.org>
To: help-guix <help-guix@gnu.org>
Subject: Cannot boot GuixSD after system reconfigure
Date: Thu, 21 Sep 2017 14:21:04 +0200	[thread overview]
Message-ID: <rbuo9q4cken.fsf@gnu.org> (raw)

[-- Attachment #1: config.scm --]
[-- Type: application/octet-stream, Size: 3053 bytes --]

(use-modules (gnu)
             (gnu system nss)
             (linux-nonfree)
             (gnu packages admin)
             (gnu packages base)
             (gnu packages bootloaders)
             (gnu packages firmware)
             (gnu packages fonts)
             (gnu packages linux)
             (gnu packages ncurses)
             (srfi srfi-1))

(use-service-modules networking ssh desktop xorg databases)
(use-package-modules certs gnome)

(operating-system
  (host-name "antelope")
  (hosts-file (plain-file "hosts" (string-append
                                   (local-host-aliases host-name)
                                   %facebook-host-aliases)))

  (timezone "Europe/Amsterdam")
  (locale "en_US.UTF-8")

  (kernel-arguments (list "modprobe.blacklist=pcspkr"
                          "quiet"
                          "rhgb"
                          "thinkpad_acpi.fan_control=1"))

  (bootloader (grub-configuration
           (grub grub-efi)
           (target "/dev/sda")
           (timeout 2)))

  (file-systems (cons*
                 (file-system
                   (device "/dev/sda2")
                   (mount-point "/boot")
                   (needed-for-boot? #t)
                   (type "ext4"))
                 (file-system
                   (device "/dev/sda1")
                   (mount-point "/boot/efi")
                   (needed-for-boot? #t)
                   (type "vfat"))
                 (file-system
                   (device "/dev/sda3")
                   (mount-point "/")
                   (options "ssd")
                   (type "btrfs"))
                 (file-system
                   (device "tmpfs")
                   (mount-point "/var/guix/temproots")
                   (type "tmpfs"))
                 (file-system
                   (device "tmpfs")
                   (mount-point "/tmp")
                   (type "tmpfs"))
                 %base-file-systems))

  (users (cons (user-account
                (name "roel")
                (password "")
                (comment "")
                (group "users")
                (supplementary-groups
                 '("wheel" "netdev" "kvm" "dialout" "audio" "video" "input"))
                (home-directory "/home/roel"))
               %base-user-accounts))

  (kernel linux-nonfree)
  (firmware (cons* iwlwifi-firmware-non-free ath9k-htc-firmware %base-packages))

  ;; This is where we specify system-wide packages.
  (packages (cons* nss-certs          ; for HTTPS access
                   ncurses            ; for the clear command
                   font-liberation
                   btrfs-progs
                   gnome-keyring
                   %base-packages))

  ;; Add GNOME. Use the "desktop" services, which include the X11 log-in
  ;; service, networking with NetworkManager, and more.
  (services (cons*
             (gnome-desktop-service)
             (rngd-service)
             %desktop-services))

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss))

[-- Attachment #2: Type: text/plain, Size: 462 bytes --]

Dear Guix,

I 'guix pull'ed commit 228a398 and ran:
  guix system reconfigure /etc/config.scm

It looks like GRUB cannot find my root partition (/dev/sda3).  So, I
suspect that something has changed regarding specifying the partitions (UUIDs?).

I attached 'config.scm'.

Now, the hardest part.. How can I recover?  It doesn't boot the older
generations either, so I now use a Fedora live USB.

Any pointers are appreciated.

Thanks!

Kind regards,
Roel Janssen

             reply	other threads:[~2017-09-21 12:21 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-21 12:21 Roel Janssen [this message]
2017-09-21 19:04 ` Cannot boot GuixSD after system reconfigure Roel Janssen
2017-09-21 20:28   ` Ricardo Wurmus
2017-09-21 22:12   ` Ludovic Courtès
2017-09-22  0:24     ` bug#28445: " Roel Janssen
2017-09-22 14:03       ` Ludovic Courtès
2017-09-22 14:03       ` Ludovic Courtès
2017-09-22 14:23         ` bug#28445: " Danny Milosavljevic
2017-09-22 16:41           ` Ludovic Courtès
2017-09-22 16:41           ` Ludovic Courtès
2017-09-22 19:53             ` Roel Janssen
2017-09-25  7:33               ` bug#28445: " Ludovic Courtès
2017-09-25  7:33               ` Ludovic Courtès
2017-09-26 19:24                 ` bug#28445: " Roel Janssen
2017-09-26  2:27                   ` Danny Milosavljevic
2017-09-26  2:27                   ` Danny Milosavljevic
2017-09-22 19:53             ` bug#28445: " Roel Janssen
2017-09-21 22:12   ` Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=rbuo9q4cken.fsf@gnu.org \
    --to=roel@gnu.org \
    --cc=help-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.