unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#26688: LXDE: Login fails
@ 2017-04-27 22:22 ng0
  2017-05-05 18:41 ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: ng0 @ 2017-04-27 22:22 UTC (permalink / raw)
  To: 26688

At the moment trying to login through SLIM (same with SDDM) into LXDE
you get the message "Failed to execute login command" for
about 2 seconds, then the X session terminates and your are
back at SLIM.

Effectively through the login managers we have, LXDE is not
usable at the moment. I haven't tested using just "startx".

I open this bug so that it can be referenced and is visible. To me
it is known since I've sent in the meta package for LXDE.
-- 
PGP and more: https://people.pragmatique.xyz/ng0/

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

* bug#26688: LXDE: Login fails
  2017-04-27 22:22 bug#26688: LXDE: Login fails ng0
@ 2017-05-05 18:41 ` Ludovic Courtès
  2017-05-07 13:18   ` ng0
  0 siblings, 1 reply; 6+ messages in thread
From: Ludovic Courtès @ 2017-05-05 18:41 UTC (permalink / raw)
  To: ng0; +Cc: 26688

ng0 <contact.ng0@cryptolab.net> skribis:

> At the moment trying to login through SLIM (same with SDDM) into LXDE
> you get the message "Failed to execute login command" for
> about 2 seconds, then the X session terminates and your are
> back at SLIM.

Does ~/.xsession-errors contain any hint?  That is, try to log in and
fail, then go to tty1 with ctrl-alt-f1, log in, and run
“cat ~/.xsession-errors”.

Thanks,
Ludo’.

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

* bug#26688: LXDE: Login fails
  2017-05-05 18:41 ` Ludovic Courtès
@ 2017-05-07 13:18   ` ng0
  2017-05-07 16:02     ` Ludovic Courtès
  0 siblings, 1 reply; 6+ messages in thread
From: ng0 @ 2017-05-07 13:18 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 26688

Ludovic Courtès transcribed 0.4K bytes:
> ng0 <contact.ng0@cryptolab.net> skribis:
> 
> > At the moment trying to login through SLIM (same with SDDM) into LXDE
> > you get the message "Failed to execute login command" for
> > about 2 seconds, then the X session terminates and your are
> > back at SLIM.
> 
> Does ~/.xsession-errors contain any hint?  That is, try to log in and
> fail, then go to tty1 with ctrl-alt-f1, log in, and run
> “cat ~/.xsession-errors”.
> 
> Thanks,
> Ludo’.

Hi,

I would've appended the file if it existed. But $home/.xsession-error
doesn't exist here.
-- 
https://pragmatique.xyz
PGP: https://people.pragmatique.xyz/ng0/

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

* bug#26688: LXDE: Login fails
  2017-05-07 13:18   ` ng0
@ 2017-05-07 16:02     ` Ludovic Courtès
  2017-05-07 17:33       ` ng0
  2017-05-11 21:32       ` Ludovic Courtès
  0 siblings, 2 replies; 6+ messages in thread
From: Ludovic Courtès @ 2017-05-07 16:02 UTC (permalink / raw)
  To: 26688

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

Hi ng0,

ng0 <contact.ng0@cryptolab.net> 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/startlxde 
cp: cannot stat '/etc/xdg/openbox/LXDE/rc.xml': No such file or directory
/gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/startlxde: line 47: /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/lxsession: No such file or directory
--8<---------------cut here---------------end--------------->8---

The ‘cp’ error seems harmless but the other one is obviously
problematic.

Could you check what’s wrong with ‘startlxde’?

Thanks!

Ludo’.


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: the GuixSD config --]
[-- Type: text/x-scheme, Size: 1531 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 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))

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

* bug#26688: LXDE: Login fails
  2017-05-07 16:02     ` Ludovic Courtès
@ 2017-05-07 17:33       ` ng0
  2017-05-11 21:32       ` Ludovic Courtès
  1 sibling, 0 replies; 6+ messages in thread
From: ng0 @ 2017-05-07 17:33 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 26688

Ludovic Courtès transcribed 2.7K bytes:
> Hi ng0,
> 
> ng0 <contact.ng0@cryptolab.net> 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/startlxde 
> cp: cannot stat '/etc/xdg/openbox/LXDE/rc.xml': No such file or directory
> /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/startlxde: line 47: /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/lxsession: No such file or directory
> --8<---------------cut here---------------end--------------->8---
> 
> The ‘cp’ error seems harmless but the other one is obviously
> problematic.
> 
> Could you check what’s wrong with ‘startlxde’?
> 
> Thanks!
> 
> Ludo’.
> 

Thanks.

Yes, I will do so though if someone else feels like picking
this bug up, feel free to do so as it could take some time
for me to get back to this.

-- 
https://pragmatique.xyz
PGP: https://people.pragmatique.xyz/ng0/

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

* bug#26688: LXDE: Login fails
  2017-05-07 16:02     ` Ludovic Courtès
  2017-05-07 17:33       ` ng0
@ 2017-05-11 21:32       ` Ludovic Courtès
  1 sibling, 0 replies; 6+ messages in thread
From: Ludovic Courtès @ 2017-05-11 21:32 UTC (permalink / raw)
  To: 26688-done

ludo@gnu.org (Ludovic Courtès) skribis:

> ng0 <contact.ng0@cryptolab.net> 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:
>
> $ /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/startlxde 
> cp: cannot stat '/etc/xdg/openbox/LXDE/rc.xml': No such file or directory
> /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/startlxde: line 47: /gnu/store/9fdxlzwbsfzhncwznlx2lrp8rdq61f7v-lxde-common-0.99.2/bin/lxsession: No such file or directory

Fixed in d5e7d014dd304474692e47a7d48d33e99b81e18a.

Please email bug-guix if there are other problems with LXDE.

Thanks,
Ludo’.

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

end of thread, other threads:[~2017-05-11 21:33 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-04-27 22:22 bug#26688: LXDE: Login fails ng0
2017-05-05 18:41 ` Ludovic Courtès
2017-05-07 13:18   ` ng0
2017-05-07 16:02     ` Ludovic Courtès
2017-05-07 17:33       ` ng0
2017-05-11 21:32       ` Ludovic Courtès

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