unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
From: Luis Felipe via Bug reports for GNU Guix <bug-guix@gnu.org>
To: "Ludovic Courtès" <ludo@gnu.org>
Cc: 55488@debbugs.gnu.org
Subject: bug#55488: GDM, GNOME: Can't start desktop session after upgrade
Date: Wed, 18 May 2022 14:33:45 +0000	[thread overview]
Message-ID: <PJAAn2A1jctnhINfTc2LnA55WhC2uGZOj0txj9UY6RlK0PXL16sBbqNTHK6nFPLVdJeGjjEvS9mq7mC5HC0oN4DnXkAYDXb6olwvgusQQ3Q=@protonmail.com> (raw)
In-Reply-To: <87k0aj44dd.fsf@gnu.org>


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

Hi Ludo,

On Wednesday, May 18th, 2022 at 8:44 AM, Ludovic Courtès <ludo@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)))
~~~

[-- Attachment #1.2: publickey - luis.felipe.la@protonmail.com - 0x12DE1598.asc --]
[-- Type: application/pgp-keys, Size: 1815 bytes --]

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

  reply	other threads:[~2022-05-18 14:34 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-17 18:49 bug#55488: GDM, GNOME: Can't start desktop session after upgrade Luis Felipe via Bug reports for GNU Guix
2022-05-18  8:44 ` Ludovic Courtès
2022-05-18 14:33   ` Luis Felipe via Bug reports for GNU Guix [this message]
2022-05-31  9:29     ` Ludovic Courtès
2022-05-31 20:50       ` Luis Felipe via Bug reports for GNU Guix
2022-06-01 19:55         ` Ludovic Courtès
2022-06-02 19:44           ` Luis Felipe via Bug reports for GNU Guix
2022-06-02 21:02             ` Ludovic Courtès
2022-06-02 23:51               ` bug#55707: " Luis Felipe via Bug reports for GNU Guix
2022-06-03 22:54                 ` Ludovic Courtès
2022-06-04 17:07                   ` Ludovic Courtès
2022-06-04 17:35                     ` bug#55488: bug#55707: syslogd logging kernel messages slowly? Ludovic Courtès
2022-06-04 19:30                     ` Ludovic Courtès
2022-06-05 15:25                       ` Luis Felipe via Bug reports for GNU Guix
2022-06-06 10:00                         ` Ludovic Courtès
2022-06-06 16:31                           ` Luis Felipe via Bug reports for GNU Guix
2022-06-06 20:46                             ` Ludovic Courtès
2022-06-05 13:19                   ` bug#55488: GDM, GNOME: Can't start desktop session after upgrade Luis Felipe via Bug reports for GNU Guix
2022-06-06 18:11                     ` Luis Felipe via Bug reports for GNU Guix
2022-06-06 20:50                       ` bug#55488: bug#55707: syslogd logging kernel messages slowly? Ludovic Courtès
2022-06-06 23:09 ` bug#55488: GDM, GNOME: Can't start desktop session after upgrade Luis Felipe via Bug reports for GNU Guix
2022-06-06 23:11 ` Luis Felipe via Bug reports for GNU Guix

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

  List information: https://guix.gnu.org/

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

  git send-email \
    --in-reply-to='PJAAn2A1jctnhINfTc2LnA55WhC2uGZOj0txj9UY6RlK0PXL16sBbqNTHK6nFPLVdJeGjjEvS9mq7mC5HC0oN4DnXkAYDXb6olwvgusQQ3Q=@protonmail.com' \
    --to=bug-guix@gnu.org \
    --cc=55488@debbugs.gnu.org \
    --cc=ludo@gnu.org \
    --cc=luis.felipe.la@protonmail.com \
    /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 public inbox

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

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