-
Recent Posts
Recent Comments
Archives
Categories
Meta
Daily Archives: December 12, 2011
How to check number of “Physical CPU and core”?
number of physical cpu: “psrinfo -p” number of cores: “kstat cpu_info|grep core_id|sort -u|wc -l” number of threads: “psrinfo -pv” Code: # echo “`psrinfo -p` socket(s)” 2 socket(s) Code: # echo “`kstat -m cpu_info|grep -w core_id|uniq|wc -l` core(s) ” 8 core(s) … Continue reading
Posted in Solaris
Leave a comment