You are not logged in.
Pages: 1
it's been over 24 hrs and I can't figure how to get kdm launched.
I done everything here: https://wiki.archlinux.org/index.php/Systemd
reninstalled about 6 times and still nothing...
HELP!!
Last edited by funkmuscle (2012-11-06 21:51:32)
Offline
Im sure you tried
systemctl enable kdm.serviceThen reboot?
Certified Android Junkie
Arch 64
Offline
about a million times....
Offline
about a million times....
See, those boot times have increased significantly on systemd ![]()
Does journalctl provide any clues?
Nothing is too wonderful to be true, if it be consistent with the laws of nature -- Michael Faraday
The shortest way to ruin a country is to give power to demagogues.— Dionysius of Halicarnassus
---
How to Ask Questions the Smart Way
Offline
See, those boot times have increased significantly on systemd
thank God for those speedy reboots ![]()
Does journalctl provide any clues?
kinda... all of sudden, I don't see the graphical being started.. it showed in earlier attempts but no more..
Offline
To show all error messages during the last boot use this command:
journalctl -b -p errTo show status and recent journal entries of services (like kdm.service) use this one:
systemctl status <service>You could paste some of the info here.
Offline
kdm[257]: X server for display :0 cannot be started, session disabled.
systemd [1]: Stopping K Display Manager...
systemctl --all list it as dead
I run:
systemctl start graphical.targetkdm started.
Last edited by funkmuscle (2012-11-04 19:58:13)
Offline
any fix to autostart kdm?
Offline
kdm[257]: X server for display :0 cannot be started, session disabled.
systemd [1]: Stopping K Display Manager...
...sounds more like a problem with your X than with KDM....KDM actually started, but could not start X and therefor exited.
Also, is your graphic.target started automaticaly?
systemctl -t target | grep activeLast edited by Xabre (2012-11-04 23:55:12)
Offline
Do
# rm /etc/systemd/system/display-manager.service
$ systemctl enable kdm Offline
Do
# rm /etc/systemd/system/display-manager.service $ systemctl enable kdm
nope, no change. thanx.
Offline
I had a similar problem with lxdm. It helped me:
# ls -l /etc/systemd/system/default.target
lrwxrwxrwx 1 root root 36 11-05 18:07 /etc/systemd/system/default.target -> /lib/systemd/system/graphical.target# rm /etc/systemd/system/default.target
# ln -s /lib/systemd/system/graphical.target /etc/systemd/system/default.target# ls -l /etc/systemd/system/default.target
lrwxrwxrwx. 1 root root 36 Jun 4 06:08 /etc/systemd/system/default.target -> /lib/systemd/system/graphical.target# systemctl is-enabled graphical.target
enabled
and the same with display-manager.service
#ls -l /etc/systemd/system/dislpay-manager.service
lrwxrwxrwx 1 root root 32 11-05 18:23 /etc/systemd/system/display-manager.service -> /lib/systemd/system/lxdm.service# rm /etc/systemd/system/display-manager.service
# ln -s /lib/systemd/system/lxdm.service /etc/systemd/system/display-manager.service# ls -l /etc/systemd/system/display-manager.service
lrwxrwxrwx 1 root root 32 11-05 18:23 /etc/systemd/system/display-manager.service -> /lib/systemd/system/lxdm.service# systemctl is-enabled display-manager.service
enabled
# systemctl enable lxdm.service
reboot.
Offline
I had a similar problem with lxdm. It helped me:
# ls -l /etc/systemd/system/default.target
lrwxrwxrwx 1 root root 36 11-05 18:07 /etc/systemd/system/default.target -> /lib/systemd/system/graphical.target# rm /etc/systemd/system/default.target
# ln -s /lib/systemd/system/graphical.target /etc/systemd/system/default.target# ls -l /etc/systemd/system/default.target
lrwxrwxrwx. 1 root root 36 Jun 4 06:08 /etc/systemd/system/default.target -> /lib/systemd/system/graphical.target# systemctl is-enabled graphical.target
enabledand the same with display-manager.service
#ls -l /etc/systemd/system/dislpay-manager.service
lrwxrwxrwx 1 root root 32 11-05 18:23 /etc/systemd/system/display-manager.service -> /lib/systemd/system/lxdm.service# rm /etc/systemd/system/display-manager.service
# ln -s /lib/systemd/system/lxdm.service /etc/systemd/system/display-manager.service# ls -l /etc/systemd/system/display-manager.service
lrwxrwxrwx 1 root root 32 11-05 18:23 /etc/systemd/system/display-manager.service -> /lib/systemd/system/lxdm.service# systemctl is-enabled display-manager.service
enabled# systemctl enable lxdm.service
reboot.
Hahahahaha!!.. WE HAVE A WINNER!!! Thank you malaga.. I'm back in bidness!! ![]()
Offline
Pages: 1