Subject: | T2300 CPU incorrectly identified as 64 bit |
See http://ark.intel.com/Product.aspx?id=27233
#!/usr/bin/perl
use strict; use warnings;
use Sys::Info;
my $info = Sys::Info->new;
my $cpu = $info->device('CPU');
printf "%s (%s bit)\n", scalar $cpu->identify, $cpu->bitness;
Output:
Genuine Intel(R) CPU T2300 @ 1.66GHz (64 bit)
Subject: | perlinfo |
Message body not shown because it is not plain text.