You are not logged in.
Forgive me if this is inappropriate but I am trying out star kirk. I think I read it is really pretty much devuan.
I had switched from slim to lightdm and that worked without problem. I then purged both slim and lightdm and booted to the command prompt just fine, but X wouldn't start up by startx (I did create an appropriate ~/.xinitrc). Is there a description of how to do this somewhere that someone could point me to?
Last edited by mu (2019-01-27 12:17:45)
Offline
The first thing I'd do is check carefully the file /var/log/Xorg.0.log looking for errors.
Further reading: https://www.x.org/wiki/FAQErrorMessages/
Offline
https://files.devuan.org/devuan_ascii/Release_notes.txt
Skip down to the section 'Starting X from a terminal'.
Offline
Thank you both for your replies. Installing 'elogind' and 'libpam-elogind' solved it.
Offline
Hi,
I don't understand exactly what you want. If you do not use a display manager and want to boot without starting X automatically, the common solution is to add startx in your .profile and only allow TTY1 to run it. If you don't wan to start X, just change to TTY2 to login:
if [ -z "$DISPLAY" ] && [ $(tty) == /dev/tty1 ]; then
exec startx
fi
Offline
I don't understand exactly what you want.
I had an use case very similar. I wanted to study from the ground up the GNU/Linux system. I started from the command line. Some months later, I decided to install X Window System, but I did not want to start it automaticaly, so I used startx when I saw fit.
Maybe someone has a box with very humble hardware and he/she can use it for a lot of things just without X, but wants to have it around, just in case.
I'm sure that there are a lot more of cases.
Offline