From owner-freebsd-questions@FreeBSD.ORG Mon Apr 19 12:32:41 2004 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 0872C16A4CE for ; Mon, 19 Apr 2004 12:32:41 -0700 (PDT) Received: from www.wcborstel.nl (node-c-0ab6.a2000.nl [62.194.10.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64D1843D39 for ; Mon, 19 Apr 2004 12:32:40 -0700 (PDT) (envelope-from jorn@wcborstel.nl) Received: from [172.16.1.2] (unknown [172.16.1.2]) by www.wcborstel.nl (Postfix) with ESMTP id 8105E17067 for ; Mon, 19 Apr 2004 21:32:55 +0200 (CEST) From: Jorn Argelo To: freebsd-questions@freebsd.org Date: Mon, 19 Apr 2004 21:32:01 +0200 User-Agent: KMail/1.6.1 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200404192132.01803.jorn@wcborstel.nl> Subject: Re: kernel config optimized 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: Mon, 19 Apr 2004 19:32:41 -0000 On Monday 19 April 2004 21:02, Brian Henning wrote: > The following is a copy of my kernel config file. I am trying to optimize > it as much as possible. > > do i need any of these psudo devices? > pseudo-device loop # Network loopback > pseudo-device ether # Ethernet support > pseudo-device sl 1 # Kernel SLIP > pseudo-device ppp 1 # Kernel PPP > pseudo-device tun # Packet tunnel. > pseudo-device pty # Pseudo-ttys (telnet etc) > pseudo-device md # Memory "disks" > pseudo-device gif # IPv6 and IPv4 tunneling > pseudo-device faith 1 # IPv6-to-IPv4 relaying (translation) > pseudo-device splash You can safely remove SL, PPP, GIF and Faith, but I would keep the rest if I were you. > do i need any of these devices? > device atadisk # ATA disk drives > device atapicd # ATAPI CDROM drives > options ATA_STATIC_ID # Static device numbering Depends on the hardware. If you're not using any IDE drives then you can disable that. Cheers, Jorn [snip]