<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Sun Solaris System Admin &#187; psrinfo</title>
	<atom:link href="http://www.sunsolarisadmin.com/tag/psrinfo/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sunsolarisadmin.com</link>
	<description>Sun Solaris HowTo's Tips Tricks Tutorials</description>
	<lastBuildDate>Wed, 16 Jun 2010 21:07:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
<image>
<link>http://www.sunsolarisadmin.com</link>
<url>http://www.sunsolarisadmin.com/wp-content/mbp-favicon/favicon.ico</url>
<title>Sun Solaris System Admin</title>
</image>
		<item>
		<title>psrinfo &#8211; Find number of Physical &amp; Virtual Processors in Solaris 10</title>
		<link>http://www.sunsolarisadmin.com/general/psrinfo-find-number-of-physical-virtual-processors-in-solaris-10/</link>
		<comments>http://www.sunsolarisadmin.com/general/psrinfo-find-number-of-physical-virtual-processors-in-solaris-10/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 01:54:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Processor]]></category>
		<category><![CDATA[psrinfo]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[sparc]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[sun4v]]></category>
		<category><![CDATA[sunos]]></category>
		<category><![CDATA[SUNW]]></category>
		<category><![CDATA[t5120]]></category>
		<category><![CDATA[t5140]]></category>
		<category><![CDATA[ultrasparc]]></category>
		<category><![CDATA[virtual-processor]]></category>
		<category><![CDATA[x86]]></category>

		<guid isPermaLink="false">http://www.sunsolarisadmin.com/?p=61</guid>
		<description><![CDATA[In Solaris 10, if you want to find the processor type and the number of physical processors installed on the system and the number of Virtual Processors available on the system then the psrinfo command does job for you. To simply display the number of Physical processors, simply run the command with the -p option [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense-->In Solaris 10, if you want to find the processor type and the number of physical processors installed on the system and the number of Virtual Processors available on the system then the psrinfo command does job for you.</p>
<p><span id="more-61"></span></p>
<p>To simply display the number of Physical processors, simply run the command with the -p option as follows:</p>
<blockquote><p><strong>root@sunserver # psrinfo -p<br />
</strong>2</p></blockquote>
<p>where 2 implies that there are 2 physical processors installed on the system.</p>
<p>If you would like to check the number of Virtual Processors on each of these Physical processors then type the command with the &#8220;-pv&#8221; arguement as follows:</p>
<blockquote><p><strong>root@ server:/root$ uname -a</strong></p>
<p>SunOS server 5.10 Generic_137111-02 sun4v sparc SUNW,SPARC-Enterprise-T5120</p>
<p><strong>root@server:/root$ psrinfo -pv</strong></p>
<p>The physical processor has 32 virtual processors (0-31)</p>
<p>  UltraSPARC-T2 (cpuid 0 clock 1165 MHz)</p></blockquote>
<p>The above indicates that there was only one physical processor (UltraSPARC-T2) on the T5120 server which has 32 Virtual processors. Each virtual processor is an entity with its own interrupt ID, capable of executing independent threads.</p>
<p>In simple terms, the number of Virtual Processors supported by a physical CPU is</p>
<blockquote><p><strong><em>&#8220;Number of Core&#8221; x &#8220;Number of threads&#8221;</em></strong></p></blockquote>
<p>For instance, the above is on a T5120 server with the UltraSPARC-T2. This CPU  has 4 cores and each core can support 8 threads and that gives us 32 Virtual processors.</p>
<p>The number of Virtual processors on a Server is simply the total Virtual processors supported on each of the physical processor.</p>
<p>In the following T5140 server there are 2 Physical UltraSPARC-T2+ processors with 6 cores, each supporting 8 threads which means we get 48 Virtual processors per Physical processor and hence a total of 96 Virtual processors (sum of VPs on individual processors) for the server:</p>
<blockquote><p><strong>root@ bserver:/root$ uname -a</strong></p>
<p>SunOS bserver 5.10 Generic_137111-02 sun4v sparc SUNW,T5140</p>
<p><strong>root@ bserver:/root$ psrinfo -pv</strong></p>
<p>The physical processor has 48 virtual processors (0-23 32-55)</p>
<p>  UltraSPARC-T2+ (cpuid 0 clock 1167 MHz)</p>
<p>The physical processor has 48 virtual processors (64-71 80-119)</p>
<p>  UltraSPARC-T2+ (cpuid 64 clock 1167 MHz)</p></blockquote>
<p>In earlier versions of Solaris, the <strong><em>-p</em></strong> arguement is not supported and hence wouldn&#8217;t provide this summarised output on the counts of the physical and Virtual CPUs.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sunsolarisadmin.com/general/psrinfo-find-number-of-physical-virtual-processors-in-solaris-10/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to display Processor information in Sun Solaris</title>
		<link>http://www.sunsolarisadmin.com/hardware/how-to-display-processor-information-in-sun-solaris/</link>
		<comments>http://www.sunsolarisadmin.com/hardware/how-to-display-processor-information-in-sun-solaris/#comments</comments>
		<pubDate>Fri, 09 May 2008 19:16:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hardware]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[Processor]]></category>
		<category><![CDATA[prtconf]]></category>
		<category><![CDATA[prtdiag]]></category>
		<category><![CDATA[psrinfo]]></category>
		<category><![CDATA[solaris]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://www.sunsolarisadmin.com/?p=56</guid>
		<description><![CDATA[Sun solaris has various different utilities to find the processor information on your hardware. Let&#8217;s have a look at the different utilities that can display the processor informations and the way they display information. Using psrinfo psrinfo displays more detailed information of the Processors including the number of Physical processors on the system and the [...]]]></description>
			<content:encoded><![CDATA[<p><!--adsense--><br />
Sun solaris has various different utilities to find the processor information on your hardware. Let&#8217;s have a look at the different utilities that can display the processor informations and the way they display information.</p>
<p><span id="more-56"></span></p>
<p><strong><span style="text-decoration: underline;">Using psrinfo</span></strong></p>
<p>psrinfo displays more detailed information of the Processors including the number of Physical processors on the system and the number of virtual processors on the system. Each virtual processor is in its own a seperate entity.</p>
<p>Run psrinfo as root without arguments gives a quick summary of the processors with its IDs and the time since online.</p>
<blockquote><p><strong># which psrinfo<br />
</strong>/usr/sbin/psrinfo</p></blockquote>
<blockquote><p><strong>sunsolaris# psrinfo<br />
</strong>0       on-line   since 05/09/2008 19:41:32</p></blockquote>
<p>For a more detailed output use the verbose option. This gives much more detailed information including processor type, operating speed etc for every available processor.</p>
<blockquote><p><strong>sunsolaris# psrinfo -v<br />
</strong>Status of virtual processor 0 as of: 05/09/2008 20:05:34<br />
  on-line since 05/09/2008 19:41:32.<br />
  The i386 processor operates at 2000 MHz,<br />
        and has an i387 compatible floating point processor.<br />
       <br />
<strong><span style="text-decoration: underline;">Using prtiag</span></strong></p></blockquote>
<p>This can once again give a summarised information on the processor version and its ID.</p>
<blockquote><p><strong>sunsolaris# which prtdiag</strong><br />
/usr/sbin/prtdiag</p></blockquote>
<blockquote><p><strong>sunsolaris# prtdiag<br />
</strong>System Configuration: VMware, Inc. VMware Virtual Platform<br />
BIOS Configuration: Phoenix Technologies LTD 6.00 04/17/2006</p>
<p>==== Processor Sockets ====================================</p>
<p>Version                          Location Tag<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Pentium(R) Pro                   CPU socket #0</p>
<p>&#8230;..<br />
&#8230;.</p></blockquote>
<p><strong><span style="text-decoration: underline;">Using prtconf</span></strong></p>
<p>Based on the installed drivers, you can find the information on the CPUs on the system.</p>
<blockquote><p><strong>sunsolaris# which prtconf</strong><br />
/usr/sbin/prtconf</p></blockquote>
<blockquote><p><strong>sunsolaris#prtconf</strong><br />
System Configuration:  Sun Microsystems  i86pc<br />
Memory size: 512 Megabytes<br />
System Peripherals (Software Nodes):<br />
&#8230;<br />
..<br />
&#8230;<br />
cpus (driver not attached)<br />
      cpu, instance #0 (driver not attached)</p></blockquote>
<p>Not much information on my solaris 10 system running on a virtual server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sunsolarisadmin.com/hardware/how-to-display-processor-information-in-sun-solaris/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>
