From owner-freebsd-questions Sat Mar 17 8:22:47 2001 Delivered-To: freebsd-questions@freebsd.org Received: from rush.telenordia.se (mail.telenordia.se [194.213.64.42]) by hub.freebsd.org (Postfix) with SMTP id 8F11237B718 for ; Sat, 17 Mar 2001 08:22:44 -0800 (PST) (envelope-from mark.rowlands@minmail.net) Received: (qmail 18591 invoked from network); 17 Mar 2001 17:22:43 +0100 Received: from bb-62-5-7-15.bb.tninet.se (HELO bb-62-5-7-15-bb.tninet.se) (62.5.7.15) by mail.telenordia.se with SMTP; 17 Mar 2001 17:22:43 +0100 Content-Type: text/plain; charset="iso-8859-1" From: Mark Rowlands To: Charlie Root , freebsd-questions@FreeBSD.ORG Subject: Re: benchamrks/cpu info Date: Sat, 17 Mar 2001 17:23:18 +0100 X-Mailer: KMail [version 1.2] References: <200103170824.f2H8OjM68301@hermes.niicommunications.com> In-Reply-To: <200103170824.f2H8OjM68301@hermes.niicommunications.com> MIME-Version: 1.0 Message-Id: <01031717210101.00835@bb-62-5-7-15-bb.tninet.se> Content-Transfer-Encoding: 8bit Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG On Saturday 17 March 2001 09:24, Charlie Root wrote: > is there a way in freebsd to see what type of hardware is present? cat > /proc/cpuinfo was nice in linux.. but then again freebsd is not linux.. > anything similar? thanks .. > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-questions" in the body of the message dmesg | grep -i 'irq [0-9][0-9]*' | \ sed 's/\(^[a-z0-9]*[: ]\).*\(irq [0-9][0-9]*\).*/\1 \2/' | \ sort -n +2 -3 has been knocking around these lists for a while To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message