start kde-lite automaticaly

hi

Howto configure freeBSD 8.1 to start kde-lite automaticaly?
I added this line in /etc/rc.conf:
Code:
kdm_enable="YES"
but it doesn't help.

BTW using startx manually, it works well.
 
to run KDM at system startup, you need to edit /etc/ttys:
Code:
$ grep kdm /etc/ttys
ttyv8 "/usr/local/kde4/bin/kdm -nodaemon" xterm on secure
just make sure that path to your KDM is correct and there is nothing else configured to run on ttyv8
 
  • Thanks
Reactions: ccc
Thx, I've changed in /etc/ttys:
Code:
ttyv8   "/usr/local/bin/kdm -nodaemon"  xterm   on secure
and now it works well.
 
Back
Top