You can see how many cores (virtual) that a server has:
# grep -c ^core /proc/cpuinfo
16
This physical machine has 8 cores, but the kernel sees 16 because of hyperthreading hardware setting.
You can see how many cores (virtual) that a server has:
# grep -c ^core /proc/cpuinfo
16
This physical machine has 8 cores, but the kernel sees 16 because of hyperthreading hardware setting.