<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>systemadmin.es &#187; dmidecode</title>
	<atom:link href="http://systemadmin.es/tag/dmidecode/feed" rel="self" type="application/rss+xml" />
	<link>http://systemadmin.es</link>
	<description>Tu referencia para la administración de sistemas</description>
	<lastBuildDate>Thu, 24 May 2012 07:51:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Como buscar el numero de sockets y cores que tiene un sistema</title>
		<link>http://systemadmin.es/2010/07/como-buscar-el-numero-de-sockets-y-cores-que-tiene-un-sistema</link>
		<comments>http://systemadmin.es/2010/07/como-buscar-el-numero-de-sockets-y-cores-que-tiene-un-sistema#comments</comments>
		<pubDate>Thu, 22 Jul 2010 07:00:19 +0000</pubDate>
		<dc:creator>Jordi Prats</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[dmidecode]]></category>

		<guid isPermaLink="false">http://systemadmin.es/?p=2743</guid>
		<description><![CDATA[Para hacernos una idea de la capacidad de un servidor es muy útil mirar en el /proc/cpuinfo de que equipo se trata. Pero desde allí no podemos ver realmente ni la cantidad de sockets ni el número real de cores. Vamos a suponer un equipo como el siguiente: # cat /proc/cpuinfo &#124; grep "^processor" processor [...]]]></description>
			<content:encoded><![CDATA[<p>Para hacernos una idea de la capacidad de un servidor es muy útil mirar en el <strong>/proc/cpuinfo</strong> de que equipo se trata. Pero desde allí no podemos ver realmente ni la <strong>cantidad de sockets</strong> ni el <strong>número real de cores</strong>.</p>
<p><!-- more --></p>
<p>Vamos a suponer un equipo como el siguiente:</p>
<pre>
# cat /proc/cpuinfo | grep "^processor"
processor	: 0
processor	: 1
processor	: 2
processor	: 3
processor	: 4
processor	: 5
processor	: 6
processor	: 7
processor	: 8
processor	: 9
processor	: 10
processor	: 11
processor	: 12
processor	: 13
processor	: 14
processor	: 15
</pre>
<p>A primera vista dispone de 16 cores, pero ¿ como podemos saber si son reales o esta habilitado el <a href="http://en.wikipedia.org/wiki/Hyper-threading">Hyper-Threading</a>?</p>
<p>Anteriormente ya hemos visto como usar el <a href="/tag/dmidecode">dmidecode</a> para, por ejemplo, <a href="/2009/05/como-ver-los-slots-libres-de-ram-con-dmidecode">ver los slots libres de RAM</a>. Especificando el tipo 4 (<strong>processor</strong>) podemos ver estos detalles:</p>
<pre>
# dmidecode -t 4
# dmidecode 2.10
SMBIOS 2.6 present.

Handle 0x0400, DMI type 4, 40 bytes
Processor Information
	Socket Designation: CPU1
	Type: Central Processor
	Family: Xeon
	Manufacturer: Intel
	ID: FF FF FF FF FF FB FF BF
	Signature: Type 0, Family 6, Model 26, Stepping 5
	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)
		PSE-36 (36-bit page size extension)
		CLFSH (CLFLUSH instruction supported)
		DS (Debug store)
		ACPI (ACPI supported)
		MMX (MMX technology supported)
		FXSR (Fast floating-point save and restore)
		SSE (Streaming SIMD extensions)
		SSE2 (Streaming SIMD extensions 2)
		SS (Self-snoop)
		HTT (Hyper-threading technology)
		TM (Thermal monitor supported)
		PBE (Pending break enabled)
	Version: Intel(R) Xeon(R) CPU           E5520  @ 2.27GHz
	Voltage: 1.2 V
	External Clock: 5860 MHz
	Max Speed: 3600 MHz
	Current Speed: 2266 MHz
	Status: Populated, Enabled
	Upgrade: Socket LGA1366
	L1 Cache Handle: 0x0700
	L2 Cache Handle: 0x0701
	L3 Cache Handle: 0x0702
	Serial Number: Not Specified
	Asset Tag: Not Specified
	Part Number: Not Specified
	Core Count: 4
	Core Enabled: 4
	Thread Count: 8
	Characteristics:
		64-bit capable

Handle 0x0401, DMI type 4, 40 bytes
Processor Information
	Socket Designation: CPU2
	Type: Central Processor
	Family: Xeon
	Manufacturer: Intel
	ID: FF FF FF FF FF FB FF BF
	Signature: Type 0, Family 6, Model 26, Stepping 5
	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)
		PSE-36 (36-bit page size extension)
		CLFSH (CLFLUSH instruction supported)
		DS (Debug store)
		ACPI (ACPI supported)
		MMX (MMX technology supported)
		FXSR (Fast floating-point save and restore)
		SSE (Streaming SIMD extensions)
		SSE2 (Streaming SIMD extensions 2)
		SS (Self-snoop)
		HTT (Hyper-threading technology)
		TM (Thermal monitor supported)
		PBE (Pending break enabled)
	Version: Intel(R) Xeon(R) CPU           E5520  @ 2.27GHz
	Voltage: 1.2 V
	External Clock: 5860 MHz
	Max Speed: 3600 MHz
	Current Speed: 2266 MHz
	Status: Populated, Idle
	Upgrade: Socket LGA1366
	L1 Cache Handle: 0x0703
	L2 Cache Handle: 0x0704
	L3 Cache Handle: 0x0705
	Serial Number: Not Specified
	Asset Tag: Not Specified
	Part Number: Not Specified
	Core Count: 4
	Core Enabled: 4
	Thread Count: 8
	Characteristics:
		64-bit capable
</pre>
<p>Podemos ver fácilmente el <strong>número de sockets</strong> con un <strong>grep</strong>:</p>
<pre>
# dmidecode -t processor | grep "Socket D"
	Socket Designation: CPU1
	Socket Designation: CPU2
</pre>
<p>A continuación podemos ver el número de cores reales con:</p>
<pre>
# dmidecode -t processor | grep "Core Count"
	Core Count: 4
	Core Count: 4
</pre>
<p>No me he cruzado con ningún sistema &#8220;capado&#8221;, pero también podemos ver el número de cores habilitados:</p>
<pre>
# dmidecode -t processor | grep "Core Enabled"
	Core Enabled: 4
	Core Enabled: 4
</pre>
<p>Finalmente, podemos ver si dispone de <strong>Hyper-threading</strong>:</p>
<pre>
# dmidecode -t processor | grep "HTT"
		HTT (Hyper-threading technology)
		HTT (Hyper-threading technology)
</pre>
<p>En el caso que este habilitado veremos que el <strong>Thread Count</strong> es mayor que el <strong>Core Count</strong>:</p>
<pre>
# dmidecode -t processor | grep "Thread"
	Thread Count: 8
	Thread Count: 8
</pre>

	Tags: <a href="http://systemadmin.es/tag/dmidecode" title="dmidecode" rel="tag">dmidecode</a><br />

	<h4 style="margin-top: 50px">Relacionados</h4>
	<ul class="st-related-posts">
	<li><a href="http://systemadmin.es/2009/11/maxima-memoria-soportada-por-el-hardware-de-un-sistema" onclick="pageTracker._trackEvent('relacionados','2030');" title="Maxima memoria soportada por el hardware de un sistema (11/November/2009)">Maxima memoria soportada por el hardware de un sistema</a></li>
	<li><a href="http://systemadmin.es/2009/10/identificar-el-fabricante-de-un-sistema-en-linux" onclick="pageTracker._trackEvent('relacionados','1978');" title="Identificar el fabricante de un sistema en Linux (26/October/2009)">Identificar el fabricante de un sistema en Linux</a></li>
	<li><a href="http://systemadmin.es/2009/05/como-ver-los-slots-libres-de-ram-con-dmidecode" onclick="pageTracker._trackEvent('relacionados','1727');" title="Como ver los slots libres de RAM con dmidecode (26/May/2009)">Como ver los slots libres de RAM con dmidecode</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://systemadmin.es/2010/07/como-buscar-el-numero-de-sockets-y-cores-que-tiene-un-sistema/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Maxima memoria soportada por el hardware de un sistema</title>
		<link>http://systemadmin.es/2009/11/maxima-memoria-soportada-por-el-hardware-de-un-sistema</link>
		<comments>http://systemadmin.es/2009/11/maxima-memoria-soportada-por-el-hardware-de-un-sistema#comments</comments>
		<pubDate>Wed, 11 Nov 2009 07:15:48 +0000</pubDate>
		<dc:creator>Jordi Prats</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[dmidecode]]></category>

		<guid isPermaLink="false">http://systemadmin.es/?p=2030</guid>
		<description><![CDATA[Mediante dmidecode podemos identificar muchas características del hardware de un sistema, por ejemplo el fabricante y su número de serie, o bien cuantos slots de memoria quedan libres. Hoy vamos a ver como identificar el máximo de memoria soportada por el hardware. Para ello simplemente deberemos usar el parámetro -t (&#8211;type) indicando que queremos ver [...]]]></description>
			<content:encoded><![CDATA[<p>Mediante <strong>dmidecode</strong> podemos identificar muchas <strong>características del hardware</strong> de un sistema, por ejemplo <a href="/2009/10/identificar-el-fabricante-de-un-sistema-en-linux">el fabricante y su número de serie</a>, o bien <a href="/2009/10/identificar-el-fabricante-de-un-sistema-en-linux">cuantos slots de memoria quedan libres</a>. Hoy vamos a ver como identificar el <strong>máximo de memoria</strong> soportada por el <strong>hardware</strong>.</p>
<p><!-- more --></p>
<p>Para ello simplemente deberemos usar el parámetro <strong>-t</strong> (<strong>&#8211;type</strong>) indicando que queremos ver lo relacionado con la <strong>memoria</strong> y veremos lo siguiente:</p>
<pre>
# dmidecode -t memory
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0x003C, DMI type 16, 15 bytes.
Physical Memory Array
        Location: System Board Or Motherboard
        Use: System Memory
        Error Correction Type: None
<strong>        Maximum Capacity: 8 GB</strong>
        Error Information Handle: Not Provided
        Number Of Devices: 4

Handle 0x003E, DMI type 17, 27 bytes.
Memory Device
        Array Handle: 0x003C
        Error Information Handle: Not Provided
        Total Width: 64 bits
        Data Width: 64 bits
        Size: 2048 MB
        Form Factor: DIMM
        Set: None
        Locator: DIMM0
        Bank Locator: BANK0
        Type: DDR2
        Type Detail: Synchronous
        Speed: 667 MHz (1.5 ns)
        Manufacturer: Manufacturer0
        Serial Number: SerNum0
        Asset Tag: AssetTagNum0
        Part Number: PartNum0
(...)
</pre>
<p>Podemos ver el máximo de memoria soportada en la linea que indica &#8220;<strong>Maximum Capacity</strong>&#8220;. Mediante un simple <strong>grep</strong> podremos ver solamente los datos que nos interesan.</p>
<p>Podemos ver unos ejemplos de diverso tipo de <strong>hardware</strong>:</p>
<pre>
# dmidecode -t memory | grep Maxi | grep Capa
        Maximum Capacity: 32 GB

# dmidecode -t memory | grep Maxi | grep Capa
        Maximum Capacity: 8 GB

# dmidecode -t memory | grep Maxi | grep Capa
                Maximum Capacity: 3 GB
</pre>
<p>En algunas ocasiones también nos pueden salir números raros:</p>
<pre>
# dmidecode -t memory | grep Maxi | grep Capa
        Maximum Capacity: 65280 MB
</pre>
<p>En este casi son casi <strong>64GB</strong> de <strong>RAM</strong>:</p>
<pre>
# echo "65280/1024" | bc -l
63.75000000000000000000
</pre>

	Tags: <a href="http://systemadmin.es/tag/dmidecode" title="dmidecode" rel="tag">dmidecode</a><br />

	<h4 style="margin-top: 50px">Relacionados</h4>
	<ul class="st-related-posts">
	<li><a href="http://systemadmin.es/2009/10/identificar-el-fabricante-de-un-sistema-en-linux" onclick="pageTracker._trackEvent('relacionados','1978');" title="Identificar el fabricante de un sistema en Linux (26/October/2009)">Identificar el fabricante de un sistema en Linux</a></li>
	<li><a href="http://systemadmin.es/2009/05/como-ver-los-slots-libres-de-ram-con-dmidecode" onclick="pageTracker._trackEvent('relacionados','1727');" title="Como ver los slots libres de RAM con dmidecode (26/May/2009)">Como ver los slots libres de RAM con dmidecode</a></li>
	<li><a href="http://systemadmin.es/2010/07/como-buscar-el-numero-de-sockets-y-cores-que-tiene-un-sistema" onclick="pageTracker._trackEvent('relacionados','2743');" title="Como buscar el numero de sockets y cores que tiene un sistema (22/July/2010)">Como buscar el numero de sockets y cores que tiene un sistema</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://systemadmin.es/2009/11/maxima-memoria-soportada-por-el-hardware-de-un-sistema/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Identificar el fabricante de un sistema en Linux</title>
		<link>http://systemadmin.es/2009/10/identificar-el-fabricante-de-un-sistema-en-linux</link>
		<comments>http://systemadmin.es/2009/10/identificar-el-fabricante-de-un-sistema-en-linux#comments</comments>
		<pubDate>Mon, 26 Oct 2009 07:45:38 +0000</pubDate>
		<dc:creator>Jordi Prats</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[dmidecode]]></category>
		<category><![CDATA[lspci]]></category>

		<guid isPermaLink="false">http://systemadmin.es/?p=1978</guid>
		<description><![CDATA[Mediante el uso de dmidecode y lspci podemos identificar fácilmente el fabricante de un sistema. Vamos a ver unos ejemplos con maquinas HP y Dell. Mediante el uso del parámetro -t podemos indicar al dmidecode que información queremos ver. Por ejemplo mediante system podemos ver información relativa al sistema. En el caso de un Dell [...]]]></description>
			<content:encoded><![CDATA[<p>Mediante el uso de <strong>dmidecode</strong> y <strong>lspci</strong> podemos identificar fácilmente el fabricante de un sistema. Vamos a ver unos ejemplos con maquinas <strong>HP</strong> y <strong>Dell</strong>.</p>
<p><!-- more --></p>
<p>Mediante el uso del parámetro <strong>-t</strong> podemos indicar al <strong>dmidecode</strong> que información queremos ver. Por ejemplo mediante <strong>system</strong> podemos ver información relativa al sistema. En el caso de un <strong>Dell PowerEdge 1950</strong> veriamos algo similar a lo siguiente:</p>
<pre>
# dmidecode -t system
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0x0100, DMI type 1, 27 bytes.
System Information
        Manufacturer: Dell Inc.
        Product Name: PowerEdge 1950
        Version: Not Specified
        Serial Number: C433M5J
        UUID: 11151C1C-3100-4067-8052-D2D01F1C221B
        Wake-up Type: Power Switch
        SKU Number: Not Specified
        Family: Not Specified

Handle 0x0C00, DMI type 12, 5 bytes.
System Configuration Options
        Option 1: NVRAM_CLR:  Clear user settable NVRAM areas and set defaults
        Option 2: PWRD_EN:  Close to enable password

Handle 0x2000, DMI type 32, 11 bytes.
System Boot Information
        Status: No errors detected
</pre>
<p>Como vemos, también podemos obtener el <strong>Serial Number</strong> del sistema sin tener que instalar el software de <strong>Dell</strong> y todos sus daemons. En el caso de un <strong>Dell R200</strong> veríamos lo siguiente:</p>
<pre>
# dmidecode -t 1
# dmidecode 2.7
SMBIOS 2.5 present.

Handle 0x0100, DMI type 1, 27 bytes.
System Information
        Manufacturer: Dell Inc.
        Product Name: PowerEdge R200
        Version: Not Specified
        Serial Number: 2WWMM8J
        UUID: 11151C1C-3300-444D-8099-B2C04F44344A
        Wake-up Type: Power Switch
        SKU Number: Not Specified
        Family: Not Specified
</pre>
<p>Mediante <strong>lspci</strong> también podemos ver si se trata de un sistema <strong>Dell</strong> por la controladora <strong>LSI</strong> que llevan:</p>
<pre>
# lspci | grep LSI
01:00.0 SCSI storage controller: LSI Logic / Symbios Logic SAS1068E PCI-Express Fusion-MPT SAS (rev 08)
</pre>
<p>En el caso de sistemas <strong>HP</strong> también podemos ver mediante dmidecode el <strong>Serial Number</strong> y el fabricante. Por ejemplo, en un <strong>HP DL360 G4</strong> veríamos lo siguiente:</p>
<pre>
Handle 0x0100
        DMI type 1, 25 bytes.
        System Information
                Manufacturer: HP
                Product Name: ProLiant DL360 G4
                Version: Not Specified
                Serial Number: XXX5XX033X
                UUID: 33363831-3334-4742-4A35-323230333350
                Wake-up Type: Power Switch
</pre>
<p>También podemos saber si el sistema es <strong>HP</strong> por la presencia de la <strong>iLO</strong> o la controladora <strong>Smart Array</strong> usando <strong>lspci</strong>:</p>
<pre>
# /sbin/lspci | grep Compaq
01:04.0 System peripheral: Compaq Computer Corporation Integrated Lights Out Controller (rev 01)
01:04.2 System peripheral: Compaq Computer Corporation Integrated Lights Out  Processor (rev 01)
02:01.0 RAID bus controller: Compaq Computer Corporation Smart Array 64xx (rev 01)
</pre>

	Tags: <a href="http://systemadmin.es/tag/dmidecode" title="dmidecode" rel="tag">dmidecode</a>, <a href="http://systemadmin.es/tag/lspci" title="lspci" rel="tag">lspci</a><br />

	<h4 style="margin-top: 50px">Relacionados</h4>
	<ul class="st-related-posts">
	<li><a href="http://systemadmin.es/2009/10/ver-los-dispositivos-pci-de-una-maquina" onclick="pageTracker._trackEvent('relacionados','1977');" title="Ver los dispositivos PCI de una máquina (25/October/2009)">Ver los dispositivos PCI de una máquina</a></li>
	<li><a href="http://systemadmin.es/2012/04/ver-el-modulo-del-kernel-en-uso-de-un-determinado-dispositivo-pci" onclick="pageTracker._trackEvent('relacionados','3829');" title="Ver el modulo del kernel en uso de un determinado dispositivo PCI (10/April/2012)">Ver el modulo del kernel en uso de un determinado dispositivo PCI</a></li>
	<li><a href="http://systemadmin.es/2012/02/relacionar-el-dispositivo-con-la-interfaz-de-red" onclick="pageTracker._trackEvent('relacionados','3746');" title="Relacionar el dispositivo con la interfaz de red (10/February/2012)">Relacionar el dispositivo con la interfaz de red</a></li>
	<li><a href="http://systemadmin.es/2009/11/maxima-memoria-soportada-por-el-hardware-de-un-sistema" onclick="pageTracker._trackEvent('relacionados','2030');" title="Maxima memoria soportada por el hardware de un sistema (11/November/2009)">Maxima memoria soportada por el hardware de un sistema</a></li>
	<li><a href="http://systemadmin.es/2009/05/como-ver-los-slots-libres-de-ram-con-dmidecode" onclick="pageTracker._trackEvent('relacionados','1727');" title="Como ver los slots libres de RAM con dmidecode (26/May/2009)">Como ver los slots libres de RAM con dmidecode</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://systemadmin.es/2009/10/identificar-el-fabricante-de-un-sistema-en-linux/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Como ver los slots libres de RAM con dmidecode</title>
		<link>http://systemadmin.es/2009/05/como-ver-los-slots-libres-de-ram-con-dmidecode</link>
		<comments>http://systemadmin.es/2009/05/como-ver-los-slots-libres-de-ram-con-dmidecode#comments</comments>
		<pubDate>Tue, 26 May 2009 07:20:33 +0000</pubDate>
		<dc:creator>Jordi Prats</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[dmidecode]]></category>

		<guid isPermaLink="false">http://systemadmin.es/?p=1727</guid>
		<description><![CDATA[Una duda que suele salir en los servidores es cuantos slots quedan libres para añadir memoria y de que tamaño son el resto. La solución fácil sería apagar el servidor y abrirlo, pero mediante dmidecode podemos ver lo mismo. Si ejecutamos dmidecode sin parámetros veremos la salida de todo. Mediante &#8211;type podemos filtrar por tipo. [...]]]></description>
			<content:encoded><![CDATA[<p>Una duda que suele salir en los servidores es cuantos slots quedan libres para añadir memoria y de que tamaño son el resto. La solución fácil sería apagar el servidor y abrirlo, pero mediante <strong>dmidecode</strong> podemos ver lo mismo.</p>
<p><!-- more --></p>
<p>Si ejecutamos <strong>dmidecode</strong> sin parámetros veremos la salida de todo. Mediante <strong>&#8211;type</strong> podemos filtrar por tipo. Por ejemplo, por memoria:</p>
<pre>
# dmidecode --type memory
# dmidecode 2.7
SMBIOS 2.4 present.

Handle 0x1000, DMI type 16, 15 bytes.
Physical Memory Array
        Location: System Board Or Motherboard
        Use: System Memory
        Error Correction Type: Multi-bit ECC
        Maximum Capacity: 32 GB
        Error Information Handle: Not Provided
        Number Of Devices: 8

Handle 0x1100, DMI type 17, 28 bytes.
Memory Device
        Array Handle: 0x1000
        Error Information Handle: Not Provided
        Total Width: 72 bits
        Data Width: 64 bits
        Size: 2048 MB
        Form Factor: &lt;OUT OF SPEC&gt;
        Set: 1
        Locator: DIMM1
        Bank Locator: Not Specified
        Type: &lt;OUT OF SPEC&gt;
        Type Detail: Synchronous
        Speed: 667 MHz (1.5 ns)
        Manufacturer: 80CE808980CE
        Serial Number: 511AE99A
        Asset Tag: 010721
        Part Number: M395T5750CZ4-CE65

Handle 0x1101, DMI type 17, 28 bytes.
Memory Device
        Array Handle: 0x1000
        Error Information Handle: Not Provided
        Total Width: 72 bits
        Data Width: 64 bits
        Size: 2048 MB
        Form Factor: &lt;OUT OF SPEC&gt;
        Set: 1
        Locator: DIMM2
        Bank Locator: Not Specified
        Type: &lt;OUT OF SPEC&gt;
        Type Detail: Synchronous
        Speed: 667 MHz (1.5 ns)
        Manufacturer: 80CE808980CE
        Serial Number: 511AE988
        Asset Tag: 010721
        Part Number: M395T5750CZ4-CE65

Handle 0x1102, DMI type 17, 28 bytes.
Memory Device
        Array Handle: 0x1000
        Error Information Handle: Not Provided
        Total Width: 72 bits
        Data Width: 64 bits
        Size: 2048 MB
        Form Factor: &lt;OUT OF SPEC&gt;
        Set: 2
        Locator: DIMM3
        Bank Locator: Not Specified
        Type: &lt;OUT OF SPEC&gt;
        Type Detail: Synchronous
        Speed: 667 MHz (1.5 ns)
        Manufacturer: 80CE808980CE
        Serial Number: 511AE99B
        Asset Tag: 010721
        Part Number: M395T5750CZ4-CE65

Handle 0x1103, DMI type 17, 28 bytes.
Memory Device
        Array Handle: 0x1000
        Error Information Handle: Not Provided
        Total Width: 72 bits
        Data Width: 64 bits
        Size: 2048 MB
        Form Factor: &lt;OUT OF SPEC&gt;
        Set: 2
        Locator: DIMM4
        Bank Locator: Not Specified
        Type: &lt;OUT OF SPEC&gt;
        Type Detail: Synchronous
        Speed: 667 MHz (1.5 ns)
        Manufacturer: 80CE808980CE
        Serial Number: 511AEAA5
        Asset Tag: 010721
        Part Number: M395T5750CZ4-CE65

Handle 0x1104, DMI type 17, 28 bytes.
Memory Device
        Array Handle: 0x1000
        Error Information Handle: Not Provided
        Total Width: 72 bits
        Data Width: 64 bits
        Size: No Module Installed
        Form Factor: &lt;OUT OF SPEC&gt;
        Set: 3
        Locator: DIMM5
        Bank Locator: Not Specified
        Type: &lt;OUT OF SPEC&gt;
        Type Detail: Synchronous
        Speed: Unknown
        Manufacturer:
        Serial Number:
        Asset Tag:
        Part Number:

Handle 0x1105, DMI type 17, 28 bytes.
Memory Device
        Array Handle: 0x1000
        Error Information Handle: Not Provided
        Total Width: 72 bits
        Data Width: 64 bits
        Size: No Module Installed
        Form Factor: &lt;OUT OF SPEC&gt;
        Set: 3
        Locator: DIMM6
        Bank Locator: Not Specified
        Type: &lt;OUT OF SPEC&gt;
        Type Detail: Synchronous
        Speed: Unknown
        Manufacturer:
        Serial Number:
        Asset Tag:
        Part Number:

Handle 0x1106, DMI type 17, 28 bytes.
Memory Device
        Array Handle: 0x1000
        Error Information Handle: Not Provided
        Total Width: 72 bits
        Data Width: 64 bits
        Size: No Module Installed
        Form Factor: &lt;OUT OF SPEC&gt;
        Set: 4
        Locator: DIMM7
        Bank Locator: Not Specified
        Type: &lt;OUT OF SPEC&gt;
        Type Detail: Synchronous
        Speed: Unknown
        Manufacturer:
        Serial Number:
        Asset Tag:
        Part Number:

Handle 0x1107, DMI type 17, 28 bytes.
Memory Device
        Array Handle: 0x1000
        Error Information Handle: Not Provided
        Total Width: 72 bits
        Data Width: 64 bits
        Size: No Module Installed
        Form Factor: &lt;OUT OF SPEC&gt;
        Set: 4
        Locator: DIMM8
        Bank Locator: Not Specified
        Type: &lt;OUT OF SPEC&gt;
        Type Detail: Synchronous
        Speed: Unknown
        Manufacturer:
        Serial Number:
        Asset Tag:
        Part Number:
</pre>
<p>Con un <strong>grep</strong> por &#8220;<strong>Size</strong>&#8221; nos podemos hacer una idea muy rápida de la memoria instalada en el sistema:</p>
<pre>
# dmidecode --type memory | grep Size
        Size: 2048 MB
        Size: 2048 MB
        Size: 2048 MB
        Size: 2048 MB
        Size: No Module Installed
        Size: No Module Installed
        Size: No Module Installed
        Size: No Module Installed
</pre>

	Tags: <a href="http://systemadmin.es/tag/dmidecode" title="dmidecode" rel="tag">dmidecode</a><br />

	<h4 style="margin-top: 50px">Relacionados</h4>
	<ul class="st-related-posts">
	<li><a href="http://systemadmin.es/2009/11/maxima-memoria-soportada-por-el-hardware-de-un-sistema" onclick="pageTracker._trackEvent('relacionados','2030');" title="Maxima memoria soportada por el hardware de un sistema (11/November/2009)">Maxima memoria soportada por el hardware de un sistema</a></li>
	<li><a href="http://systemadmin.es/2009/10/identificar-el-fabricante-de-un-sistema-en-linux" onclick="pageTracker._trackEvent('relacionados','1978');" title="Identificar el fabricante de un sistema en Linux (26/October/2009)">Identificar el fabricante de un sistema en Linux</a></li>
	<li><a href="http://systemadmin.es/2010/07/como-buscar-el-numero-de-sockets-y-cores-que-tiene-un-sistema" onclick="pageTracker._trackEvent('relacionados','2743');" title="Como buscar el numero de sockets y cores que tiene un sistema (22/July/2010)">Como buscar el numero de sockets y cores que tiene un sistema</a></li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://systemadmin.es/2009/05/como-ver-los-slots-libres-de-ram-con-dmidecode/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

