From mboxrd@z Thu Jan 1 00:00:00 1970 From: o.rojon@posteo.net Subject: bug#39527: Cannot log into LXQt DE Date: Sun, 09 Feb 2020 13:11:19 +0100 Message-ID: <3423de52ee9dfc476d967b6ce022795a@posteo.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:46374) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j0lRV-0000MS-74 for bug-guix@gnu.org; Sun, 09 Feb 2020 07:12:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j0lRT-00047b-7I for bug-guix@gnu.org; Sun, 09 Feb 2020 07:12:05 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:46194) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1j0lRR-00047G-Vm for bug-guix@gnu.org; Sun, 09 Feb 2020 07:12:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1j0lRR-0007LQ-Rj for bug-guix@gnu.org; Sun, 09 Feb 2020 07:12:01 -0500 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:46298) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1j0lQq-0000Lv-RB for bug-guix@gnu.org; Sun, 09 Feb 2020 07:11:26 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1j0lQo-0003bc-Te for bug-guix@gnu.org; Sun, 09 Feb 2020 07:11:24 -0500 Received: from mout01.posteo.de ([185.67.36.65]:41998) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1j0lQo-0003aZ-C3 for bug-guix@gnu.org; Sun, 09 Feb 2020 07:11:22 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 9D1F1160060 for ; Sun, 9 Feb 2020 13:11:19 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 48FnvC1BdYz6tm7 for ; Sun, 9 Feb 2020 13:11:19 +0100 (CET) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane-mx.org@gnu.org Sender: "bug-Guix" To: 39527@debbugs.gnu.org Hello everyone, as the title says, I am (no longer) able to log into the LXQt DE. When I=20 first installed it system-wide, I was able to log in. Later, I deleted=20 it from my os-config and reconfigured. Later again, I re-added it to my=20 os config and reconfigured. Now I have tried a couple of this to deal=20 with this: 1) I deleted previous system and profile generations. I used `guix gc`=20 to garbage collect. Then I used `sudo guix system reconfigure`. At this=20 point in time, I only had the (meta-)package "lxqt" in my os config=20 file. 2) I added about every package with a "lxqt"-prefix to the os config=20 file and essentially repeated the steps mentioned in 1). I am not entire certain which informations you will need in order to be=20 able to help me. But I guess two things I can easily provide are my=20 system configuration and a log of the reconfigure process - the latter=20 because during the last reconfigure's, I noticed some things I would at=20 first sight classify as anomalies (lines starting with "WARNING"). I=20 hope that the german sprinkles in between the log are not all too=20 confusing ;-) If you need anything else, please tell me. ######### SYSTEM CONFIGURATION ######### use-modules (gnu)) (use-service-modules desktop networking ssh xorg) (use-package-modules disk llvm linux ncdu xorg less gnome fonts=20 display-managers lxqt syncthing version-control emacs emacs-xyz tex cups video gstreamer gnuzilla=20 web-browsers messaging mail rsync suckless pdf curl databases hardware) (operating-system (locale "de_DE.utf8") (timezone "Europe/Berlin") ;; (keyboard-layout (keyboard-layout "de" "latin1 nodeadkeys")) (keyboard-layout (keyboard-layout "de")) (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sdb") (keyboard-layout keyboard-layout))) (swap-devices (list "/dev/sdb3")) (file-systems (cons* (file-system (mount-point "/home") (device (uuid "8ee0b983-53f0-4e18-852f-8cd4424a6c6f" 'btrfs)) (type "btrfs")) (file-system (mount-point "/") (device (uuid "cb425a5f-bd91-45d3-92e1-3b983450ee21" 'ext4)) (type "ext4")) %base-file-systems)) (host-name "guixter") (users (cons* (user-account (name "hapster") (comment "Olivier Rojon") (group "users") (home-directory "/home/hapster") (supplementary-groups '("wheel" "netdev" "audio" "video"))) %base-user-accounts)) (packages (append (list (specification->package "nss-certs") ;;system utilities parted gparted e2fsprogs ncdu lshw setxkbmap less gnome-terminal=20 xkbcomp rsync lvm2 st btrfs-progs recutils usbutils memtester memtest86+ ddrescue ;grep ;; UI ;;;; fonts font-hack font-ubuntu ;;;; desktop environments, window and session managers dwm dmenu lxqt lxqt-build-tools liblxqt lxqt-globalkeys lxqt-runner=20 lxqt-connman-applet libqtxdg libfm-qt libdbusmenu-qt compton-conf ;;;; (icon) theme arc-icon-theme arc-theme ) %base-packages)) (services (append (list (service xfce-desktop-service-type) (set-xorg-configuration (xorg-configuration (keyboard-layout keyboard-layout)))) %desktop-services))) ######### RECONFIGURE LOG ######### hapster@guixter ~$ guix pull =2E.. hapster@guixter ~$ sudo guix system reconfigure=20 ~/src/guix-config/os-desktop.scm Passwort: substitute: Liste der Substitute von =E2=80=9Ehttps://ci.guix.gnu.org=E2=80= =9C wird=20 aktualisiertsubstitute: Liste der Substitute von=20 =E2=80=9Ehttps://ci.guix.gnu.org=E2=80=9C wird aktualisiert =E2=80=A6 100= =2E0% Folgende Ableitung wird erstellt: /gnu/store/yi3z0wdqdsh9gbkgfa28h88d563qpc4w-grub.cfg.drv /gnu/store/yi3z0wdqdsh9gbkgfa28h88d563qpc4w-grub.cfg.drv wird erstellt =E2= =80=A6 /gnu/store/n64pn9q7n7jhxlz4ay78h4f3g1cmlqkg-system /gnu/store/pdzry1a1rimaj238hyq3jsw38lbhdjar-grub.cfg System wird aktiviert =E2=80=A6 ;;; WARNING: loading compiled file=20 /gnu/store/5bd6ywmfcxxa4gvpzg0pdbjwmf24cxkl-module-import-compiled/gnu/buil= d/activation.go=20 failed: ;;; In procedure load-thunk-from-memory: incompatible bytecode kind ;;; compiling=20 /gnu/store/p8miza2mpnjdlpmh8504dm9xz2q9nvfr-module-import/gnu/build/activat= ion.scm ;;; WARNING: loading compiled file=20 /gnu/store/5bd6ywmfcxxa4gvpzg0pdbjwmf24cxkl-module-import-compiled/gnu/buil= d/accounts.go=20 failed: ;;; In procedure load-thunk-from-memory: incompatible bytecode kind ;;; compiling=20 /gnu/store/p8miza2mpnjdlpmh8504dm9xz2q9nvfr-module-import/gnu/build/account= s.scm ;;; compiled=20 /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/p8miza2mpnjdlpmh8504dm9xz2= q9nvfr-module-import/gnu/build/accounts.scm.go ;;; compiled=20 /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/p8miza2mpnjdlpmh8504dm9xz2= q9nvfr-module-import/gnu/build/activation.scm.go making '/gnu/store/n64pn9q7n7jhxlz4ay78h4f3g1cmlqkg-system' the current=20 system... setting up setuid programs in '/run/setuid-programs'... populating /etc from /gnu/store/05lm1hp8975a9bkarkh200xmp130603g-etc... WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' /gnu/store/salhvhazm03y9y040zfqqlswhp8lx1q8-install-bootloader.scm.drv=20 wird erstellt =E2=80=A6 WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' ;;; WARNING: loading compiled file=20 /gnu/store/bh8aw9l32dy1vr2an89ksrmzzjg6imf9-module-import-compiled/gnu/buil= d/bootloader.go=20 failed: ;;; In procedure load-thunk-from-memory: incompatible bytecode kind ;;; compiling=20 /gnu/store/n9i0jf5ixppqwfdnl9nxcii27r2m0ia7-module-import/gnu/build/bootloa= der.scm ;;; compiled=20 /root/.cache/guile/ccache/3.0-LE-8-4.2/gnu/store/n9i0jf5ixppqwfdnl9nxcii27r= 2m0ia7-module-import/gnu/build/bootloader.scm.go guix system: bootloader successfully installed on '/dev/sdb' WARNING: (guile-user): imported module (guix build utils) overrides core=20 binding `delete' Thanks a bunch, have a nice day fellows :) greetings, hapster