Showing posts with label Solaris. Show all posts
Showing posts with label Solaris. Show all posts

Wednesday, January 21, 2009

Knowing processor information from Solaris Box

Solaris provides a command called psrinfo which displays information about processors.

For example to know whether your system runs on AMD or Intel processor, run this command with following arguments

bash-3.00# psrinfo -p -v
The physical processor has 1 virtual processor (0)
x86 (GenuineIntel family 15 model 4 step 8 clock 3391 MHz)
Intel(r) Xeon(tm) CPU 3.40GHz


As always, try out man psrinfo for detailed information.

Thursday, December 4, 2008

How to know a Unix/Linux system is a 32/64 bit architecture?

To know whether given Unix/Linux machine is of type 32/64 bit architecure, use the command

getconf LONG_BIT

It outputs correspondingly 32 or 64 bit.

For AIX machine use "bootinfo -K" command for same purpose

Reference: http://www.unixguide.net/unixguide.shtml