in reply to how I can find Processor serial number or (Processor ID) ?

or even shorter on a *nix box:
perl -e 'open PROC, "/proc/cpuinfo"; my @cpu = <PROC>; close PROC; pri +nt join("", @cpu)'
--------------------------------
masses are the opiate for religion.

Replies are listed 'Best First'.
Re^2: how I can find Processor serial number or (Processor ID) ?
by walto (Pilgrim) on Apr 18, 2008 at 15:47 UTC
     /proc/cpuinfo
    will not return the serial number of the system.
    If you do not need this information it would be an easy approach without additional resources. (provided it is a *nix system):
     my @systeminfo = `cat /proc/cpuinfo`;