all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: 荒井吉則 <kumagusu08@gmail.com>
To: help-guix@gnu.org
Subject: No login prompt and no display manager.
Date: Mon, 7 Jan 2019 21:52:21 +0900	[thread overview]
Message-ID: <CAH2wgjgruq_n4jD3wUgevgiay-FTi3ouWq1ZzQ9TkT-Pb1XndA@mail.gmail.com> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 181 bytes --]

I did guix system reconfigure config.scm then reboot.
No login prompt and no display manager.

I installed GuixSD again from DVD using same config.scm then reboot. But
same result.

[-- Attachment #1.2: Type: text/html, Size: 252 bytes --]

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

;; This is an operating system configuration template
;; for a "desktop" setup without full-blown desktop
;; environments.

(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules bootloaders certs ratpoison suckless wm)

(operating-system
  (host-name "WaraToNora")
  (timezone "Asia/Tokyo")
  (locale "ja_JP.utf8")

  ;; Use the UEFI variant of GRUB with the EFI System
  ;; Partition mounted on /boot/efi.
  (bootloader (bootloader-configuration
                (bootloader grub-bootloader)
                (target "/dev/sda")
                (menu-entries 
                  (list (menu-entry (label "Wara GNU/Linux lfs-8.3")
                              (linux "(hd0,3)/boot/vmlinuz-4.19.9-libre-wara-8.3")
                              (linux-arguments '("root=/dev/sda3 ro"))
                              (initrd ""))
                        (menu-entry (label "Nora GNU/Linux lfs-8.3") 
                              (linux "(hd0,4)/boot/vmlinuz-4.18.5-lfs-8.3") 
                              (linux-arguments '("root=/dev/sda4 ro"))
                              (initrd ""))))))

  ;; Assume the target root file system is labelled "my-root",
  ;; and the EFI System Partition has UUID 1234-ABCD.
  (file-systems (cons* (file-system
                         (device (file-system-label "my-root"))
                         (mount-point "/")
                         (type "ext4"))
                       (file-system
                         (device "/dev/sda2")
                         (mount-point "swap")
                         (type "swap"))
                       %base-file-systems))

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

  ;; Add a bunch of window managers; we can choose one at
  ;; the log-in screen with F1.
  (packages (cons* cwm fluxbox                    ;window managers
                   nss-certs                      ;for HTTPS access
                   %base-packages))

  ;; Use the "desktop" services, which include the X11
  ;; log-in service, networking with NetworkManager, and more.
  (services %desktop-services)

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

             reply	other threads:[~2019-01-07 12:52 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-07 12:52 荒井吉則 [this message]
2019-01-07 14:27 ` No login prompt and no display manager Ricardo Wurmus
2019-01-07 21:13   ` 荒井吉則
2019-01-07 21:35     ` Ricardo Wurmus
2019-01-07 23:03       ` 荒井吉則
2019-01-08  6:41         ` 荒井吉則
2019-01-31 14:39           ` swedebugia
2019-02-02  0:00             ` Yoshinori Arai

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=CAH2wgjgruq_n4jD3wUgevgiay-FTi3ouWq1ZzQ9TkT-Pb1XndA@mail.gmail.com \
    --to=kumagusu08@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.