all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Kete Foy <kete@ninthfloor.org>
To: Alex Kost <alezost@gmail.com>
Cc: help-guix@gnu.org
Subject: Re: Not booting
Date: Wed, 22 Jun 2016 15:41:00 +0000	[thread overview]
Message-ID: <b4a96b25-75a7-8e40-f8a7-5fa6c2e4f522@ninthfloor.org> (raw)
In-Reply-To: <87oa6tty7j.fsf@gmail.com>


[-- Attachment #1.1.1: Type: text/plain, Size: 548 bytes --]

Alex Kost:
> Perhaps the bootloader device you wrote does not exist.  Could you paste
> your config?  Also did you maybe use "--no-grub" option (for "guix
> system") and configured your grub manually?
> 
Thanks, the config is attached.
I used lsblk to make sure the device label was correct.
/dev/sda was the disc used in parted.
I did not use --no-grub, but I am willing to try.
I used --fallback because wicd wasn't available.
-- 
https://emailselfdefense.fsf.org
Key fingerprint = D7E9 5431 9C95 097F C314  C2A2 DD8C 15BD 0168 5E3A

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1.1.2: config.scm --]
[-- Type: text/x-scheme; name="config.scm", Size: 1632 bytes --]

;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce.

(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules certs)

(operating-system
  (host-name "kantelope")
  (timezone "America/New_York")
  (locale "en_US.UTF-8")

  ;; Assuming /dev/sdX is the target hard disk, and "my-root"
  ;; is the label of the target root file system.
  (bootloader (grub-configuration (device "/dev/sda")))
  (file-systems (cons (file-system
                        (device "rootfs")
                        (title 'label)
                        (mount-point "/")
                        (type "ext4"))
                      %base-file-systems))

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

  ;; This is where we specify system-wide packages.
  (packages (cons* nss-certs         ;for HTTPS access
                   %base-packages))

  ;; Add GNOME and/or Xfce---we can choose at the log-in
  ;; screen with F1.  Use the "desktop" services, which
  ;; include the X11 log-in service, networking with Wicd,
  ;; and more.
  (services (cons* (gnome-desktop-service)
                   (xfce-desktop-service)
                   %desktop-services))

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

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 801 bytes --]

  reply	other threads:[~2016-06-22 15:42 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-06-21 20:44 Not booting Kete Foy
2016-06-22  8:38 ` Alex Kost
2016-06-22 15:41   ` Kete Foy [this message]
2016-06-23  7:42     ` Alex Kost
2016-06-23 11:27       ` Kete Foy
2016-06-23 12:47         ` Kete Foy
2016-06-23 13:36           ` Ludovic Courtès
2016-06-23 14:08             ` Mark H Weaver
2016-06-23 14:40               ` Ludovic Courtès
2016-07-16 20:03           ` Chris Marusich
2016-07-17 13:23             ` Kete Foy

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=b4a96b25-75a7-8e40-f8a7-5fa6c2e4f522@ninthfloor.org \
    --to=kete@ninthfloor.org \
    --cc=alezost@gmail.com \
    --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.