From owner-freebsd-questions@FreeBSD.ORG Sun Jun 8 14:35:32 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1356D37B401 for ; Sun, 8 Jun 2003 14:35:32 -0700 (PDT) Received: from mailhub02.unibe.ch (mailhub02-skge0.unibe.ch [130.92.9.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28F6443FDF for ; Sun, 8 Jun 2003 14:35:31 -0700 (PDT) (envelope-from roth@iam.unibe.ch) Received: from localhost (localhost [127.0.0.1]) by mailhub02.unibe.ch (Postfix) with ESMTP id 4D2CB76404; Sun, 8 Jun 2003 23:35:30 +0200 (MEST) Received: from mailhub02.unibe.ch ([127.0.0.1]) by localhost (mailhub02 [127.0.0.1:10024]) (amavisd-new) with LMTP id 11674-01-84; Sun, 8 Jun 2003 23:35:29 +0200 (MEST) Received: from asterix.unibe.ch (asterix.unibe.ch [130.92.64.4]) by mailhub02.unibe.ch (Postfix) with ESMTP id B031D76454; Sun, 8 Jun 2003 23:35:29 +0200 (MEST) Received: from speedy.unibe.ch (speedy [130.92.64.35]) by asterix.unibe.ch (8.11.6+Sun/8.11.6) with ESMTP id h58LZTK10896; Sun, 8 Jun 2003 23:35:29 +0200 (MET DST) Received: (from roth@localhost) by speedy.unibe.ch (8.11.6+Sun/8.10.2) id h58LZT607519; Sun, 8 Jun 2003 23:35:29 +0200 (MEST) Date: Sun, 8 Jun 2003 23:35:29 +0200 From: Tobias Roth To: Ken Thompson Message-ID: <20030608213529.GA7502@speedy.unibe.ch> References: <200306081510.13725.spooky@cableone.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200306081510.13725.spooky@cableone.net> User-Agent: Mutt/1.4i X-Operating-System: SunOS speedy 5.8 Generic_108528-16 sun4u sparc SUNW,Ultra-80 X-Virus-checked: by University of Berne cc: questions@freebsd.org Subject: Re: Startup files X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 21:35:32 -0000 On Sun, Jun 08, 2003 at 03:10:13PM -0600, Ken Thompson wrote: > Where do I put things to load during boot, things like loading modules and > starting kdm?? Poked about some and am working my way through the complete > bsd #3 as well as the "book" which I downloaded, but I haven't found > reference to the above, yet.. > Thanks to all in advance. things you install from the ports or through packages get started from /usr/local/etc/rc.d/ . Things in the base system get configured to start in /etc/rc.conf and ge tstarted by scripts in /etc/rc.d (for 5.0 and later). kdm gets started through /etc/ttys (I think... maybe there is also a different method). Modules can be loaded from /boot/loader.conf. hope that helps, t.