GNU bug report logs - #55488
GDM, GNOME: Can't start desktop session after upgrade

Previous Next

Package: guix;

Reported by: Luis Felipe <luis.felipe.la <at> protonmail.com>

Date: Tue, 17 May 2022 18:51:02 UTC

Severity: normal

Done: Luis Felipe <luis.felipe.la <at> protonmail.com>

Bug is archived. No further changes may be made.

Full log


Message #11 received at 55488 <at> debbugs.gnu.org (full text, mbox):

From: Luis Felipe <luis.felipe.la <at> protonmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 55488 <at> debbugs.gnu.org
Subject: Re: bug#55488: GDM, GNOME: Can't start desktop session after upgrade
Date: Wed, 18 May 2022 14:33:45 +0000
[Message part 1 (text/plain, inline)]
Hi Ludo,

On Wednesday, May 18th, 2022 at 8:44 AM, Ludovic Courtès <ludo <at> gnu.org> wrote:

> This is a config that uses Xorg, not Wayland, right?

Right.

> > In the real machine, only a black screen appears. After hours, there is no change. There is no mouse pointer or any indication that the desktop has loaded.
> > 

> > In the virtual machine, you see a black screen and the mouse pointer appearing sometimes and then disappearing. After a minute, you are taken back to the log in screen, which now behaves erratically: when you click on your user to log in again, it shows the username input box, and, once you move the pointer to enter your username, the view is changed back to the list of users. The same happens everytime you try to log in again.
> 

> 

> What does ‘sudo herd status’ show at that point?

~~~
Iniciado (Started):
 + avahi-daemon
 + console-font-tty1
 + console-font-tty2
 + console-font-tty3
 + console-font-tty4
 + console-font-tty5
 + console-font-tty6
 + dbus-system
 + elogind
 + file-system-/boot/efi
 + file-system-/dev/pts
 + file-system-/dev/shm
 + file-system-/gnu/store
 + file-system-/run/systemd
 + file-system-/run/user
 + file-system-/sys/firmware/efi/efivars
 + file-system-/sys/fs/cgroup
 + file-system-/sys/fs/cgroup/blkio
 + file-system-/sys/fs/cgroup/cpu
 + file-system-/sys/fs/cgroup/cpuacct
 + file-system-/sys/fs/cgroup/cpuset
 + file-system-/sys/fs/cgroup/devices
 + file-system-/sys/fs/cgroup/elogind
 + file-system-/sys/fs/cgroup/freezer
 + file-system-/sys/fs/cgroup/memory
 + file-system-/sys/fs/cgroup/perf_event
 + file-system-/sys/fs/cgroup/pids
 + file-system-/sys/kernel/debug
 + file-system-/var/cache/fontconfig
 + file-systems
 + guix-daemon
 + loopback
 + mcron
 + networking
 + nscd
 + ntpd
 + root
 + root-file-system
 + swap-/dev/sda2
 + syslogd
 + term-tty1
 + term-tty2
 + term-tty3
 + term-tty4
 + term-tty5
 + term-tty6
 + udev
 + upower-daemon
 + urandom-seed
 + user-file-systems
 + user-processes
 + virtual-terminal
 + wpa-supplicant
 + xorg-server
Detenido (Stopped):
 - term-console
Ejecución única (one-shot):
 * host-name
 * sysctl
 * user-homes
~~~


> I wonder if it might be https://issues.guix.gnu.org/55488.

Did you mean another bug number? 55488 is the one I reported :)


> If not, could you provide a minimal config that reproduces the problem?

Here's one:

~~~
(use-modules (gnu)
             (gnu packages dns))
(use-service-modules admin desktop networking ssh xorg)


;;; CONSTANTS
;;; =========

(define DESKTOP_USER_GROUPS
  (list "wheel"
        "netdev"
        "audio"
        "video"
        "cdrom"
        "kvm"))



;;; SYSTEM CONFIGURATION
;;; ====================

(operating-system
  (locale "es_CO.utf8")
  (timezone "America/Bogota")
  (keyboard-layout
   (keyboard-layout "latam" #:model "pc104" #:options '("ctrl:nocaps")))
  (kernel-arguments (list "quiet" "pci=noaer"))
  (bootloader
    (bootloader-configuration
      (bootloader grub-efi-bootloader)
      (targets (list "/boot/efi"))
      (keyboard-layout keyboard-layout)))
  (swap-devices
   (list (swap-space
          (target "/dev/sda2"))))
  (file-systems
    (cons* (file-system
             (mount-point "/")
             (device
               (uuid "3f651226-f53e-4944-8bf8-a0b8c28cfac5"
                     'ext4))
             (type "ext4"))
           (file-system
             (mount-point "/boot/efi")
             (device (uuid "A0CA-050E" 'fat32))
             (type "vfat"))
           %base-file-systems))
  (host-name "gnu")
  (users
   (cons*
    (user-account
     (name "someone")
     (comment "some person")
     (group "users")
     (home-directory "/home/someone")
     (supplementary-groups DESKTOP_USER_GROUPS)
     (password (crypt "InitialPassword!" "$6$abc")))
    %base-user-accounts))
  (packages
   (cons*
    ;; Locales (all locales).
    (specification->package "glibc-locales")
    ;; For HTTPS access.
    (specification->package "nss-certs")
    %base-packages))
  (services
   (cons*
    (service gnome-desktop-service-type)
    (set-xorg-configuration
     (xorg-configuration
      (keyboard-layout keyboard-layout)))
    %desktop-services)))
~~~
[publickey - luis.felipe.la@protonmail.com - 0x12DE1598.asc (application/pgp-keys, attachment)]
[signature.asc (application/pgp-signature, attachment)]

This bug report was last modified 3 years and 44 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.