Home
FreeBSD Tips
Find CPU Info in FreeBSD
FreeBSD Tips
Find CPU Info in FreeBSD | Find CPU Info in FreeBSD |
|
|
|
To find info about CPU on your FreeBSD server/desktop use: sysctl -a | egrep -i 'hw.machine | hw.model | hw.ncpu' You will get something like this: hw.machine: i386 hw.model: Genuine Intel(R) CPU 2140 @ 1.60GHz hw.ncpu: 1 hw.machine_arch: i386 or use: grep -i cpu /var/run/dmesg.boot You will get something like this: CPU: Genuine Intel(R) CPU 2140 @ 1.60GHz (1606.03-MHz 686-class CPU) cpu0: <ACPI CPU> on acpi0 CPU: Genuine Intel(R) CPU 2140 @ 1.60GHz (1606.03-MHz 686-class CPU) cpu0: <ACPI CPU> on acpi0 CPU: Genuine Intel(R) CPU 2140 @ 1.60GHz (1606.03-MHz 686-class CPU) cpu0: <ACPI CPU> on acpi0 CPU: Genuine Intel(R) CPU 2140 @ 1.60GHz (1606.03-MHz 686-class CPU) cpu0: <ACPI CPU> on acpi0 |
| < Prev | Next > |
|---|

