<?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>Admon Home &#187; dell</title>
	<atom:link href="http://www.admon.org/tag/dell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.admon.org</link>
	<description>Linux System Administration</description>
	<lastBuildDate>Wed, 08 Feb 2012 10:24:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>About CPU: The logical and physical cores</title>
		<link>http://www.admon.org/about-cpu-the-logical-and-physical-cores/</link>
		<comments>http://www.admon.org/about-cpu-the-logical-and-physical-cores/#comments</comments>
		<pubDate>Mon, 31 May 2010 09:52:01 +0000</pubDate>
		<dc:creator>joseph</dc:creator>
				<category><![CDATA[Hardwares]]></category>
		<category><![CDATA[CPU]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[HyperThreading]]></category>
		<category><![CDATA[Logical CPU]]></category>
		<category><![CDATA[Processor]]></category>

		<guid isPermaLink="false">http://planet.admon.org/?p=605</guid>
		<description><![CDATA[This post will demonstrate a detailed method of enumerating processors in a running linux server. Before delving into the topic, some terms should be defined: Physical Package: The physical package is a microprocessor. For each physical package, it plugs into a physical socket on a mainboard, and may contain one or more processor cores. Processor [...]]]></description>
			<content:encoded><![CDATA[<p>This post will demonstrate a detailed method of enumerating processors in a running linux server. Before delving into the topic, some terms should be defined:</p>
<ul>
<li><strong>Physical Package</strong>: The physical package is a microprocessor. For each physical package, it plugs into a physical socket on a mainboard, and may contain one or more processor cores.<span id="more-605"></span></li>
<li><strong>Processor Core</strong>: The circuitry that provides ability to decode and execute instructions. A processor core may contain one or more logical processors.</li>
<li><strong>Logical Processor</strong>: The basic unit of processor hardware that allows the software executive in the operating system to dispatch a task or execute a thread context. Each logical processor can execute only one thread context at a time.</li>
<li><a href="http://en.wikipedia.org/wiki/Hyper-threading"><strong>Hyper-Threading</strong></a>: A feature within the IA-32 family of processors, where each processor core provides the functionality of more than one logical processor.</li>
<li><strong>Multi-Core Processor</strong>: A physical package that contains more than one processor core.</li>
</ul>
<p><em>(The above definitions come from <a href="http://software.intel.com/en-us/articles/optimal-performance-on-multithreaded-software-with-intel-tools/">Intel&#8217;s website</a>, it would be decent to identify what we&#8217;re talking.)</em></p>
<p>As we know, on a running Linux/UNIX system, a detailed information of CPU can be retrieved from <em>/proc/cpuinfo</em>, but how can we identify the logical processors and the physical cores smartly?  Basically, there are two rules that will help you achieve these info.</p>
<p>1. Any CPU with the same &#8220;core id&#8221; are hyperthreads in the same processor core, which means this process core has Hyper-Threading enabled.<br />
2. The &#8220;physical id&#8221; identifies physical package. Any cpu with the same physical id are threads or cores in the same physical socket.</p>
<p>Let me take <a href="http://www.dell.com/us/en/dfb/servers/pedge_2950/pd.aspx?refid=pedge_2950&amp;cs=28&amp;s=dfb">Dell PowerEdge 2950</a> as an example, we&#8217;re running Red Hat Enterprise Linux AS release 4 Update 7 on this server.</p>
<pre>$ cat /proc/cpuinfo
processor       : 0
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz
stepping        : 10
cpu MHz         : 1995.005
cache size      : 6144 KB
physical id     : 0
siblings        : 4
core id         : 0
cpu cores       : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl tm2 cx16 xtpr lahf_lm
bogomips        : 3992.87
clflush size    : 64
cache_alignment : 64
address sizes   : 38 bits physical, 48 bits virtual
power management:                                                                   

processor       : 1
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz
stepping        : 10
cpu MHz         : 1995.005
cache size      : 6144 KB
physical id     : 1
siblings        : 4
core id         : 4
cpu cores       : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl tm2 cx16 xtpr lahf_lm
bogomips        : 3990.03
clflush size    : 64
cache_alignment : 64
address sizes   : 38 bits physical, 48 bits virtual
power management:                                                                   

processor       : 2
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz
stepping        : 10
cpu MHz         : 1995.005
cache size      : 6144 KB
physical id     : 0
siblings        : 4
core id         : 2
cpu cores       : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl tm2 cx16 xtpr lahf_lm
bogomips        : 3990.01
clflush size    : 64
cache_alignment : 64
address sizes   : 38 bits physical, 48 bits virtual
power management:                                                                   

processor       : 3
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz
stepping        : 10
cpu MHz         : 1995.005
cache size      : 6144 KB
physical id     : 1
siblings        : 4
core id         : 6
cpu cores       : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl tm2 cx16 xtpr lahf_lm
bogomips        : 3990.03
clflush size    : 64
cache_alignment : 64
address sizes   : 38 bits physical, 48 bits virtual
power management:                                                                   

processor       : 4
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz
stepping        : 10
cpu MHz         : 1995.005
cache size      : 6144 KB
physical id     : 0
siblings        : 4
core id         : 1
cpu cores       : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl tm2 cx16 xtpr lahf_lm
bogomips        : 3989.99
clflush size    : 64
cache_alignment : 64
address sizes   : 38 bits physical, 48 bits virtual
power management:                                                                   

processor       : 5
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz
stepping        : 10
cpu MHz         : 1995.005
cache size      : 6144 KB
physical id     : 1
siblings        : 4
core id         : 5
cpu cores       : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl tm2 cx16 xtpr lahf_lm
bogomips        : 3990.02
clflush size    : 64
cache_alignment : 64
address sizes   : 38 bits physical, 48 bits virtual
power management:                                                                   

processor       : 6
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz
stepping        : 10
cpu MHz         : 1995.005
cache size      : 6144 KB
physical id     : 0
siblings        : 4
core id         : 3
cpu cores       : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl tm2 cx16 xtpr lahf_lm
bogomips        : 3990.01
clflush size    : 64
cache_alignment : 64
address sizes   : 38 bits physical, 48 bits virtual
power management:                                                                   

processor       : 7
vendor_id       : GenuineIntel
cpu family      : 6
model           : 23
model name      : Intel(R) Xeon(R) CPU           E5405  @ 2.00GHz
stepping        : 10
cpu MHz         : 1995.005
cache size      : 6144 KB
physical id     : 1
siblings        : 4
core id         : 7
cpu cores       : 4
fpu             : yes
fpu_exception   : yes
cpuid level     : 13
wp              : yes
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm syscall nx lm pni monitor ds_cpl tm2 cx16 xtpr lahf_lm
bogomips        : 3990.03
clflush size    : 64
cache_alignment : 64
address sizes   : 38 bits physical, 48 bits virtual
power management:</pre>
<p>From the outputs, we can see that, there&#8217;re 8 processor-cores in 2 physical packages (in other words, there&#8217;re two quad-cores CPU on this server), and none of them has Hyper-Threading enabled. Here&#8217;s a quick explanation for some keywords that listed above:</p>
<ul>
<li>The processor entry contains a unique identifier for this logical processor.</li>
<li>The physical id entry contains a unique identifier for each physical package.</li>
<li>The core id entry holds a unique identifier for each core.</li>
<li>The siblings entry lists the number of logical processors that exist on the same physical package.</li>
<li>The cpu cores entry contains the number of cores that exist on the same physical package.</li>
<li>The vendor id entry holds the string. GenuineIntel if the processor is an Intel processor, and AuthenticAMD if it&#8217;s an AMD processor.</li>
</ul>
<p>There are some commands here to help identify these type of information quickly on a running Linux:</p>
<ol>
<li> Total amount of processors including the logical ones:
<pre># cat /proc/cpuinfo | grep "processor"| wc -l</pre>
</li>
<li> Total amount of CPU package:
<pre># cat /proc/cpuinfo | grep "physical id" | sort | uniq | wc -l</pre>
</li>
<li> How many cores for each CPU. (Here we should call CPU as physical package as we mentioned above):
<pre># cat /proc/cpuinfo | grep "cpu cores" | wc -l</pre>
</li>
<li> For each physical CPU, the amount of Logical CPU (the logical CPU can be physical cores, soft cores like threaded, or both).
<pre># cat /proc/cpuinfo | grep "siblings"</pre>
</li>
</ol>
<p>Finally, please note that the msg from <em>/proc/cpuinfo</em> depends on your operating systems, which means it&#8217;s not always right or up-to-date. If you faced any issues, please create a thread at <a href="http://forum.admon.org/hardware-forum/">our support forum</a>, thanks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.admon.org/about-cpu-the-logical-and-physical-cores/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install Dell OMSA on Redhat Enterprise Linux</title>
		<link>http://www.admon.org/install-dell-omsa-on-redhat-enterprise-linux-45/</link>
		<comments>http://www.admon.org/install-dell-omsa-on-redhat-enterprise-linux-45/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 05:33:34 +0000</pubDate>
		<dc:creator>joseph</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Hardwares]]></category>
		<category><![CDATA[System Tuning]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[OMSA]]></category>
		<category><![CDATA[redhat]]></category>

		<guid isPermaLink="false">http://planet.admon.org/?p=453</guid>
		<description><![CDATA[Here we listed 3 ways on the installation of Dell OpenManage Server Administrator on a Redhat Enterprise Linux, you can follows these steps on CentOS or SLES 10, they would work well. 1, Install from RPM packages Generally we need these RPM packages, you can search and download them from Google.com. [root@storage cax]# ls srvadmin-cm-6.1.0-648.i386.rpm       [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://planet.admon.org/wp-content/uploads/2009/11/dell.jpg"><img class="alignleft size-thumbnail wp-image-767" title="dell" src="http://planet.admon.org/wp-content/uploads/2009/11/dell-150x150.jpg" alt="Dell Logo" width="150" height="150" /></a>Here we listed 3 ways on the installation of <strong>Dell OpenManage Server Administrator</strong> on a Redhat Enterprise Linux, you can follows these steps on CentOS or SLES 10, they would work well.</p>
<p><strong>1, Install from RPM packages</strong><br />
Generally we need these RPM packages, you can search and download them from <a href="http://www.google.com/search?hl=en&amp;source=hp&amp;q=srvadmin+rpm+download&amp;aq=f&amp;oq=&amp;aqi=">Google.com</a>.<br />
<span id="more-453"></span></p>
<pre>[root@storage cax]# ls
srvadmin-cm-6.1.0-648.i386.rpm       srvadmin-omcommon-6.1.0-648.i386.rpm
srvadmin-deng-6.1.0-648.i386.rpm     srvadmin-omhip-6.1.0-648.i386.rpm
srvadmin-hapi-6.1.0-648.i386.rpm     srvadmin-omilcore-6.1.0-648.i386.rpm
srvadmin-isvc-6.1.0-648.i386.rpm     srvadmin-syscheck-6.1.0-648.i386.rpm
srvadmin-omacore-6.1.0-648.i386.rpm
srvadmin-cm-6.1.0-648.i386.rpm</pre>
<p>These packages can be used on both RHEL-4 and RHEL-5. After the downloading, let&#8217;s start the installation:</p>
<pre>[root@storage cax]# uname -a
Linux storage.admon 2.6.9-78.ELsmp #1 SMP Wed Jul 9 15:46:26 EDT 2008 x86_64 x86_64 x86_64 GNU/Linux
[root@storage cax]# rpm -ivh srv*.rpm
Preparing...                ########################################### [100%]
1:srvadmin-omilcore      ########################################### [ 11%]
To start all installed services without a reboot,
enter the following command:  srvadmin-services.sh  start
2:srvadmin-syscheck      ########################################### [ 22%]
3:srvadmin-deng          ########################################### [ 33%]
4:srvadmin-hapi          ########################################### [ 44%]
5:srvadmin-omcommon      ########################################### [ 56%]
6:srvadmin-omacore       ########################################### [ 67%]
7:srvadmin-isvc          ########################################### [ 78%]
8:srvadmin-cm            ########################################### [ 89%]
9:srvadmin-omhip         ########################################### [100%]
[root@storage cax]#</pre>
<p>Now, it&#8217;s ready for use! enjoy!</p>
<p>The following two steps are from <a href="http://linux.dell.com/repo/hardware/OMSA_6.1/">Dell&#8217;s official website</a>, and it&#8217;s officially supported by Dell!</p>
<p><strong>2, Setup for usage with yum</strong></p>
<p>The minimum required yum is 2.4.x, and it&#8217;s tested on RHEL5, CentOS, <a href="https://www.scientificlinux.org/">Scientific Linux</a>, RHEL4+yum, SLES+yum. The version of yum distributed on CentOS 3 by default is very old (yum 2.0.8), so you need to upgrade to a 2.4.x version in order to use these repositories. The older version of yum does not support plugins or mirrorlists, which are required for these repos to work.</p>
<p>Set up this repository, type:</p>
<pre>[root@storage cax]# wget -q -O - http://linux.dell.com/repo/hardware/OMSA_6.1/bootstrap.cgi | bash</pre>
<p>Optional Install OpenManage Server Administrator:</p>
<pre>[root@storage cax]# yum install srvadmin-all</pre>
<p>NOTE: OMSA will not install on unsupported systems. If you receive a message at install that the system is not supported, it is likely that your system is not supported, and the install will fail. This is most common on Dell SC-class systems, as OMSA is completely unsupported on these systems.</p>
<p><strong>3, Set up for usage with up2date</strong></p>
<p>Follow these instructions for use with up2date on RHEL4:</p>
<p>Set up this repository:</p>
<pre>[root@storage cax]# wget -q -O - http://linux.dell.com/repo/hardware/OMSA_6.1/bootstrap.cgi | bash</pre>
<p>Optional Install OpenManage Server Administrator:</p>
<pre>[root@storage cax]# up2date -i srvadmin-all</pre>
<p>NOTE: OMSA will not install on unsupported systems. If you receive a message at install that the system is not supported, it is likely that your system is not supported, and the install will fail. This is most common on SC-class systems, as OMSA is completely unsupported on these systems.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.admon.org/install-dell-omsa-on-redhat-enterprise-linux-45/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using MegaCli set disk to HotSpare mode in linux</title>
		<link>http://www.admon.org/using-megacli-set-disk-to-hotspare-mode-in-linux/</link>
		<comments>http://www.admon.org/using-megacli-set-disk-to-hotspare-mode-in-linux/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 07:54:17 +0000</pubDate>
		<dc:creator>joseph</dc:creator>
				<category><![CDATA[Hardwares]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[megacli]]></category>
		<category><![CDATA[Raid]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://blog.admon.org/?p=44</guid>
		<description><![CDATA[When one of the disks failed in Dell MD1000, the hotspare disk will change its role into online mode, and you need to replace  the bad disk with a good one. So a question comes, how can I set the new disk into hotspare mode. With the help of MegaCli, it&#8217;s quite easy, just a [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>When one of the disks failed in <a href="http://www.dell.com/us/en/business/storage/pvaul_md1000/pd.aspx?refid=pvaul_md1000&amp;cs=04&amp;s=bsd">Dell MD1000</a>, the hotspare disk will change its role into <strong>online</strong> mode, and you need to replace  the bad disk with a good one. So a question comes, how can I set the new disk into hotspare mode.<span id="more-44"></span></p>
<p>With the help of MegaCli, it&#8217;s quite easy, just a single command like this:</p>
<p># MegaCli -PDHSP -set -PhysDrv[A:B] -aC</p>
<p>A:  <strong>it&#8217;s Enclosure Number</strong></p>
<p>B: <strong>It&#8217;s Slot NUmber</strong></p>
<p>C: <strong>It&#8217;s Array ID</strong></p>
<p>Here is an example:</p>
<p>Find out the issued disk by this command:</p>
<p><code># /usr/sbin/MegaCli -PDList -a1|grep "Firmware state: Unconfigured(good)" -B12</code></p>
<p>Enclosure Number: 1<br />
Slot Number: 255<br />
Device Id: 32<br />
Sequence Number: 1<br />
Media Error Count: 0<br />
Other Error Count: 1<br />
Predictive Failure Count: 0<br />
Last Predictive Failure Event Seq Number: 0<br />
Raw Size: 0MB [0x0 Sectors]<br />
Non Coerced Size: 9007199254740480MB [0xfffffffffff00000 Sectors]<br />
Coerced Size: 0MB [0x0 Sectors]<br />
Firmware state: Unconfigured(good)<br />
&#8211;</p>
<p>Enclosure Number: 2<br />
Slot Number: 8<br />
Device Id: 33<br />
Sequence Number: 1<br />
Media Error Count: 0<br />
Other Error Count: 0<br />
Predictive Failure Count: 0<br />
Last Predictive Failure Event Seq Number: 0<br />
Raw Size: 381469MB [0x2e90edd0 Sectors]<br />
Non Coerced Size: 380957MB [0x2e80edd0 Sectors]<br />
Coerced Size: 380928MB [0x2e800000 Sectors]<br />
Firmware state: Unconfigured(good)</p>
<p>Here, &#8220;Slot Number: 255&#8243; meas the entire disk cube, just simply pass it. so your command is something like this:</p>
<p><code># /usr/sbin/MegaCli -PDHSP -set -PhysDrv[2:8] -a1</code></p>
<p>Set Physical Drive at EnclId-2 SlotId-4 as Hot Spare Success.</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.admon.org/using-megacli-set-disk-to-hotspare-mode-in-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Dell PE2950 LCD Message explained</title>
		<link>http://www.admon.org/dell-pe2950-lcd-message-explained/</link>
		<comments>http://www.admon.org/dell-pe2950-lcd-message-explained/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 17:35:18 +0000</pubDate>
		<dc:creator>joseph</dc:creator>
				<category><![CDATA[Hardwares]]></category>
		<category><![CDATA[System Tuning]]></category>
		<category><![CDATA[dell]]></category>
		<category><![CDATA[LCD Error]]></category>
		<category><![CDATA[pe2950]]></category>

		<guid isPermaLink="false">http://planet.admon.org/?p=537</guid>
		<description><![CDATA[Dell PowerEdge 2950 control dashboard LCD provides status messages to signify when its physical system is operating well or when needs some attention. The LCD lights blue to indicate a normal operating condition, and lights amber to indicate an error condition. The LCD scrolls a message that includes a status code followed by descriptive text. [...]]]></description>
			<content:encoded><![CDATA[<p>Dell <a href="http://www.dell.com/downloads/global/products/pedge/en/2950_specs.pdf">PowerEdge 2950</a> control dashboard LCD provides status messages to signify when its physical system is operating well or when needs some attention. The LCD lights blue to indicate a normal operating condition, and lights amber to indicate an error condition. </p>
<p>The LCD scrolls a message that includes a status code followed by descriptive text. The following section lists the LCD status messages that can occur and the probable cause for each message. <span id="more-537"></span>The LCD messages refer to events recorded in the System Event Log (SEL). For information on the SEL and configuring system management settings, see <a href="http://support.dell.com/support/edocs/systems/pe2950/en/hom/html/index.htm">the systems management documentation</a>.</p>
<p>NOTE: If your system fails to boot, press the System ID button for at least five seconds until an error code appears on the LCD. Record the code, then check it here or see <a href="http://support.dell.com/support/edocs/systems/pe2950/en/hom/html/gethelp.htm">Getting Help on Dell.com</a>.</p>
<p>The following lines will should each error in a two-line mode, the first line indicates the appeared Error code and Text, and the second line is a case explaination.</p>
<p><strong>N/A &#8211; SYSTEM NAME</strong><br />
Causes:  A 62-character string that can be defined by the user in the System Setup program. The SYSTEM NAME displays under the following conditions:<br />
    * The system is powered on.<br />
    * The power is off and active POST errors are displayed.</p>
<p><strong>E1000 &#8211; FAILSAFE, Call Support</strong><br />
Causes: SORRY</p>
<p><strong>E1114 &#8211; Temp Ambient</strong><br />
Causes: Ambient system temperature is out of acceptable range.</p>
<p><strong>E1116 &#8211; Temp Memory</strong><br />
Causes: Memory has exceeded acceptable temperature and has been disabled to prevent damage to the components.</p>
<p><strong>E12nn &#8211; xx PwrGd</strong><br />
Causes: Specified voltage regulator has failed.</p>
<p><strong>E1210 &#8211; CMOS Batt</strong><br />
Causes: CMOS battery is missing, or the voltage is out of acceptable range.</p>
<p><strong>E1211 &#8211; ROMB Batt</strong><br />
Causes: RAID battery is either missing, bad, or unable to recharge due to thermal issues.</p>
<p><strong>E1229 &#8211; CPU # VCORE</strong><br />
Causes: Processor # VCORE voltage regulator has failed.</p>
<p><strong>E1310 &#8211; RPM Fan ##</strong><br />
Causes: RPM of specified cooling fan is out of acceptable operating range.</p>
<p><strong>E1313 &#8211; Fan Redundancy</strong><br />
Causes: The system is no longer fan-redundant. Another fan failure will put the system at risk of over-heating.</p>
<p><strong>E1410 &#8211; CPU # IERR</strong><br />
Causes: Specified microprocessor is reporting an internal error.</p>
<p><strong>E1414 &#8211; CPU # Thermtrip</strong><br />
Causes: Specified microprocessor is out of acceptable temperature range and has halted operation.</p>
<p><strong>E1418 &#8211; CPU # Presence</strong><br />
Causes: Specified processor is missing or bad, and the system is in an unsupported configuration.</p>
<p><strong>E141C &#8211; CPU Mismatch</strong><br />
Causes: Processors are in a configuration unsupported by Dell.</p>
<p><strong>E141F &#8211; CPU Protocol</strong><br />
Causes: The system BIOS has reported a processor protocol error.</p>
<p><strong>E1420 &#8211; CPU Bus PERR</strong><br />
Causes: The system BIOS has reported a processor bus parity error.</p>
<p><strong>E1421 &#8211; CPU Init</strong><br />
Causes: The system BIOS has reported a processor initialization error.</p>
<p><strong>E1422 &#8211; CPU Machine Chk</strong><br />
Causes: The system BIOS has reported a machine check error.</p>
<p><strong>E1610 &#8211; PS # Missing</strong><br />
Causes: No power is available from the specified power supply; specified power supply is improperly installed or faulty.</p>
<p><strong>E1614 &#8211; PS # Status</strong><br />
Causes: No power is available from the specified power supply; specified power supply is improperly installed or faulty.</p>
<p><strong>E1618 &#8211; PS # Predictive</strong><br />
Causes: Power supply voltage is out of acceptable range; specified power supply is improperly installed or faulty.</p>
<p><strong>E161C &#8211; PS # Input Lost</strong><br />
Causes: Power source for specified power supply is unavailable, or out of acceptable range.</p>
<p><strong>E1620 &#8211; PS # Input Range</strong><br />
Causes: Power source for specified power supply is unavailable, or out of acceptable range.</p>
<p><strong>E1624 &#8211; PS Redundancy</strong><br />
Causes: The power supply subsystem is no longer redundant. If the last supply fails, the system will go down.</p>
<p><strong>E1710 &#8211; I/O Channel Chk</strong><br />
Causes: The system BIOS has reported an I/O channel check.</p>
<p><strong>E1711 &#8211; PCI PERR B## D## F## PCI PERR Slot #</strong><br />
Causes: The system BIOS has reported a PCI parity error on a component that resides in PCI configuration space at bus ##, device ##, function ##. The system BIOS has reported a PCI parity error on a component that resides in the specified PCI slot.</p>
<p><strong>E1712 &#8211; PCI SERR B## D## F## PCI SERR Slot #</strong><br />
Causes: The system BIOS has reported a PCI system error on a component that resides in PCI configuration space at bus ##, device ##, function ##. The system BIOS has reported a PCI system error on a component that resides in the specified slot.</p>
<p><strong>E1714 &#8211; Unknown Err</strong><br />
Causes: The system BIOS has determined that there has been an error in the system, but is unable to determine its origin.</p>
<p><strong>E171F &#8211; PCIE Fatal Err B## D## F## PCIE Fatal Err Slot #</strong><br />
Causes: The system BIOS has reported a PCIe fatal error on a component that resides in PCI configuration space at bus ##, device ##, function ##.<br />
The system BIOS has reported a PCIe fatal error on a component that resides in the specified slot.</p>
<p><strong>E1810 &#8211; HDD ## Fault</strong><br />
Causes: The SAS subsystem has determined that hard drive ## has experienced a fault.</p>
<p><strong>E1811 &#8211; HDD ## Rbld Abrt</strong><br />
Causes: The specified hard drive has experienced a rebuild abort.</p>
<p><strong>E1812 &#8211; HDD ## Removed</strong><br />
Causes: The specified hard drive has been removed from the system.</p>
<p><strong>E1913 &#8211; CPU &#038; Firmware Mismatch</strong><br />
Causes: The BMC firmware does not support the CPU.</p>
<p><strong>E1A11 &#8211; PCI Rsr Config</strong><br />
Causes: PCI risers are not configured correctly; some invalid configurations may prevent the system from powering on.</p>
<p><strong>E1A12 &#8211; PCI Rsr Missing</strong><br />
Causes: One or all of the PCI risers is missing, preventing the system from powering on.</p>
<p><strong>E1A14 &#8211; SAS Cable A</strong><br />
Causes: SAS cable A is missing or bad.</p>
<p><strong>E1A15 &#8211; SAS Cable B</strong><br />
Causes: SAS cable B is missing or bad.</p>
<p><strong>E2010 &#8211; No Memory</strong><br />
Causes: No memory is installed in the system.</p>
<p><strong>E2011 &#8211; Mem Config Err</strong><br />
Causes: Memory detected, but is not configurable. Error detected during memory configuration.</p>
<p><strong>E2012 &#8211; Unusable Memory</strong><br />
Causes: Memory is configured, but not usable. Memory subsystem failure.</p>
<p><strong>E2013 &#8211; Shadow BIOS Fail</strong><br />
Causes: The system BIOS failed to copy its flash image into memory.</p>
<p><strong>E2014 &#8211; CMOS Fail</strong><br />
Causes: CMOS failure. CMOS RAM not functioning properly.</p>
<p><strong>E2015 &#8211; DMA Controller</strong><br />
Causes: DMA controller failure.</p>
<p><strong>E2016 &#8211; Int Controller</strong><br />
Causes: Interrupt controller failure.</p>
<p><strong>E2017 &#8211; Timer Fail</strong><br />
Causes: Timer refresh failure.</p>
<p><strong>E2018 &#8211; Prog Timer</strong><br />
Causes: Programmable interval timer error.</p>
<p><strong>E2019 &#8211; Parity Error</strong><br />
Causes: Parity error.</p>
<p><strong>E201A &#8211; SIO Err</strong><br />
Causes: SIO failure.</p>
<p><strong>E201B &#8211; Kybd Controller</strong><br />
Causes: Keyboard controller failure.</p>
<p><strong>E201C &#8211; SMI Init</strong><br />
Causes: System management interrupt (SMI) initialization failure.</p>
<p><strong>E201D &#8211; Shutdown Test</strong><br />
Causes: BIOS shutdown test failure.</p>
<p><strong>E201E &#8211; POST Mem Test</strong><br />
Causes: BIOS POST memory test failure.</p>
<p><strong>E201F &#8211; DRAC Config</strong><br />
Causes: Dell remote access controller (DRAC) configuration failure.</p>
<p><strong>E2020 &#8211; CPU Config</strong><br />
Causes: CPU configuration failure.</p>
<p><strong>E2021 &#8211; Memory Population</strong><br />
Causes: Incorrect memory configuration. Memory population order incorrect.</p>
<p><strong>E2022 &#8211; POST Fail</strong><br />
Causes: General failure after video.</p>
<p><strong>E2110 &#8211; MBE Crd # DIMM ## &#038; ##</strong><br />
Causes: One of the DIMMs in the set implicated by &#8220;## &#038; ##&#8221; has had a memory multi-bit error (MBE). If no memory card is present, the &#8220;Crd #&#8221; string is left out of the message.</p>
<p><strong>E2111 &#8211; SBE Log Disable Crd # DIMM ##</strong><br />
Causes: The system BIOS has disabled memory single-bit error (SBE) logging, and will not resume logging further SBEs until the system is rebooted. &#8220;##&#8221; represents the DIMM implicated by the BIOS. If no memory riser card is present, the &#8220;Crd #&#8221; string is left out of the message.</p>
<p><strong>E2112 &#8211; Mem Spare Crd # DIMM ##</strong><br />
Causes: The system BIOS has spared the memory because it has determined that the memory had too many errors. &#8220;## &#038; ##&#8221; represents the DIMM pair implicated by the BIOS. If no memory card is present, the &#8220;Crd #&#8221; string is left out of the message.</p>
<p><strong>E2113 &#8211; Mem Mirror Crd # DIMM ## &#038; ##</strong><br />
Causes: The system BIOS has disabled memory mirroring because it has determined that one half of the mirror has had too many errors. &#8220;## &#038; ##&#8221; represents the DIMM pair implicated by the BIOS. If no memory card is present, the &#8220;Crd #&#8221; string is left out of the message.</p>
<p><strong>E2118 &#8211; Fatal NB Mem CRC</strong><br />
Causes: One of the connections in the <a href="http://en.wikipedia.org/wiki/Fully_Buffered_DIMM">Fully Buffered DIMM</a> (FBD) memory subsystem link on the Northbound side has failed.</p>
<p><strong>E2119 &#8211; Fatal SB Mem CRC</strong><br />
Causes: One of the connections in the FBD memory subsystem link on the Southbound side has failed.</p>
<p><strong>I1910 &#8211; Intrusion</strong><br />
Causes: System cover has been removed.</p>
<p><strong>I1911 &#8211; >3 ERRs Chk Log</strong><br />
Causes: LCD overflow message. A maximum of three error messages can display sequentially on the LCD. The fourth message displays as the standard overflow message.</p>
<p><strong>I1912 &#8211; SEL Full</strong><br />
Causes: System Event Log is full of events, and is unable to log any more events.</p>
<p><strong>W1228 &#8211; ROMB Batt < 24hr</strong><br />
Causes: Warns predictively that the RAID battery has less than 24 hours of charge left.</p>
<p>Please note that, more details are always available at <a href="http://support.dell.com/">Dell&#8217;s official support</a> website. You can also submit a request for help at our <a href="http://forum.admon.org/hardware-forum/">hardware forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.admon.org/dell-pe2950-lcd-message-explained/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

