I've been trying (for over a week, now) to get the CPU serial or motherboard serial using C or Python code for licensing purposes, is it even possible?
feedback
|
|
You need to use the CPUID instruction. Most C compilers have some support for inline assembly, but you will need to know what you are doing. | |||
|
feedback
|
|
Under Linux, you could use "lshw -quiet -xml" and parse its output. You'll find plenty of system information here: cpuid, motherboard id and much more. | |||||||||
feedback
|
|
You can get the CPUID. Maybe linux command 'dmidecode' can help you. You can exec this command,or load the source code of "dmidecode". Next is the output of "dmidecode -t processor":
| |||
feedback
|
|
I think I got my answer, I realized cpus no longer obtain a serial number and it's been like that for a while now. for the CPUID - it's unique only for the cpu model and therefore it's not helping me with licensing. Regarding the motherboard serial, I'm still searching | ||||
|
feedback
|
|
In Linux, motherboard information may be found under /sys/class/dmi eg
...but not all motherboards provide serial number through dmi...as you can see here. | |||
|
feedback
|