unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
* No login prompt and no display manager.
@ 2019-01-07 12:52 荒井吉則
  2019-01-07 14:27 ` Ricardo Wurmus
  0 siblings, 1 reply; 8+ messages in thread
From: 荒井吉則 @ 2019-01-07 12:52 UTC (permalink / raw)
  To: help-guix


[-- 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))

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: No login prompt and no display manager.
  2019-01-07 12:52 No login prompt and no display manager 荒井吉則
@ 2019-01-07 14:27 ` Ricardo Wurmus
  2019-01-07 21:13   ` 荒井吉則
  0 siblings, 1 reply; 8+ messages in thread
From: Ricardo Wurmus @ 2019-01-07 14:27 UTC (permalink / raw)
  To: 荒井吉則; +Cc: help-guix


荒井吉則 <kumagusu08@gmail.com> writes:

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

You have (services %desktop-services) in your configuration file, which
includes the display manager slim, which should start automatically.
You should also have login prompts on the other TTYs (use
Ctrl-Alt-F1/2/3/4 to access them).

Do you see anything at all there?

-- 
Ricardo

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: No login prompt and no display manager.
  2019-01-07 14:27 ` Ricardo Wurmus
@ 2019-01-07 21:13   ` 荒井吉則
  2019-01-07 21:35     ` Ricardo Wurmus
  0 siblings, 1 reply; 8+ messages in thread
From: 荒井吉則 @ 2019-01-07 21:13 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: help-guix

[-- Attachment #1: Type: text/plain, Size: 655 bytes --]

No, nothing.

I confirmed slim was installed but not started and  I couldn't change TTY
by Ctrl-Alt-F1/2/3/4.

2019年1月7日(月) 23:28 Ricardo Wurmus <rekado@elephly.net>:

>
> 荒井吉則 <kumagusu08@gmail.com> writes:
>
> > I did guix system reconfigure config.scm then reboot.
> > No login prompt and no display manager.
>
> You have (services %desktop-services) in your configuration file, which
> includes the display manager slim, which should start automatically.
> You should also have login prompts on the other TTYs (use
> Ctrl-Alt-F1/2/3/4 to access them).
>
> Do you see anything at all there?
>
> --
> Ricardo
>
>

[-- Attachment #2: Type: text/html, Size: 1051 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: No login prompt and no display manager.
  2019-01-07 21:13   ` 荒井吉則
@ 2019-01-07 21:35     ` Ricardo Wurmus
  2019-01-07 23:03       ` 荒井吉則
  0 siblings, 1 reply; 8+ messages in thread
From: Ricardo Wurmus @ 2019-01-07 21:35 UTC (permalink / raw)
  To: 荒井吉則; +Cc: help-guix


荒井吉則 <kumagusu08@gmail.com> writes:

> No, nothing.
>
> I confirmed slim was installed but not started and  I couldn't change TTY
> by Ctrl-Alt-F1/2/3/4.

Do you see anything at all when Linux-libre is booting?  There should be
messages on TTY 1.

-- 
Ricardo

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: No login prompt and no display manager.
  2019-01-07 21:35     ` Ricardo Wurmus
@ 2019-01-07 23:03       ` 荒井吉則
  2019-01-08  6:41         ` 荒井吉則
  0 siblings, 1 reply; 8+ messages in thread
From: 荒井吉則 @ 2019-01-07 23:03 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: help-guix

[-- Attachment #1: Type: text/plain, Size: 677 bytes --]

Linux-libre was booting but shepherd did not start at first then I
reinstalled guixsd with same config.scm, at this time I did mkfs.ext4 -L
my-root=/dev/sda1, then shepherd started and showed many failing messages,
no display slim login screen, couldn't change TTYs.

Excuse my broken English.

2019年1月8日(火) 6:35 Ricardo Wurmus <rekado@elephly.net>:

>
> 荒井吉則 <kumagusu08@gmail.com> writes:
>
> > No, nothing.
> >
> > I confirmed slim was installed but not started and  I couldn't change TTY
> > by Ctrl-Alt-F1/2/3/4.
>
> Do you see anything at all when Linux-libre is booting?  There should be
> messages on TTY 1.
>
> --
> Ricardo
>
>

[-- Attachment #2: Type: text/html, Size: 1067 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: No login prompt and no display manager.
  2019-01-07 23:03       ` 荒井吉則
@ 2019-01-08  6:41         ` 荒井吉則
  2019-01-31 14:39           ` swedebugia
  0 siblings, 1 reply; 8+ messages in thread
From: 荒井吉則 @ 2019-01-08  6:41 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: help-guix

[-- Attachment #1: Type: text/plain, Size: 1091 bytes --]

The cause is comment out and swap-devices is solution.
                     ;;(file-system
                       ;;  (device "/dev/sda2")
                       ;;  (mount-point "swap")
                       ;;  (type "swap"))
                       %base-file-systems))
  (swap-devices '("/dev/sda2"))

2019年1月8日(火) 8:03 荒井吉則 <kumagusu08@gmail.com>:

> Linux-libre was booting but shepherd did not start at first then I
> reinstalled guixsd with same config.scm, at this time I did mkfs.ext4 -L
> my-root=/dev/sda1, then shepherd started and showed many failing messages,
> no display slim login screen, couldn't change TTYs.
>
> Excuse my broken English.
>
> 2019年1月8日(火) 6:35 Ricardo Wurmus <rekado@elephly.net>:
>
>>
>> 荒井吉則 <kumagusu08@gmail.com> writes:
>>
>> > No, nothing.
>> >
>> > I confirmed slim was installed but not started and  I couldn't change
>> TTY
>> > by Ctrl-Alt-F1/2/3/4.
>>
>> Do you see anything at all when Linux-libre is booting?  There should be
>> messages on TTY 1.
>>
>> --
>> Ricardo
>>
>>

[-- Attachment #2: Type: text/html, Size: 1925 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: No login prompt and no display manager.
  2019-01-08  6:41         ` 荒井吉則
@ 2019-01-31 14:39           ` swedebugia
  2019-02-02  0:00             ` Yoshinori Arai
  0 siblings, 1 reply; 8+ messages in thread
From: swedebugia @ 2019-01-31 14:39 UTC (permalink / raw)
  To: help-guix

On 2019-01-08 07:41, 荒井吉則 wrote:
> The cause is comment out and swap-devices is solution.
>                       ;;(file-system
>                         ;;  (device "/dev/sda2")
>                         ;;  (mount-point "swap")
>                         ;;  (type "swap"))
>                         %base-file-systems))
>    (swap-devices '("/dev/sda2"))
Does this mean you solved the problem and that your swap-code above was 
the cause?

If yes, congratulations, I think you should report a bug with your 
findings so we can implement a check for this during reconfigure and 
point the user to defining swap properly.

-- 
Cheers Swedebugia

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: No login prompt and no display manager.
  2019-01-31 14:39           ` swedebugia
@ 2019-02-02  0:00             ` Yoshinori Arai
  0 siblings, 0 replies; 8+ messages in thread
From: Yoshinori Arai @ 2019-02-02  0:00 UTC (permalink / raw)
  To: swedebugia; +Cc: help-guix

On Thu, Jan 31, 2019 at 03:39:35PM +0100, swedebugia wrote:
> On 2019-01-08 07:41, 荒井吉則 wrote:
> > The cause is comment out and swap-devices is solution.
> >                       ;;(file-system
> >                         ;;  (device "/dev/sda2")
> >                         ;;  (mount-point "swap")
> >                         ;;  (type "swap"))
> >                         %base-file-systems))
> >    (swap-devices '("/dev/sda2"))
> Does this mean you solved the problem and that your swap-code above was the
> cause?
> 
> If yes, congratulations, I think you should report a bug with your findings
> so we can implement a check for this during reconfigure and point the user
> to defining swap properly.
> 
> -- 
> Cheers Swedebugia
> 

Hello,
(device "/dev/sda2") is cause of this issue.

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-02-02  0:00 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-07 12:52 No login prompt and no display manager 荒井吉則
2019-01-07 14:27 ` 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).