From owner-freebsd-embedded@FreeBSD.ORG Sat Feb 13 02:22:13 2010 Return-Path: Delivered-To: embedded@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 686131065672 for ; Sat, 13 Feb 2010 02:22:13 +0000 (UTC) (envelope-from mah@jump-ing.de) Received: from mail.ud03.udmedia.de (ud03.udmedia.de [194.117.254.43]) by mx1.freebsd.org (Postfix) with ESMTP id C7CB98FC0A for ; Sat, 13 Feb 2010 02:22:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=simple; d=mail.ud03.udmedia.de; h= in-reply-to:references:mime-version:content-type:message-id:cc: content-transfer-encoding:from:subject:date:to; q=dns/txt; s= beta; bh=lVqQ7TrEzYbMF7NeeLYSeJqxc46sGXZcJIHgOUa/B5w=; b=t3tVMRy pj6HEInyfytBY8EM4bbHztcg749ugy+sqshEXTh1GjfvyXTG5Rn5+kNW4Nee5PUW ee3P8btE947VZkpI+gHgV731+kWWk++BctHTOoPAWqbZJ5gQqRcyolqnYJiCFQDO 0hSo+mj2Ma2copdvrHyQEwnIgfKtuAT8K/Wk= Received: (qmail 23795 invoked from network); 13 Feb 2010 03:22:08 +0100 Received: from unknown (HELO ?10.0.0.50?) (ud03?291p1@109.192.134.207) by mail.ud03.udmedia.de with ESMTPA; 13 Feb 2010 03:22:08 +0100 In-Reply-To: <20100212203912.GA79178@psconsult.nl> References: <61B7DB7D-CFF0-4691-9693-E289A685A183@jump-ing.de> <20100212203912.GA79178@psconsult.nl> Mime-Version: 1.0 (Apple Message framework v753.1) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Markus Hitter Date: Sat, 13 Feb 2010 03:25:41 +0100 To: Paul Schenkeveld X-Mailer: Apple Mail (2.753.1) Cc: embedded@freebsd.org Subject: Re: Catching /etc/rc's output X-BeenThere: freebsd-embedded@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Dedicated and Embedded Systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 13 Feb 2010 02:22:13 -0000 Am 12.02.2010 um 21:39 schrieb Paul Schenkeveld: > On Fri, Feb 12, 2010 at 05:52:44PM +0100, Markus Hitter wrote: >> >> Hello all, >> >> it's seemingly such a basic question, but I can't find a way to >> redirect >> /etc/rc's output to a file. Editing /etc/syslog.conf changed nothing, >> /var/log/messages still stops where /etc/rc should begin. I can >> see the >> output on the console, but that's far to fast for the human eye. >> Short of >> hooking up a serial console to catch the log on a second machine, >> is there >> a way to get this output logged into a file? > > Try 'dmesg -a' That's it. Thanks, Paul. Obviously, this stuff is in RAM only, so searching the file system was the wrong place ... Markus