EntropySink

Technical & Scientific => Software => Topic started by: incognito on April 28, 2005, 04:12:03 PM

Title: Linux command
Post by: incognito on April 28, 2005, 04:12:03 PM
what command can i use to see my processor type and power in linux? :)
Title: Linux command
Post by: Ken Fitlike on April 28, 2005, 08:37:47 PM
Don't know of any specific commands but you can always take a peek inside /proc/cpuinfo.

edit:
Code: [Select]
cat /proc/cpuinfo [/edit]

If you have an x86 processor then the cpuid assembly instruction will get you a lot of information about the cpu. This (http://forums.entropysink.com/showthread.php?t=4) will give you some idea of the speed but not an absolute value.

Hopefully someone with more knowledge/experience than my next-to-none will be able to offer you a more useful suggestion.
Title: Linux command
Post by: -KEN- on April 28, 2005, 11:43:27 PM
I always thought that uname gave some info along those lines. Not speed, though.
Title: Linux command
Post by: ygfperson on April 29, 2005, 05:33:07 AM
what fitlike said is probably what you're looking for. at least it says both the type "AMD Athlon(tm) Processor" and the speed "1145.202" in mhz
Title: Linux command
Post by: incognito on April 29, 2005, 01:59:48 PM
Thank you guys for all the info guys, with all this info I was able to find the information I was looking for :)