I m a beginner on FreeBSD, and have got a basic doubt.
I have got two identical servers (Dell PowerEdge 850) purchased in a single batch, and were installed with two different FreeBSD versions FreeBSD 9.0 and FreeBSD 9.1, installed by a previous system administrator who is no longer with us.
When I run
Server 1:
, and
Server 2:
.
I am unable to understand why Server 1 returns 'amd64' for both
Would be grateful if someone could give useful hints or leads.
Thank you in advance.
I have got two identical servers (Dell PowerEdge 850) purchased in a single batch, and were installed with two different FreeBSD versions FreeBSD 9.0 and FreeBSD 9.1, installed by a previous system administrator who is no longer with us.
When I run
sysctl -a | egrep -i 'hw.machine|hw.model|hw.ncpu' those two servers return different results:Server 1:
Code:
# sysctl -a | egrep -i 'hw.machine|hw.model|hw.ncpu'
hw.machine: amd64
hw.model: Intel(R) Pentium(R) D CPU 3.00GHz
hw.ncpu: 2
hw.machine_arch: amd64
Server 2:
Code:
# sysctl -a | egrep -i 'hw.machine|hw.model|hw.ncpu'
hw.machine: i386
hw.model: Intel(R) Pentium(R) D CPU 3.00GHz
hw.ncpu: 2
hw.machine_arch: i386
I am unable to understand why Server 1 returns 'amd64' for both
hw.machine and hw.machine_arch for an Intel based system, and whether choosing 'amd64' instead of 'i386' during the FreeBSD Operating System installation might affect the performance of the server in anyway.Would be grateful if someone could give useful hints or leads.
Thank you in advance.