How do I hotplug a CPU on a running Linux system? I would like to dynamically enable or disable a CPU on a running system?
{ 11 comments }
FAQ tagged as:
How do I hotplug a CPU on a running Linux system? I would like to dynamically enable or disable a CPU on a running system?
{ 11 comments }
Q. What is the command to find the system configuration on Linux operating system using command line (text) mode?
A. Most of the hardware information can be extracted from /proc file system, for example display CPU and Memory information, enter:
cat /proc/meminfo
cat /proc/cpuinfo
See the complete list of Linux command to gathers up information about a Linux system
{ 16 comments }
Q. How do I display CPU information such as the number of CPUs and their speed?
A. Proc (/proc) file system provides easy information about CPU and their speed.
The proc filesystem is a pseudo-filesystem which is used as an interface to kernel data structures. It is commonly mounted at /proc. Most of [...]
{ 3 comments }