cpuinfo

How do I find out my CPU architecture information under Linux operating systems?

{ 11 comments }

I need to call the function called foo() using echo command in the same statement. How do I all or invoke the function using the echo statement?

{ 1 comment }

Linux Hotplug a CPU

by Vivek Gite on April 2, 2009 · 16 comments

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?

{ 16 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 [...]

{ 36 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 it is [...]

{ 21 comments }

How do I determine if my CPU is 64bit or not under Linux operating systems?

{ 52 comments }