<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Check the hardware information in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142947#M8539</link>
    <description>except reboot the RH7 system , how can I know the hardware information&lt;BR /&gt;1. the no. of harddisk ( how many pcs ) and what is the size of each harddisk ?&lt;BR /&gt;2. what is the Lan card speed , 10 / 100 or 1000 ?&lt;BR /&gt;&lt;BR /&gt;Thx</description>
    <pubDate>Thu, 11 Dec 2003 22:00:47 GMT</pubDate>
    <dc:creator>eric_204</dc:creator>
    <dc:date>2003-12-11T22:00:47Z</dc:date>
    <item>
      <title>Check the hardware information</title>
      <link>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142947#M8539</link>
      <description>except reboot the RH7 system , how can I know the hardware information&lt;BR /&gt;1. the no. of harddisk ( how many pcs ) and what is the size of each harddisk ?&lt;BR /&gt;2. what is the Lan card speed , 10 / 100 or 1000 ?&lt;BR /&gt;&lt;BR /&gt;Thx</description>
      <pubDate>Thu, 11 Dec 2003 22:00:47 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142947#M8539</guid>
      <dc:creator>eric_204</dc:creator>
      <dc:date>2003-12-11T22:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Check the hardware information</title>
      <link>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142948#M8540</link>
      <description>dmesg ;-)</description>
      <pubDate>Thu, 11 Dec 2003 22:12:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142948#M8540</guid>
      <dc:creator>Martin P.J. Zinser</dc:creator>
      <dc:date>2003-12-11T22:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Check the hardware information</title>
      <link>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142949#M8541</link>
      <description>This information is very easy to find, especially in a RH system.&lt;BR /&gt;&lt;BR /&gt;First off, some things to look at:&lt;BR /&gt;&lt;BR /&gt;The boot messages are stored (after boot) in the file '/var/log/dmesg'.  This is the output of the 'dmesg' command done by 'rc.sysinit' before switching to it's pre-defined init level.&lt;BR /&gt;&lt;BR /&gt;Looking at the above file, you should be able to simply 'grep "^[sh]d[a-z]" /var/log/dmesg' to find the hard-disk drives (SCSI or IDE).  If the output of the above doesn't show the various drive sizes, you can use 'sfdisk -s /dev/hda' (for example) to show the size (This will show the number of 1KB blocks).&lt;BR /&gt;&lt;BR /&gt;As for network speed, this is a little more difficult, depending on what card you have.  If you're lucky, the command 'mii-tool' will do all you need.</description>
      <pubDate>Thu, 11 Dec 2003 22:24:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142949#M8541</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2003-12-11T22:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Check the hardware information</title>
      <link>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142950#M8542</link>
      <description>eric,&lt;BR /&gt; &lt;BR /&gt;Also, never underestimate the treasure to be found by using "cat" and the stuff in the /proc filesystem.</description>
      <pubDate>Fri, 12 Dec 2003 03:38:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142950#M8542</guid>
      <dc:creator>Mark Grant</dc:creator>
      <dc:date>2003-12-12T03:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Check the hardware information</title>
      <link>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142951#M8543</link>
      <description>Speaking about lan cards, In my RH73 system (kernel 2.4.19) I have this file:&lt;BR /&gt;&lt;BR /&gt;/proc/net/PRO_LAN_Adapters/eth0.info&lt;BR /&gt;&lt;BR /&gt;that contains a lot of informations about my lan card, including the speed.&lt;BR /&gt;&lt;BR /&gt;Ciao&lt;BR /&gt;Claudio&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Dec 2003 05:20:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142951#M8543</guid>
      <dc:creator>Claudio Cilloni</dc:creator>
      <dc:date>2003-12-12T05:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Check the hardware information</title>
      <link>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142952#M8544</link>
      <description>&amp;gt; no. of harddisks&lt;BR /&gt;use "dmesg |grep hd"&lt;BR /&gt;&lt;BR /&gt;&amp;gt; the Lan card speed&lt;BR /&gt;Use "mii-tool" utility for determining if you are connected to the Ethernet, and if so, at what speed.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;Sergejs&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 12 Dec 2003 06:00:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142952#M8544</guid>
      <dc:creator>Sergejs Svitnevs</dc:creator>
      <dc:date>2003-12-12T06:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Check the hardware information</title>
      <link>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142953#M8545</link>
      <description>Hi,&lt;BR /&gt;  Maybe my solution is bit weared but&lt;BR /&gt;  we can also use&lt;BR /&gt;  #fdisk -l&lt;BR /&gt;  Which not only display all the hard disk &lt;BR /&gt;  but also thei partition information..&lt;BR /&gt;&lt;BR /&gt;   Please correct me if i am wrong.&lt;BR /&gt;&lt;BR /&gt;   Thanks,&lt;BR /&gt;   Amit&lt;BR /&gt;</description>
      <pubDate>Sun, 14 Dec 2003 12:28:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/check-the-hardware-information/m-p/3142953#M8545</guid>
      <dc:creator>Amit Dixit_2</dc:creator>
      <dc:date>2003-12-14T12:28:09Z</dc:date>
    </item>
  </channel>
</rss>

