Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 20 Jun 2001 07:18:29 +0200
From:      Christoph Sold <so@server.i-clue.de>
To:        Bjarne Wichmann Petersen <mekanix@privat.dk>
Cc:        Carsten Reimer <careimer@hrz.uni-kassel.de>, freebsd-questions@FreeBSD.ORG
Subject:   Re: How to run kdm
Message-ID:  <3B303225.AEF8F5D8@i-clue.de>
References:  <Pine.A41.4.33.0106181445510.69268-100000@hrz-ws52.hrz.uni-kassel.de> <20010619084314.3b5908c0.mekanix@privat.dk>

next in thread | previous in thread | raw e-mail | index | archive | help


Bjarne Wichmann Petersen schrieb:
> 
> On Mon, 18 Jun 2001 14:56:45 +0200 (MES)
> Carsten Reimer <careimer@hrz.uni-kassel.de> wrote:
> 
> > It is started on booting time from a
> > startup-script in /usr/local/etc/rc.d .
> 
> I'd like to know a little more on how you start kdm. I've tried just
> running kdm of /etc/rc.conf which starts kdm fine, but it locks out all
> keyinput but not mouse.
> 
> Running kdm of a root-prompt works fine, so kdm is configured correct.

Create a simple startup script in /usr/local/etc/rc.d. The trick is
either to hardwire kdm to an unused console screen; or to have kdm sleep
until syscons is fully up.

Simple snippet from mine:

#!/bin/sh
#
# kdm.sh -- startup script to launch kdm at reboot
#

KDM=/usr/local/bin/kdm

if [ "x$1" = "x" -o "x$1" = "xstart" ]; then
  echo " kdm"
  (sleep 60; $KDM )&
fi

HTH
-Christoph Sold

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3B303225.AEF8F5D8>