display cpu model


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers display cpu model
# 1  
Old 06-28-2010
display cpu model

Hi

How to display cpu models in Sol 10 ?
Is there some cmds within korn shell or I have to access this info from network
service processor ILOM ?

thx for help
# 2  
Old 06-28-2010
Code:
kstat cpu_info

# 3  
Old 06-28-2010
lshw and dmidecode are not available on Solaris although the latter can be compiled from source.
On Solaris, to get the CPU model information, you can use either
Code:
$ psrinfo -v
Status of virtual processor 0 as of: 06/29/2010 02:37:10
  on-line since 06/28/2010 20:56:45.
  The i386 processor operates at 2533 MHz,
	and has an i387 compatible floating point processor.
Status of virtual processor 1 as of: 06/29/2010 02:37:10
  on-line since 06/28/2010 20:56:50.
  The i386 processor operates at 2533 MHz,
	and has an i387 compatible floating point processor.

or, if available
Code:
 $ smbios -t SMB_TYPE_PROCESSOR
ID    SIZE TYPE
4     74   SMB_TYPE_PROCESSOR (processor)

  Manufacturer: Intel Corporation
  Version:  
  Location Tag: uFC-PGA Socket

  Family: 191 (Intel Core 2)
  CPUID: 0x1067a
  Type: 3 (central processor)
  Socket Upgrade: 1 (other)
  Socket Status: Populated
  Processor Status: 1 (enabled)
  Supported Voltages: 1.2V
  External Clock Speed: Unknown
  Maximum Speed: 2530MHz
  Current Speed: 2530MHz
  L1 Cache: 18
  L2 Cache: 19
  L3 Cache: None

 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Is it possible to combine multiple CPU to act as a single CPU on the same server?

We have a single threaded application which is restricted by CPU usage even though there are multiple CPUs on the server, hence leading to significant performance issues. Is it possible to merge / combine multiple CPUs at OS level so it appear as a single CPU for the application? (6 Replies)
Discussion started by: Dissa
6 Replies

2. SCO

hwconfig CPU model wrong

Hello, I am running SCO Opensever 5.0.7 on a Intel Duo Core system. When I enter hwconfig -h the CPU info is displayed as: cpu - - - unit-1 family-6 type Pentium III (model 7) Is there a way to update this so it is current to the cpu I am using? Does this cause any performance issues? ... (3 Replies)
Discussion started by: ewerezak
3 Replies

3. UNIX for Dummies Questions & Answers

Display just CPU run queue number (Nothing Else)

Im using the vmstat command to display the CPU run queue, but i want to put that into a program so is there a way to just display the number under the r? Thanks, (1 Reply)
Discussion started by: RAFC_99
1 Replies

4. Solaris

Solaris10 x86 - How to find out the CPU model and speed?

Please let me know if there is any way I can find out (either via command line or SMF) the following: 1.CPU model (eg. Pentium 4,Celeron) 2.CPU speed (eg. 1GHz) for this I could get the output through psrinfo -v, but still is there any other way? 3.Hard disk model (eg. Seagate). When I... (9 Replies)
Discussion started by: saagar
9 Replies

5. UNIX for Advanced & Expert Users

NMON Physical Averages display for multi CPU Server

We have some AIX Unix Servers with 4 or 6 CPU and when type this command “c” in nmon always displays each cpu % with Averages on buttom. However we have several Servers with 18 CPU's and it only shows 16 17 on main page. Does nmon have some command that would show remaining with totals for Physical... (3 Replies)
Discussion started by: groosha
3 Replies

6. Solaris

Multi CPU Solaris system shows 100% CPU usage.

Hello Friends, On one of my Solaris 10 box, CPU usage shows 100% using "sar", "vmstat". However, it has 4 CPUs and prstat and glance are not showing enough processes to justify high CPU utilization. ========================================================================= $ prstat -a ... (4 Replies)
Discussion started by: mahive
4 Replies

7. Shell Programming and Scripting

Shell script to display top 5 process (per cpu consumption)

Hello, I have to create shell script being myself real novice in scripting... I was looking on the Internet for some script examples, but I don't have the basic understanding of the shell. I was trying to do something with “ps” command without success. For exemple total number of... (2 Replies)
Discussion started by: mr_awd
2 Replies

8. UNIX for Dummies Questions & Answers

how to get persistant cpu utilization values per process per cpu in linux (! top,ps)

hi, i want to know cpu utilizatiion per process per cpu..for single processor also if multicore in linux ..to use these values in shell script to kill processes exceeding cpu utilization.ps (pcpu) command does not give exact values..top does not give persistant values..psstat,vmstat..does njot... (3 Replies)
Discussion started by: pankajd
3 Replies

9. UNIX for Dummies Questions & Answers

RedHat display cpu configuration

Hello people ! Does anyone knows how can I get the CPU configuration in the RedHat Box ??? I need know the frequence of cpu and how much cpu(s) in my box ... Thank you, Witt (2 Replies)
Discussion started by: witt
2 Replies

10. UNIX for Advanced & Expert Users

What's the easiest way to display system cpu, memory, # drives/size ??

I am looking for the easiest and most generic way to determine: System model/class Number of cpu's Clock speed of cpu's (ie 550 MHz) Total Physical Memory (not virtual) Number of Drives/Drive Size Thanks in advance, (4 Replies)
Discussion started by: eyounes
4 Replies
Login or Register to Ask a Question