Translation(s): English - Italiano

(!) ?Discussion

Come identificare un dispositivo > RAM


Come identificare la memoria RAM installata.

Molte persone usano semplicemente free, disponibile su tutti i sistemi Debian, per elencare la quantità di RAM installata (rilevata). Gli utenti Gnome possono installare ed usare hardinfo, mentre per KDE si potrà usare kinfocenter.

free

free è il comando Unix per avere informazioni sulla memoria libera, utilizzata e disponibile sul sistema:

$free
             total       used       free     shared    buffers     cached
Mem:       2067696     790564    1277132          0     119108     184924
-/+ buffers/cache:     486532    1581164
Swap:       998572     316908     681664

Gnome: hardinfo

Lo strumento Informazioni di Sistema di Gnome (Hardinfo in Menu Applicazioni/Strumenti di Sistema, dal pacchetto hardinfo) ha una sezione dedicata alla RAM installata.

HowToIdentifyADevice/RAM/hardinfo.png

KDE: KInfocenter

Lo strumento KInfoCenter di KDE (K Menu / Sistema / KInfoCenter Info Center, dal pacchetto kcontrol) ha una sezione dedicata alla RAM installata.

HowToIdentifyADevice/RAM/KInfoCenter.png

dmidecode

dmidecode può essere usato per interrogare la zona DMI della scheda madre a proposito di RAM, slot Ram e controller della memoria:

In Lenny dmidecode -t memory è equivalente ad eseguire i seguenti 4 comandi (ad esempio dmidecode -t 5 -t 6 -t 16 -t 17)

Dispositivo di memoria

$ dmidecode -t 17
# dmidecode 2.9
SMBIOS 2.4 present.

Handle 0x002A, DMI type 17, 27 bytes
Memory Device
        Array Handle: 0x0029
        Error Information Handle: No Error
        Total Width: 64 bits
        Data Width: 64 bits
        Size: 1024 MB
        Form Factor: SODIMM
        Set: None
        Locator: DIMM 1
        Bank Locator: Bank 0/1
        Type: DDR2
        Type Detail: Synchronous
        Speed: Unknown
        Manufacturer: Not Specified
        Serial Number: Not Specified
        Asset Tag: Not Specified
        Part Number: Not Specified

Handle 0x002B, DMI type 17, 27 bytes
Memory Device
        Array Handle: 0x0029
        Error Information Handle: No Error
        Total Width: 64 bits
        Data Width: 64 bits
        Size: 1024 MB
        Form Factor: SODIMM
        Set: None
        Locator: DIMM 2
        Bank Locator: Bank 2/3
        Type: DDR2
        Type Detail: Synchronous
        Speed: Unknown
        Manufacturer: Not Specified
        Serial Number: Not Specified
        Asset Tag: Not Specified
        Part Number: Not Specified

Informazioni sul controller della memoria

$ dmidecode -t 5
Handle 0x0007, DMI type 5, 20 bytes
Memory Controller Information
        Error Detecting Method: None
        Error Correcting Capabilities:
                None
        Supported Interleave: One-way Interleave
        Current Interleave: One-way Interleave
        Maximum Memory Module Size: 2048 MB
        Maximum Total Memory Size: 4096 MB
        Supported Speeds:
                Other
        Supported Memory Types:
                DIMM
                SDRAM
        Memory Module Voltage: 2.9 V
        Associated Memory Slots: 2
                0x0008
                0x0009
        Enabled Error Correcting Capabilities:
                Unknown

Informazioni sul modulo della memoria

$ dmidecode -t 6
# dmidecode 2.9
SMBIOS 2.4 present.

Handle 0x0008, DMI type 6, 12 bytes
Memory Module Information
        Socket Designation: DIMM Slot 1
        Bank Connections: 0 3
        Current Speed: Unknown
        Type: DIMM SDRAM
        Installed Size: 1024 MB (Double-bank Connection)
        Enabled Size: 1024 MB (Double-bank Connection)
        Error Status: OK

Handle 0x0#009, DMI type 6, 12 bytes
Memory Module Information
        Socket Designation: DIMM Slot 2
        Bank Connections: 4 7
        Current Speed: Unknown
        Type: DIMM SDRAM
        Installed Size: 1024 MB (Double-bank Connection)
        Enabled Size: 1024 MB (Double-bank Connection)
        Error Status: OK

Riferimenti