Quais são as duas seções desta saída dmidecode?

1

Eu executei o dmidecode no meu sistema para verificar certas informações do processador. No entanto, não tenho certeza do que as duas seções da saída indicam.

$ sudo dmidecode -t processor
# dmidecode 2.11
SMBIOS 2.7 present.

Handle 0x0004, DMI type 4, 42 bytes
Processor Information
    Socket Designation: CPU 1
    Type: Central Processor
    Family: Other
    Manufacturer:                  
    ID: 00 00 00 00 00 00 00 00
    Version:                                                
    Voltage: 3.3 V 2.9 V
    External Clock: Unknown
    Max Speed: 2000 MHz
    Current Speed: Unknown
    Status: Unpopulated
    Upgrade: Other
    L1 Cache Handle: 0x0005
    L2 Cache Handle: 0x0006
    L3 Cache Handle: 0x0007
    Serial Number: To Be Filled By O.E.M.
    Asset Tag: To Be Filled By O.E.M.
    Part Number: To Be Filled By O.E.M.
    Core Count: 1
    Core Enabled: 1
    Thread Count: 1
    Characteristics:
        64-bit capable

Handle 0x0035, DMI type 4, 42 bytes
Processor Information
    Socket Designation: P0
    Type: Central Processor
    Family: E-Series
    Manufacturer: AuthenticAMD

    Signature: Family 11, Model 15, Stepping 15
    Flags:
        MSR (Model specific registers)
        CX8 (CMPXCHG8 instruction supported)
        APIC (On-chip APIC hardware supported)
        SEP (Fast system call)
        ACPI (ACPI supported)
    Version: AMD E-450 APU with Radeon(tm) HD Graphics
    Voltage: 1.4 V
    External Clock: 100 MHz
    Max Speed: 1650 MHz
    Current Speed: 1650 MHz
    Status: Populated, Enabled
    Upgrade: None
    L1 Cache Handle: 0x002D
    L2 Cache Handle: 0x002E
    L3 Cache Handle: Not Provided
    Serial Number: Not Specified
    Asset Tag: Not Specified
    Part Number: Not Specified
    Core Count: 2
    Core Enabled: 2
    Thread Count: 2
    Characteristics:
        64-bit capable

A segunda seção ( Handle 0x0035 ) parece ser a informação do processador. Qual é a primeira seção ( Handle 0x0004 )? Eu olhei para a manpage, e alguns resultados do Google também, nenhum dos quais foram úteis.

    
por asheeshr 01.05.2014 / 04:35

1 resposta

1

De esta entrada de página man , eu vejo isso,

Some keywords may return more than one result on some systems (e.g. processor-version on a multi-processor system).

Assim, de acordo com a sua saída, o seu sistema parece ser um multiprocessador e é por isso que você está obtendo 2 informações de handles retornadas.

Também de esta resposta , vejo que

For example, if the BIOS detects a dual-core processor, it would report a value of 2 if it leaves both cores enabled, and it would report a value of 1 if it disables multi-core support.

Tudo bem, meu sistema não é multiprocessador. Por que ele está retornando 2 valores de manipulador?

veja aqui na seção de bugs .

More often than not, information contained in the DMI tables is inaccurate, incomplete or simply wrong.

    
por 01.05.2014 / 05:03