From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?UTF-8?Q?Court=C3=A8s?=) Subject: bug#26688: LXDE: Login fails Date: Sun, 07 May 2017 18:02:36 +0200 Message-ID: <8760hcpsdf.fsf@gnu.org> References: <20170427222205.si5en53kyounp2in@abyayala> <87inlf2ljq.fsf@gnu.org> <20170507131818.g2pulxqytwob7mzj@abyayala> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36153) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d7OeJ-0007tT-HG for bug-guix@gnu.org; Sun, 07 May 2017 12:03:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d7OeE-0007KD-Lf for bug-guix@gnu.org; Sun, 07 May 2017 12:03:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:34085) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1d7OeE-0007K9-Il for bug-guix@gnu.org; Sun, 07 May 2017 12:03:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1d7OeE-0000sD-Aq for bug-guix@gnu.org; Sun, 07 May 2017 12:03:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: In-Reply-To: <20170507131818.g2pulxqytwob7mzj@abyayala> (ng0's message of "Sun, 7 May 2017 13:18:18 +0000") 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.org@gnu.org Sender: "bug-Guix" To: 26688@debbugs.gnu.org --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Hi ng0, ng0 skribis: > I would've appended the file if it existed. But $home/.xsession-error > doesn't exist here. Indeed, not sure why. I was able to reproduce the problem in a VM with the attached config. It boils down to this: --8<---------------cut here---------------start------------->8--- $ /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/startl= xde=20 cp: cannot stat '/etc/xdg/openbox/LXDE/rc.xml': No such file or directory /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/startlxd= e: line 47: /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/= bin/lxsession: No such file or directory --8<---------------cut here---------------end--------------->8--- The =E2=80=98cp=E2=80=99 error seems harmless but the other one is obviously problematic. Could you check what=E2=80=99s wrong with =E2=80=98startlxde=E2=80=99? Thanks! Ludo=E2=80=99. --=-=-= Content-Type: text/x-scheme Content-Disposition: inline; filename=lightweight-desktop.tmpl Content-Description: the GuixSD config ;; 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 wm lxde certs) (operating-system (host-name "antelope") (timezone "Europe/Paris") (locale "en_US.utf8") ;; Assuming /dev/sdX is the target hard disk, and "my-root" ;; is the label of the target root file system. (bootloader (grub-configuration (device "/dev/sdX"))) (file-systems (cons (file-system (device "my-root") (title 'label) (mount-point "/") (type "ext4")) %base-file-systems)) (users (cons (user-account (name "alice") (comment "Bob's sister") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/alice")) %base-user-accounts)) ;; Add a bunch of window managers; we can choose one at ;; the log-in screen with F1. (packages (cons* lxde nss-certs ;for HTTPS access %base-packages)) ;; Use the "desktop" services, which include the X11 ;; log-in service, networking with Wicd, and more. (services %desktop-services) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss)) --=-=-=--