Jak zjistit maximální hodnotu RAM ve vašem systému

dmi1Většinou najdete maximální hodnotu paměti RAM, kterou podporuje váš systém v BIOSu, na štítku základní desky nebo v manuálu k ní. Dnes si popíšeme jednoduchý, ale užitečný trik, pro zjištění maximální podporované paměti RAM pomocí nástroje Dmidecode bez nutnosti otevření počítačové skříně nebo najetí do BIOSu.

 

Co je Dmidecode?

Dmidecode je nástroj pro zobrazení DMI daného počítače (někteří tomu říkají SMBIOS) do tabulky v srozumitelné podobě. Tato tabulka obsahuje popis hardwarových komponentů systému, jakož i další užitečné informace, jako je např. sériová čísla a verze BIOSu. Pomocí Dmidecode můžete získat tyto informace, aniž byste museli pracně zkoumat pro samotný hardware.

 

Zjistěte maximální hodnotu RAM podporovanou vaším systémem

Nejprve si zjistěte, zda je nástroj dmidecode již nainstalován ve vašem systému. Měl by být nainstalován ve výchozím nastavení Linux Mintu. Pokud tomu tak není, otevřete si terminál a zadejte příkaz:

Příkaz terminálu:
sudo apt-get install dmidecode

 

Když už máme nástroj dmidecode nainstalován, tak si pojďme společně zjistit maximální podporovanou hodnotu RAM. Stačí v terminálu zadat následující příkaz:

Příkaz terminálu:
sudo dmidecode -t 16

 

Ukázkový výstup:

[satapouch@satapouch ~]$ sudo dmidecode -t 16
[sudo] heslo pro satapouch: 
# dmidecode 2.12
SMBIOS 2.6 present.

Handle 0x0024, DMI type 16, 15 bytes
Physical Memory Array
	Location: System Board Or Motherboard
	Use: System Memory
	Error Correction Type: None
	Maximum Capacity: 32 GB
	Error Information Handle: No Error
	Number Of Devices: 4

[satapouch@satapouch ~]$

 

Jak můžete vidět na výše uvedeném výstupu, můj systém podpor až 32 GB RAM a má čtyři sloty RAM. Docela jednoduché, že?

Nyní si pojďme zjistit detaily aktuálně nainstalované RAM. Otevřete si tedy terminál a zadejte příkaz:

Příkaz terminálu:
sudo dmidecode -t 17

 

Ukázkový výstup:

[satapouch@satapouch ~]$ sudo dmidecode -t 17
# dmidecode 2.12
SMBIOS 2.6 present.

Handle 0x0027, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 4096 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM0
	Bank Locator: BANK0
	Type: DDR3
	Type Detail: Synchronous
	Speed: 1600 MHz
	Manufacturer: Kingston     
	Serial Number: 7130633
	Asset Tag: AssetTagNum0
	Part Number: KHX1600C9D3/4GX   
	Rank: 1

Handle 0x002A, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: No Module Installed
	Form Factor: DIMM
	Set: None
	Locator: DIMM1
	Bank Locator: BANK1
	Type: Unknown
	Type Detail: Synchronous
	Speed: Unknown
	Manufacturer: Manufacturer1
	Serial Number: SerNum1
	Asset Tag: AssetTagNum1
	Part Number: Array1_PartNumber1
	Rank: Unknown

Handle 0x002D, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM2
	Bank Locator: BANK2
	Type: DDR3
	Type Detail: Synchronous
	Speed: 1600 MHz
	Manufacturer: Kingston     
	Serial Number: 2F3663B
	Asset Tag: AssetTagNum2
	Part Number: 99U5474-010.A00LF 
	Rank: 1

Handle 0x0030, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM3
	Bank Locator: BANK3
	Type: DDR3
	Type Detail: Synchronous
	Speed: 1600 MHz
	Manufacturer: Kingston     
	Serial Number: 2E36A8B
	Asset Tag: AssetTagNum3
	Part Number: 99U5474-010.A00LF 
	Rank: 1

[satapouch@satapouch ~]$

Z výše uvedeného výstupu vidíte, že mám nainstalované tři RAM DIMM ve slotech 0, 2 a 3. Dva moduly mají velikost 2GB, jeden pak 4GB, celková velikost paměti RAM je 8GB, typ je DDR3 a rychlost je 1600 MHz.

Také si můžete zjistit kompletní informace o RAM pomocí následujících příkazů:

Příkaz terminálu:
sudo dmidecode -t memory
sudo dmidecode -t memory | less
sudo dmidecode -t memory | more

 

Ukázkový výstup:

[satapouch@satapouch ~]$ sudo dmidecode -t memory
# dmidecode 2.12
SMBIOS 2.6 present.

Handle 0x0024, DMI type 16, 15 bytes
Physical Memory Array
	Location: System Board Or Motherboard
	Use: System Memory
	Error Correction Type: None
	Maximum Capacity: 32 GB
	Error Information Handle: No Error
	Number Of Devices: 4

Handle 0x0027, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 4096 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM0
	Bank Locator: BANK0
	Type: DDR3
	Type Detail: Synchronous
	Speed: 1600 MHz
	Manufacturer: Kingston     
	Serial Number: 7130633
	Asset Tag: AssetTagNum0
	Part Number: KHX1600C9D3/4GX   
	Rank: 1

Handle 0x002A, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: No Module Installed
	Form Factor: DIMM
	Set: None
	Locator: DIMM1
	Bank Locator: BANK1
	Type: Unknown
	Type Detail: Synchronous
	Speed: Unknown
	Manufacturer: Manufacturer1
	Serial Number: SerNum1
	Asset Tag: AssetTagNum1
	Part Number: Array1_PartNumber1
	Rank: Unknown

Handle 0x002D, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM2
	Bank Locator: BANK2
	Type: DDR3
	Type Detail: Synchronous
	Speed: 1600 MHz
	Manufacturer: Kingston     
	Serial Number: 2F3663B
	Asset Tag: AssetTagNum2
	Part Number: 99U5474-010.A00LF 
	Rank: 1

Handle 0x0030, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM3
	Bank Locator: BANK3
	Type: DDR3
	Type Detail: Synchronous
	Speed: 1600 MHz
	Manufacturer: Kingston     
	Serial Number: 2E36A8B
	Asset Tag: AssetTagNum3
	Part Number: 99U5474-010.A00LF 
	Rank: 1

[satapouch@satapouch ~]$

Zajímají vás všechny systémové detaily, jako např. základní deska, paměť, BIOS atd? Tak zadejte následující příkaz, abyste si zobrazili všechny podrobnosti:

Příkaz terminálu:
sudo dmidecode

 

Ukázkový výstup:

Memory Device Mapped Address
	Starting Address: 0x00100000000
	Ending Address: 0x0017FFFFFFF
	Range Size: 2 GB
	Physical Device Handle: 0x002D
	Memory Array Mapped Address Handle: 0x0026
	Partition Row Position: 1

Handle 0x0030, DMI type 17, 28 bytes
Memory Device
	Array Handle: 0x0024
	Error Information Handle: No Error
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 2048 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM3
	Bank Locator: BANK3
	Type: DDR3
	Type Detail: Synchronous
	Speed: 1600 MHz
	Manufacturer: Kingston     
	Serial Number: 2E36A8B
	Asset Tag: AssetTagNum3
	Part Number: 99U5474-010.A00LF 
	Rank: 1

Handle 0x0031, DMI type 18, 23 bytes
32-bit Memory Error Information
	Type: OK
	Granularity: Unknown
	Operation: Unknown
	Vendor Syndrome: Unknown
	Memory Array Address: Unknown
	Device Address: Unknown
	Resolution: Unknown

Handle 0x0032, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00180000000
	Ending Address: 0x001FFFFFFFF
	Range Size: 2 GB
	Physical Device Handle: 0x0030
	Memory Array Mapped Address Handle: 0x0026
	Partition Row Position: 1

Handle 0x0033, DMI type 32, 20 bytes
System Boot Information
	Status: No errors detected

Handle 0x0034, DMI type 34, 11 bytes
Management Device
	Description: LM78-1
	Type: LM78
	Address: 0x00000000
	Address Type: I/O Port

Handle 0x0035, DMI type 26, 22 bytes
Voltage Probe
	Description: LM78A
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x0036, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 1
	Upper Non-critical Threshold: 2
	Lower Critical Threshold: 3
	Upper Critical Threshold: 4
	Lower Non-recoverable Threshold: 5
	Upper Non-recoverable Threshold: 6

Handle 0x0037, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0034
	Component Handle: 0x0034
	Threshold Handle: 0x0035

Handle 0x0038, DMI type 28, 22 bytes
Temperature Probe
	Description: LM78A
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x0039, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 1
	Upper Non-critical Threshold: 2
	Lower Critical Threshold: 3
	Upper Critical Threshold: 4
	Lower Non-recoverable Threshold: 5
	Upper Non-recoverable Threshold: 6

Handle 0x003A, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0034
	Component Handle: 0x0037
	Threshold Handle: 0x0038

Handle 0x003B, DMI type 27, 14 bytes
Cooling Device
	Temperature Probe Handle: 0x0038
	Type: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Cooling Unit Group: 1
	OEM-specific Information: 0x00000000
	Nominal Speed: Unknown Or Non-rotating

Handle 0x003C, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 1
	Upper Non-critical Threshold: 2
	Lower Critical Threshold: 3
	Upper Critical Threshold: 4
	Lower Non-recoverable Threshold: 5
	Upper Non-recoverable Threshold: 6

Handle 0x003D, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0034
	Component Handle: 0x003A
	Threshold Handle: 0x003B

Handle 0x003E, DMI type 27, 14 bytes
Cooling Device
	Temperature Probe Handle: 0x0038
	Type: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Cooling Unit Group: 1
	OEM-specific Information: 0x00000000
	Nominal Speed: Unknown Or Non-rotating

Handle 0x003F, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 1
	Upper Non-critical Threshold: 2
	Lower Critical Threshold: 3
	Upper Critical Threshold: 4
	Lower Non-recoverable Threshold: 5
	Upper Non-recoverable Threshold: 6

Handle 0x0040, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0034
	Component Handle: 0x003D
	Threshold Handle: 0x003E

Handle 0x0041, DMI type 29, 22 bytes
Electrical Current Probe
	Description: ABC
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x0042, DMI type 36, 16 bytes
Management Device Threshold Data

Handle 0x0043, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0034
	Component Handle: 0x0040
	Threshold Handle: 0x003E

Handle 0x0044, DMI type 39, 22 bytes
System Power Supply
	Power Unit Group: 1
	Location: To Be Filled By O.E.M.
	Name: To Be Filled By O.E.M.
	Manufacturer: To Be Filled By O.E.M.
	Serial Number: To Be Filled By O.E.M.
	Asset Tag: To Be Filled By O.E.M.
	Model Part Number: To Be Filled By O.E.M.
	Revision: To Be Filled By O.E.M.
	Max Power Capacity: Unknown
	Status: Not Present
	Type: <OUT OF SPEC>
	Input Voltage Range Switching: <OUT OF SPEC>
	Plugged: Yes
	Hot Replaceable: No
	Input Voltage Probe Handle: 0x0035
	Cooling Device Handle: 0x003B
	Input Current Probe Handle: 0x0041

Handle 0x0045, DMI type 34, 16 bytes
Management Device
	Description: 2
	Type: LM78
	Address: 0x00000000
	Address Type: I/O Port

Handle 0x0046, DMI type 26, 22 bytes
Voltage Probe
	Description: LM78B
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x0047, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 7
	Upper Non-critical Threshold: 8
	Lower Critical Threshold: 8
	Upper Critical Threshold: 10
	Lower Non-recoverable Threshold: 11
	Upper Non-recoverable Threshold: 12

Handle 0x0048, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0045
	Component Handle: 0x0045
	Threshold Handle: 0x0046

Handle 0x0049, DMI type 26, 22 bytes
Voltage Probe
	Description: LM78B
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x004A, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 13
	Upper Non-critical Threshold: 14
	Lower Critical Threshold: 15
	Upper Critical Threshold: 16
	Lower Non-recoverable Threshold: 17
	Upper Non-recoverable Threshold: 18

Handle 0x004B, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0045
	Component Handle: 0x0048
	Threshold Handle: 0x0049

Handle 0x004C, DMI type 28, 22 bytes
Temperature Probe
	Description: LM78B
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x004D, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 1
	Upper Non-critical Threshold: 2
	Lower Critical Threshold: 3
	Upper Critical Threshold: 4
	Lower Non-recoverable Threshold: 5
	Upper Non-recoverable Threshold: 6

Handle 0x004E, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0045
	Component Handle: 0x004B
	Threshold Handle: 0x004C

Handle 0x004F, DMI type 27, 14 bytes
Cooling Device
	Temperature Probe Handle: 0x004C
	Type: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Cooling Unit Group: 1
	OEM-specific Information: 0x00000000
	Nominal Speed: Unknown Or Non-rotating

Handle 0x0050, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 1
	Upper Non-critical Threshold: 2
	Lower Critical Threshold: 3
	Upper Critical Threshold: 4
	Lower Non-recoverable Threshold: 5
	Upper Non-recoverable Threshold: 6

Handle 0x0051, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0045
	Component Handle: 0x004E
	Threshold Handle: 0x004F

Handle 0x0052, DMI type 28, 22 bytes
Temperature Probe
	Description: LM78B
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x0053, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 1
	Upper Non-critical Threshold: 2
	Lower Critical Threshold: 3
	Upper Critical Threshold: 4
	Lower Non-recoverable Threshold: 5
	Upper Non-recoverable Threshold: 6

Handle 0x0054, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0045
	Component Handle: 0x0051
	Threshold Handle: 0x0052

Handle 0x0055, DMI type 27, 14 bytes
Cooling Device
	Temperature Probe Handle: 0x0052
	Type: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Cooling Unit Group: 1
	OEM-specific Information: 0x00000000
	Nominal Speed: Unknown Or Non-rotating

Handle 0x0056, DMI type 36, 16 bytes
Management Device Threshold Data
	Lower Non-critical Threshold: 1
	Upper Non-critical Threshold: 2
	Lower Critical Threshold: 3
	Upper Critical Threshold: 4
	Lower Non-recoverable Threshold: 5
	Upper Non-recoverable Threshold: 6

Handle 0x0057, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0045
	Component Handle: 0x0054
	Threshold Handle: 0x0055

Handle 0x0058, DMI type 29, 22 bytes
Electrical Current Probe
	Description: DEF
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x0059, DMI type 36, 16 bytes
Management Device Threshold Data

Handle 0x005A, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0045
	Component Handle: 0x0057
	Threshold Handle: 0x0055

Handle 0x005B, DMI type 29, 22 bytes
Electrical Current Probe
	Description: GHI
	Location: <OUT OF SPEC>
	Status: <OUT OF SPEC>
	Maximum Value: Unknown
	Minimum Value: Unknown
	Resolution: Unknown
	Tolerance: Unknown
	Accuracy: Unknown
	OEM-specific Information: 0x00000000
	Nominal Value: Unknown

Handle 0x005C, DMI type 36, 16 bytes
Management Device Threshold Data

Handle 0x005D, DMI type 35, 11 bytes
Management Device Component
	Description: To Be Filled By O.E.M.
	Management Device Handle: 0x0045
	Component Handle: 0x005A
	Threshold Handle: 0x0055

Handle 0x005E, DMI type 39, 22 bytes
System Power Supply
	Power Unit Group: 1
	Location: To Be Filled By O.E.M.
	Name: To Be Filled By O.E.M.
	Manufacturer: To Be Filled By O.E.M.
	Serial Number: To Be Filled By O.E.M.
	Asset Tag: To Be Filled By O.E.M.
	Model Part Number: To Be Filled By O.E.M.
	Revision: To Be Filled By O.E.M.
	Max Power Capacity: Unknown
	Status: Not Present
	Type: <OUT OF SPEC>
	Input Voltage Range Switching: <OUT OF SPEC>
	Plugged: Yes
	Hot Replaceable: No
	Input Voltage Probe Handle: 0x0035
	Cooling Device Handle: 0x003B
	Input Current Probe Handle: 0x0041

Handle 0x005F, DMI type 41, 11 bytes
Onboard Device
	Reference Designation:  Onboard IGD
	Type: Video
	Status: Enabled
	Type Instance: 1
	Bus Address: 0000:00:02.0

Handle 0x0060, DMI type 41, 11 bytes
Onboard Device
	Reference Designation:  Onboard LAN
	Type: Ethernet
	Status: Enabled
	Type Instance: 1
	Bus Address: 0000:00:19.0

Handle 0x0061, DMI type 41, 11 bytes
Onboard Device
	Reference Designation:  Onboard 1394
	Type: Other
	Status: Enabled
	Type Instance: 1
	Bus Address: 0000:03:1c.2

Handle 0x0062, DMI type 139, 54 bytes
OEM-specific Type
	Header and Data:
		8B 36 62 00 00 1E 8C 00 00 45 68 72 04 04 32 55
		F8 00 A2 02 A1 00 40 63 43 10 FE 81 03 DF 40 B2
		00 20 00 73 3C 10 08 00 00 00 00 00 00 00 00 00
		00 00 00 00 00 01
	Strings:
		V1394GUID

Handle 0x0063, DMI type 13, 22 bytes
BIOS Language Information
	Language Description Format: Abbreviated
	Installable Languages: 6
		eng
		fra
		ger
		chs
		chi
		jpn
	Currently Installed Language: eng

Handle 0x0064, DMI type 127, 4 bytes
End Of Table

[satapouch@satapouch ~]$ ^C
[satapouch@satapouch ~]$

 

To je vše. Opět je vidět, že síla příkazového řádku je obrovská, jen vědět, jak na něj. 🙂

 

Štítky , , , .Záložka pro permanentní odkaz.

Autor: archiv

články, jejichž autoři požádali o smazání účtu

4 reakce na Jak zjistit maximální hodnotu RAM ve vašem systému

  1. Jurajko říká:

    Moj vystup z prikazoveho riadku :

    # dmidecode 2.12
    SMBIOS 2.4 present.

    Handle 0x0025, DMI type 16, 15 bytes
    Physical Memory Array
    Location: System Board Or Motherboard
    Use: System Memory
    Error Correction Type: None
    Maximum Capacity: Unknown
    Error Information Handle: Not Provided
    Number Of Devices: 2

    Takze sa nestrachujte ak aj niekomu inemu to nevypise ziadnu hodnotu 🙂

    • Satapouch říká:

      Ty máš na základní desce jen jeden paměťový slot?

    • Jurajko říká:

      2 sloty a v kazdom po 1GB. Cely vystup :


      # dmidecode 2.12
      SMBIOS 2.4 present.
      45 structures occupying 1626 bytes.
      Table at 0x7F607010.

      Handle 0x0000, DMI type 0, 24 bytes
      BIOS Information
      Vendor: American Megatrends Inc.
      Version: 4.6.3
      Release Date: 01/16/2009
      Address: 0xF0000
      Runtime Size: 64 kB
      ROM Size: 1024 kB
      Characteristics:
      PCI is supported
      BIOS is upgradeable
      BIOS shadowing is allowed
      ESCD support is available
      Boot from CD is supported
      Selectable boot is supported
      BIOS ROM is socketed
      EDD is supported
      5.25"/1.2 MB floppy services are supported (int 13h)
      3.5"/720 kB floppy services are supported (int 13h)
      3.5"/2.88 MB floppy services are supported (int 13h)
      Print screen service is supported (int 5h)
      8042 keyboard services are supported (int 9h)
      Serial services are supported (int 14h)
      Printer services are supported (int 17h)
      CGA/mono video services are supported (int 10h)
      ACPI is supported
      LS-120 boot is supported
      ATAPI Zip drive boot is supported
      BIOS boot specification is supported
      Targeted content distribution is supported
      BIOS Revision: 4.6

      Handle 0x0001, DMI type 1, 27 bytes
      System Information
      Manufacturer: MICRO-STAR INTERNATIONAL CO., LTD
      Product Name: U-100
      Version: Ver.001
      Serial Number: FFFFFFFF
      UUID: 00020003-0004-0005-0006-000700080009
      Wake-up Type: Power Switch
      SKU Number: To be filled by O.E.M.
      Family: To be filled by O.E.M.

      Handle 0x0002, DMI type 2, 15 bytes
      Base Board Information
      Manufacturer: MICRO-STAR INTERNATIONAL CO., LTD
      Product Name: U-100
      Version: Ver.001
      Serial Number: FFFFFFFF
      Asset Tag: To be filled by O.E.M.
      Features:
      Board is a hosting board
      Board is replaceable
      Location In Chassis: To be filled by O.E.M.
      Chassis Handle: 0x0003
      Type: Motherboard
      Contained Object Handles: 0

      Handle 0x0003, DMI type 3, 21 bytes
      Chassis Information
      Manufacturer: MICRO-STAR INTERNATIONAL CO., LTD
      Type: Desktop
      Lock: Present
      Version: Ver.001
      Serial Number: FFFFFFFF
      Asset Tag: To Be Filled By O.E.M.
      Boot-up State: Safe
      Power Supply State: Safe
      Thermal State: Safe
      Security Status: None
      OEM Information: 0x00000000
      Height: Unspecified
      Number Of Power Cords: 1
      Contained Elements: 0

      Handle 0x0004, DMI type 4, 35 bytes
      Processor Information
      Socket Designation: CPU 1
      Type: Central Processor
      Family: Pentium M
      Manufacturer: Intel
      ID: C2 06 01 00 FF FB E9 BF
      Signature: Type 0, Family 6, Model 28, Stepping 2
      Flags:
      FPU (Floating-point unit on-chip)
      VME (Virtual mode extension)
      DE (Debugging extension)
      PSE (Page size extension)
      TSC (Time stamp counter)
      MSR (Model specific registers)
      PAE (Physical address extension)
      MCE (Machine check exception)
      CX8 (CMPXCHG8 instruction supported)
      APIC (On-chip APIC hardware supported)
      SEP (Fast system call)
      MTRR (Memory type range registers)
      PGE (Page global enable)
      MCA (Machine check architecture)
      CMOV (Conditional move instruction supported)
      PAT (Page attribute table)
      CLFSH (CLFLUSH instruction supported)
      DS (Debug store)
      ACPI (ACPI supported)
      MMX (MMX technology supported)
      FXSR (FXSAVE and FXSTOR instructions supported)
      SSE (Streaming SIMD extensions)
      SSE2 (Streaming SIMD extensions 2)
      SS (Self-snoop)
      HTT (Multi-threading)
      TM (Thermal monitor supported)
      PBE (Pending break enabled)
      Version: Intel(R) Atom(TM) CPU N270 @ 1.60GH
      Voltage: 3.3 V 2.9 V
      External Clock: 533 MHz
      Max Speed: 4000 MHz
      Current Speed: 1599 MHz
      Status: Populated, Enabled
      Upgrade: Other
      L1 Cache Handle: 0x0005
      L2 Cache Handle: 0x0006
      L3 Cache Handle: Not Provided
      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.

      Handle 0x0005, DMI type 7, 19 bytes
      Cache Information
      Socket Designation: L1-Cache
      Configuration: Enabled, Not Socketed, Level 1
      Operational Mode: Write Back
      Location: Internal
      Installed Size: 24 kB
      Maximum Size: 24 kB
      Supported SRAM Types:
      Other
      Installed SRAM Type: Other
      Speed: Unknown
      Error Correction Type: None
      System Type: Unified
      Associativity: Other

      Handle 0x0006, DMI type 7, 19 bytes
      Cache Information
      Socket Designation: L2-Cache
      Configuration: Enabled, Not Socketed, Level 2
      Operational Mode: Varies With Memory Address
      Location: Internal
      Installed Size: 512 kB
      Maximum Size: 512 kB
      Supported SRAM Types:
      Other
      Installed SRAM Type: Other
      Speed: Unknown
      Error Correction Type: None
      System Type: Unified
      Associativity: 8-way Set-associative

      Handle 0x0007, DMI type 126, 19 bytes
      Inactive

      Handle 0x0008, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J1A1
      Internal Connector Type: None
      External Reference Designator: PS2Mouse
      External Connector Type: PS/2
      Port Type: Mouse Port

      Handle 0x0009, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J1A1
      Internal Connector Type: None
      External Reference Designator: Keyboard
      External Connector Type: PS/2
      Port Type: Keyboard Port

      Handle 0x000A, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J2A1
      Internal Connector Type: None
      External Reference Designator: TV Out
      External Connector Type: Mini Centronics Type-14
      Port Type: Other

      Handle 0x000B, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J2A2A
      Internal Connector Type: None
      External Reference Designator: COM A
      External Connector Type: DB-9 male
      Port Type: Serial Port 16550A Compatible

      Handle 0x000C, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J2A2B
      Internal Connector Type: None
      External Reference Designator: Video
      External Connector Type: DB-15 female
      Port Type: Video Port

      Handle 0x000D, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J3A1
      Internal Connector Type: None
      External Reference Designator: USB1
      External Connector Type: Access Bus (USB)
      Port Type: USB

      Handle 0x000E, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J3A1
      Internal Connector Type: None
      External Reference Designator: USB2
      External Connector Type: Access Bus (USB)
      Port Type: USB

      Handle 0x000F, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J3A1
      Internal Connector Type: None
      External Reference Designator: USB3
      External Connector Type: Access Bus (USB)
      Port Type: USB

      Handle 0x0010, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J5A1
      Internal Connector Type: None
      External Reference Designator: LAN
      External Connector Type: RJ-45
      Port Type: Network Port

      Handle 0x0011, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J5A1
      Internal Connector Type: None
      External Reference Designator: USB4
      External Connector Type: Access Bus (USB)
      Port Type: USB

      Handle 0x0012, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J5A1
      Internal Connector Type: None
      External Reference Designator: USB5
      External Connector Type: Access Bus (USB)
      Port Type: USB

      Handle 0x0013, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J1E1 - ITP
      Internal Connector Type: Other
      External Reference Designator: Not Specified
      External Connector Type: None
      Port Type: Other

      Handle 0x0014, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J8J2 - SATA 0
      Internal Connector Type: Other
      External Reference Designator: Not Specified
      External Connector Type: None
      Port Type: Other

      Handle 0x0015, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J7H1 - SATA 1
      Internal Connector Type: Other
      External Reference Designator: Not Specified
      External Connector Type: None
      Port Type: Other

      Handle 0x0016, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J3C1 - CPU FAN
      Internal Connector Type: Other
      External Reference Designator: Not Specified
      External Connector Type: None
      Port Type: Other

      Handle 0x0017, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J3C1 - CPU FAN
      Internal Connector Type: Other
      External Reference Designator: Not Specified
      External Connector Type: None
      Port Type: Other

      Handle 0x0018, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J4J1 - MAIN POWER
      Internal Connector Type: Other
      External Reference Designator: Not Specified
      External Connector Type: None
      Port Type: Other

      Handle 0x0019, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J6J1 - ITP
      Internal Connector Type: Other
      External Reference Designator: Not Specified
      External Connector Type: None
      Port Type: Other

      Handle 0x001A, DMI type 8, 9 bytes
      Port Connector Information
      Internal Reference Designator: J7J1 - IDE
      Internal Connector Type: On Board IDE
      External Reference Designator: Not Specified
      External Connector Type: None
      Port Type: Other

      Handle 0x001B, DMI type 9, 13 bytes
      System Slot Information
      Designation: J6C1
      Type: x16 PCI Express
      Current Usage: Available
      Length: Long
      ID: 0
      Characteristics:
      3.3 V is provided
      Opening is shared
      PME signal is supported

      Handle 0x001C, DMI type 9, 13 bytes
      System Slot Information
      Designation: J7C1
      Type: x1 PCI Express
      Current Usage: In Use
      Length: Short
      ID: 1
      Characteristics:
      3.3 V is provided
      Opening is shared
      PME signal is supported

      Handle 0x001D, DMI type 9, 13 bytes
      System Slot Information
      Designation: J8C1
      Type: x1 PCI Express
      Current Usage: In Use
      Length: Short
      ID: 2
      Characteristics:
      3.3 V is provided
      Opening is shared
      PME signal is supported

      Handle 0x001E, DMI type 9, 13 bytes
      System Slot Information
      Designation: J8B1
      Type: 32-bit PCI
      Current Usage: Available
      Length: Short
      ID: 3
      Characteristics:
      3.3 V is provided
      Opening is shared
      PME signal is supported

      Handle 0x001F, DMI type 9, 13 bytes
      System Slot Information
      Designation: J9B1
      Type: 32-bit PCI
      Current Usage: Available
      Length: Short
      ID: 4
      Characteristics:
      3.3 V is provided
      Opening is shared
      PME signal is supported

      Handle 0x0020, DMI type 10, 6 bytes
      On Board Device Information
      Type: Video
      Status: Enabled
      Description: To Be Filled By O.E.M.

      Handle 0x0021, DMI type 10, 6 bytes
      On Board Device Information
      Type:
      Status: Enabled
      Description: To Be Filled By O.E.M.

      Handle 0x0022, DMI type 11, 5 bytes
      OEM Strings
      String 1: To Be Filled By O.E.M.

      Handle 0x0023, DMI type 12, 5 bytes
      System Configuration Options
      Option 1: To Be Filled By O.E.M.

      Handle 0x0024, DMI type 13, 22 bytes
      BIOS Language Information
      Language Description Format: Long
      Installable Languages: 1
      en|US|iso8859-1
      Currently Installed Language: en|US|iso8859-1

      Handle 0x0025, DMI type 16, 15 bytes
      Physical Memory Array
      Location: System Board Or Motherboard
      Use: System Memory
      Error Correction Type: None
      Maximum Capacity: Unknown
      Error Information Handle: Not Provided
      Number Of Devices: 2

      Handle 0x0026, DMI type 19, 15 bytes
      Memory Array Mapped Address
      Starting Address: 0x00000000000
      Ending Address: 0x000000003FF
      Range Size: 1 kB
      Physical Array Handle: 0x0025
      Partition Width: 0

      Handle 0x0027, DMI type 17, 27 bytes
      Memory Device
      Array Handle: 0x0025
      Error Information Handle: Not Provided
      Total Width: Unknown
      Data Width: 64 bits
      Size: Unknown
      Form Factor: DIMM
      Set: Unknown
      Locator: DIMM0
      Bank Locator: BANK0
      Type: DDR2
      Type Detail: Synchronous
      Speed: Unknown
      Manufacturer: Manufacturer0
      Serial Number: SerNum0
      Asset Tag: AssetTagNum0
      Part Number: PartNum0

      Handle 0x0028, DMI type 20, 19 bytes
      Memory Device Mapped Address
      Starting Address: 0x00000000000
      Ending Address: 0x000000003FF
      Range Size: 1 kB
      Physical Device Handle: 0x0027
      Memory Array Mapped Address Handle: 0x0026
      Partition Row Position: 1

      Handle 0x0029, DMI type 17, 27 bytes
      Memory Device
      Array Handle: 0x0025
      Error Information Handle: Not Provided
      Total Width: Unknown
      Data Width: 64 bits
      Size: Unknown
      Form Factor: DIMM
      Set: Unknown
      Locator: DIMM1
      Bank Locator: BANK1
      Type: DDR2
      Type Detail: Synchronous
      Speed: Unknown
      Manufacturer: Manufacturer1
      Serial Number: SerNum1
      Asset Tag: AssetTagNum1
      Part Number: PartNum1

      Handle 0x002A, DMI type 20, 19 bytes
      Memory Device Mapped Address
      Starting Address: 0x00000000000
      Ending Address: 0x000000003FF
      Range Size: 1 kB
      Physical Device Handle: 0x0029
      Memory Array Mapped Address Handle: 0x0026
      Partition Row Position: 1

      Handle 0x002B, DMI type 32, 20 bytes
      System Boot Information
      Status: No errors detected

      Handle 0x002C, DMI type 127, 4 bytes
      End Of Table

      • Satapouch říká:

        Hmm, a v tom případě je tohle co?

        Handle 0x0026, DMI type 19, 15 bytes
        Memory Array Mapped Address
        Starting Address: 0x00000000000
        Ending Address: 0x000000003FF
        Range Size: 1 kB
        Physical Array Handle: 0x0025
        Partition Width: 0

        Handle 0x0027, DMI type 17, 27 bytes
        Memory Device
        Array Handle: 0x0025
        Error Information Handle: Not Provided
        Total Width: Unknown
        Data Width: 64 bits
        Size: Unknown
        Form Factor: DIMM
        Set: Unknown
        Locator: DIMM0
        Bank Locator: BANK0
        Type: DDR2
        Type Detail: Synchronous
        Speed: Unknown
        Manufacturer: Manufacturer0
        Serial Number: SerNum0
        Asset Tag: AssetTagNum0
        Part Number: PartNum0

        Handle 0x0028, DMI type 20, 19 bytes
        Memory Device Mapped Address
        Starting Address: 0x00000000000
        Ending Address: 0x000000003FF
        Range Size: 1 kB
        Physical Device Handle: 0x0027
        Memory Array Mapped Address Handle: 0x0026
        Partition Row Position: 1

        Handle 0x0029, DMI type 17, 27 bytes
        Memory Device
        Array Handle: 0x0025
        Error Information Handle: Not Provided
        Total Width: Unknown
        Data Width: 64 bits
        Size: Unknown
        Form Factor: DIMM
        Set: Unknown
        Locator: DIMM1
        Bank Locator: BANK1
        Type: DDR2
        Type Detail: Synchronous
        Speed: Unknown
        Manufacturer: Manufacturer1
        Serial Number: SerNum1
        Asset Tag: AssetTagNum1
        Part Number: PartNum1

        Já mám pocit, že je to to, co tvrdíš, že Ti nic nezobrazuje…