On a hyperthreaded system it can be confusing to determine exactly how many CPU's and Cores a machine has in use. Using the /proc/cpuinfo command will provide the information, but you want to isolate the processor id and core id information for an accurate count.
I am on Red Hat Enterprise 5
-- Type uname -r to display the kernel release
#
# uname -r
2.6.18-164.el5
-- cpuinfo provides the information.
# cat /proc/cpuinfo
-- Isolate the number of processors.
# grep "physical id" /proc/cpuinfo | sort -u | wc -l
2
-- Isolate the number of cores
# grep "core id" /proc/cpuinfo | sort -u | wc -l
4
Remember your dreams
Subscribe to:
Post Comments (Atom)
Proactive Oracle DBA
This is a series of posts. I am working this to share some of the many scripts I schedule to automatically run to alert me of any current o...
-
Oracle 12.1.0.2.0 RMAN-04006: error from auxiliary database: ORA-12514: TNS:listener does not currently know of service requested i...
-
How to get Oracle's runInstaller to run on Linux or Unix environment using from Windows using Cygwin as an xterm emulator. Download an...
-
A great security measure is to monitor who is trying to unsuccessfully log into your database. Whether it's an innocent developer who fo...
No comments:
Post a Comment