From owner-freebsd-questions@FreeBSD.ORG Fri Oct 31 14:01:18 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 B9CF816A4CE for ; Fri, 31 Oct 2003 14:01:18 -0800 (PST) Received: from mailgate.sri.com (mailgate.SRI.COM [128.18.243.11]) by mx1.FreeBSD.org (Postfix) with SMTP id D226143FA3 for ; Fri, 31 Oct 2003 14:01:15 -0800 (PST) (envelope-from hogsett@csl.sri.com) Received: (qmail 9392 invoked from network); 31 Oct 2003 22:01:06 -0000 Received: from localhost (HELO mailgate.SRI.COM) (127.0.0.1) by mailgate.sri.com with SMTP; 31 Oct 2003 22:01:06 -0000 Received: from quarter.csl.sri.com ([130.107.1.30]) by mailgate.SRI.COM (SAVSMTP 3.1.0.29) with SMTP id M2003103114010526947 ; Fri, 31 Oct 2003 14:01:05 -0800 Received: from beast.csl.sri.com (beast.csl.sri.com [130.107.2.57]) by quarter.csl.sri.com (8.12.9/8.12.9) with ESMTP id h9VM15uK018244; Fri, 31 Oct 2003 14:01:06 -0800 Message-Id: <200310312201.h9VM15uK018244@quarter.csl.sri.com> To: Yong Yi In-Reply-To: Message from Yong Yi of "Fri, 31 Oct 2003 13:38:21 PST." <20031031133821.A30890@analog.org> Mime-Version: 1.0 (generated by tm-edit 8.8 (Time Passed Me By)) Content-Type: text/plain; charset=US-ASCII Date: Fri, 31 Oct 2003 14:01:05 -0800 From: Mike Hogsett cc: freebsd-questions@freebsd.org Subject: Re: Silent boot? 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: Fri, 31 Oct 2003 22:01:18 -0000 > Anyone know whether it'd be possible to cleanly disable printing the > kernel boot messages (the bold white text)? Meaning, short of > commenting out the code that prints this, is there any way? If you dont mind **NOT** having a console **AT ALL** you can comment out the system console device (see below) in the kernel config and rebuild/install a new kernel. >From /usr/src/sys/i386/conf/GENERIC : ... device sc0 at isa? flags 0x100 ... Advantage : no kernel message on console (in fact, no console! Doh!) Disadvantage : makes single user mode difficult at best :P - Mike