How to find the runlevel in linux
How to find number of processors in linux
$cat /proc/cpuinfo | grep processor
processor : 0
processor : 1
It has two logical processors
$cat /proc/cpuinfo|grep physical
physical id : 0
physical id : 0
It has single physical processor
Processor: Intel dual core
Janu
$cat /proc/cpuinfo | grep processor
processor : 0
processor : 1
It has two logical processors
$cat /proc/cpuinfo|grep physical
physical id : 0
physical id : 0
It has single physical processor
Processor: Intel dual core
Janu
Comments