Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Mar 2006 17:23:31 +1000
From:      Norberto Meijome <freebsd@meijome.net>
To:        Bill Schoolcraft <bill@wiliweld.com>
Cc:        freebsd-questions@FreeBSD.ORG
Subject:   Re: cat /proc/cpuinfo ?
Message-ID:  <20060327172331.648b8f59@localhost>
In-Reply-To: <Pine.LNX.4.61.0603262241560.2203@liam.billschoolcraft.com>
References:  <Pine.LNX.4.61.0603262241560.2203@liam.billschoolcraft.com>

next in thread | previous in thread | raw e-mail | index | archive | help
On Sun, 26 Mar 2006 22:47:11 -0800 (PST)
Bill Schoolcraft <bill@wiliweld.com> wrote:

> Hello Family,
> 
> Yes, yes, I know... I have a bunch of boxes under my desk here at
> home and between the Ultra-10, FreeBSD-5.4 and 6.0 and SuSE I get
> confused and that's what happened when I tried to type the following
> on my FreeBSD box.
> 
> cat /proc/cpuinfo
>

[....]

> 
> Is there some *BSD port that will give me CPU information like the
> above from the command line?

You want the linux /proc behaviour.

1) make sure you have linux binary compatibility installed 

$ pkg_info | grep linux_base
linux_base-8-8.0_14 Base set of packages needed in Linux mode (for
i386/amd64)

$ grep -i linux /etc/rc.conf 
linux_enable="YES"

( without a reboot, this equals to kldload linux)

2) add to /etc/fstab:
linprocfs   /compat/linux/proc   linprocfs   rw   0  0

and then you can get : 


[betom@ayiin] [Mon Mar 27 17:18:50 2006]
~
$ cat /compat/linux/proc/cpuinfo 
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 7
stepping        : 8
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge
mca cmov pat b19 b21 mmxext mmx fxsr xmm b26 b27 b29 3dnow cpu
MHz         : 1995.02 bogomips        : 1995.02

HIH,
Beto



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20060327172331.648b8f59>