<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: FAQ: How to retreive hardware manufacturer name, serial numbers, etc. in Linux command line</title>
	<atom:link href="http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/</link>
	<description></description>
	<lastBuildDate>Sat, 13 Mar 2010 16:57:19 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Roger Pedlow</title>
		<link>http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/comment-page-1/#comment-64061</link>
		<dc:creator>Roger Pedlow</dc:creator>
		<pubDate>Fri, 05 Feb 2010 13:32:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/#comment-64061</guid>
		<description>I was reading something else about this on another blog. Interesting. Your perspective on it is diametrically contradicted to what I read earlier. I am still contemplating over the diverse points of view, but I&#039;m leaning to a great extent toward yours. And regardless, that&#039;s what is so superb about contemporary democracy and the marketplace of ideas on-line.</description>
		<content:encoded><![CDATA[<p>I was reading something else about this on another blog. Interesting. Your perspective on it is diametrically contradicted to what I read earlier. I am still contemplating over the diverse points of view, but I&#8217;m leaning to a great extent toward yours. And regardless, that&#8217;s what is so superb about contemporary democracy and the marketplace of ideas on-line.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Deviceback</title>
		<link>http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/comment-page-1/#comment-51994</link>
		<dc:creator>Deviceback</dc:creator>
		<pubDate>Fri, 04 Dec 2009 18:21:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/#comment-51994</guid>
		<description>Chain Return,vision female strength point army discuss activity again status education engine package lose agent dead face scheme employee representative chair priority car package exactly relevant meal above member partly training membership cover this top however hot in seem question long point impose conference colleague mass point exist force figure south examine story serious severe purpose thin factor yeah emerge exist deny suppose solicitor result latter tour simple man funny appeal occasion help down hot most file propose face how point park procedure expenditure  liability</description>
		<content:encoded><![CDATA[<p>Chain Return,vision female strength point army discuss activity again status education engine package lose agent dead face scheme employee representative chair priority car package exactly relevant meal above member partly training membership cover this top however hot in seem question long point impose conference colleague mass point exist force figure south examine story serious severe purpose thin factor yeah emerge exist deny suppose solicitor result latter tour simple man funny appeal occasion help down hot most file propose face how point park procedure expenditure  liability</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bobby0724</title>
		<link>http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/comment-page-1/#comment-26400</link>
		<dc:creator>Bobby0724</dc:creator>
		<pubDate>Wed, 01 Apr 2009 20:33:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/#comment-26400</guid>
		<description>#!/bin/sh
echo &quot;Getting HW information&quot;
rm info.txt
echo &quot;------------System Information--------------------------&quot; &gt;&gt; info.txt
wget http://mirror.sourceshare.org/savannah/dmidecode/dmidecode-2.10.tar.gz
tar -zxvf dmidecode-2.10.tar.gz
cd dmidecode-2.10
make
./dmidecode -t 1 &gt;&gt; ../info.txt
cd ..
echo &quot;Hostname: $HOSTNAME&quot; &gt;&gt; info.txt
echo &quot;Data Collected :&quot; &gt;&gt; info.txt
date &gt;&gt; info.txt
echo &quot;&quot; &gt;&gt; info.txt
echo &quot;------------Operating System Information----------------&quot; &gt;&gt; info.txt
cat /proc/version &gt;&gt; info.txt
echo &quot;&quot; &gt;&gt; info.txt
echo &quot;------------CPU Information-----------------------------&quot; &gt;&gt; info.txt
cat /proc/cpuinfo &#124; grep processor &gt;&gt; info.txt
cat /proc/cpuinfo &#124; grep name &gt;&gt; info.txt
cat /proc/cpuinfo &#124; grep MHz &gt;&gt; info.txt
echo &quot;&quot; &gt;&gt; info.txt
echo &quot;------------Memory Information--------------------------&quot; &gt;&gt; info.txt
cat /proc/meminfo &#124; grep MemTotal &gt;&gt; info.txt
cat /proc/meminfo &#124; grep MemFree &gt;&gt; info.txt
echo &quot;&quot; &gt;&gt; info.txt
echo &quot;------------Network Information-------------------------&quot; &gt;&gt; info.txt
lspci &#124; grep Ethernet &gt;&gt; info.txt
ifconfig &#124; grep HWaddr &gt;&gt; info.txt
ifconfig &#124; grep Bcast &gt;&gt; info.txt
echo &quot;&quot; &gt;&gt; info.txt
echo &quot;------------Disk Information----------------------------&quot; &gt;&gt; info.txt
df -h &gt;&gt; info.txt
rm dmidecode-2.10.tar.gz
rm -rf dmidecode-2.10</description>
		<content:encoded><![CDATA[<p>#!/bin/sh<br />
echo &#8220;Getting HW information&#8221;<br />
rm info.txt<br />
echo &#8220;&#8212;&#8212;&#8212;&#8212;System Information&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221; &gt;&gt; info.txt<br />
wget <a href="http://mirror.sourceshare.org/savannah/dmidecode/dmidecode-2.10.tar.gz" rel="nofollow">http://mirror.sourceshare.org/savannah/dmidecode/dmidecode-2.10.tar.gz</a><br />
tar -zxvf dmidecode-2.10.tar.gz<br />
cd dmidecode-2.10<br />
make<br />
./dmidecode -t 1 &gt;&gt; ../info.txt<br />
cd ..<br />
echo &#8220;Hostname: $HOSTNAME&#8221; &gt;&gt; info.txt<br />
echo &#8220;Data Collected :&#8221; &gt;&gt; info.txt<br />
date &gt;&gt; info.txt<br />
echo &#8220;&#8221; &gt;&gt; info.txt<br />
echo &#8220;&#8212;&#8212;&#8212;&#8212;Operating System Information&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221; &gt;&gt; info.txt<br />
cat /proc/version &gt;&gt; info.txt<br />
echo &#8220;&#8221; &gt;&gt; info.txt<br />
echo &#8220;&#8212;&#8212;&#8212;&#8212;CPU Information&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221; &gt;&gt; info.txt<br />
cat /proc/cpuinfo | grep processor &gt;&gt; info.txt<br />
cat /proc/cpuinfo | grep name &gt;&gt; info.txt<br />
cat /proc/cpuinfo | grep MHz &gt;&gt; info.txt<br />
echo &#8220;&#8221; &gt;&gt; info.txt<br />
echo &#8220;&#8212;&#8212;&#8212;&#8212;Memory Information&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;&#8221; &gt;&gt; info.txt<br />
cat /proc/meminfo | grep MemTotal &gt;&gt; info.txt<br />
cat /proc/meminfo | grep MemFree &gt;&gt; info.txt<br />
echo &#8220;&#8221; &gt;&gt; info.txt<br />
echo &#8220;&#8212;&#8212;&#8212;&#8212;Network Information&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221; &gt;&gt; info.txt<br />
lspci | grep Ethernet &gt;&gt; info.txt<br />
ifconfig | grep HWaddr &gt;&gt; info.txt<br />
ifconfig | grep Bcast &gt;&gt; info.txt<br />
echo &#8220;&#8221; &gt;&gt; info.txt<br />
echo &#8220;&#8212;&#8212;&#8212;&#8212;Disk Information&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-&#8221; &gt;&gt; info.txt<br />
df -h &gt;&gt; info.txt<br />
rm dmidecode-2.10.tar.gz<br />
rm -rf dmidecode-2.10</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mysurface</title>
		<link>http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/comment-page-1/#comment-21188</link>
		<dc:creator>mysurface</dc:creator>
		<pubDate>Fri, 06 Jun 2008 00:52:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/#comment-21188</guid>
		<description>lshw does provide quite informative hardware info too, and can generate html format. 

http://linux.byexamples.com/archives/340/how-to-generate-system-hardware-profile-for-your-laptop/
But recently lshw seems to acting up :(</description>
		<content:encoded><![CDATA[<p>lshw does provide quite informative hardware info too, and can generate html format. </p>
<p><a href="http://linux.byexamples.com/archives/340/how-to-generate-system-hardware-profile-for-your-laptop/" rel="nofollow">http://linux.byexamples.com/archives/340/how-to-generate-system-hardware-profile-for-your-laptop/</a><br />
But recently lshw seems to acting up <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: artiomix</title>
		<link>http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/comment-page-1/#comment-20352</link>
		<dc:creator>artiomix</dc:creator>
		<pubDate>Mon, 12 May 2008 07:49:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/#comment-20352</guid>
		<description>Thank you, confiq, that&#039;s what I wanna say :)</description>
		<content:encoded><![CDATA[<p>Thank you, confiq, that&#8217;s what I wanna say <img src='http://www.linuxscrew.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: confiq</title>
		<link>http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/comment-page-1/#comment-20332</link>
		<dc:creator>confiq</dc:creator>
		<pubDate>Sun, 11 May 2008 21:27:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/#comment-20332</guid>
		<description>you should use &quot;sudo&quot; instead of &quot;gksudo&quot;.
gksudo is to ask you in GUI for password, but if you&#039;re in terminal without X you can&#039;t use that command!</description>
		<content:encoded><![CDATA[<p>you should use &#8220;sudo&#8221; instead of &#8220;gksudo&#8221;.<br />
gksudo is to ask you in GUI for password, but if you&#8217;re in terminal without X you can&#8217;t use that command!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shirteesdotnet</title>
		<link>http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/comment-page-1/#comment-20272</link>
		<dc:creator>shirteesdotnet</dc:creator>
		<pubDate>Sat, 10 May 2008 14:56:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.linuxscrew.com/2008/05/10/faq-how-to-retreive-hardware-manufacturer-name-serial-numbers-etc-in-linux-command-line/#comment-20272</guid>
		<description>Sounds interesting. Ive only been running Ubuntu for about 8 months now... can move around pretty good, but at first couldnt figure out how to run this. I installed it fine in the terminal, and then typed &quot;dmidecode&quot; in the terminal to run it but get this error:

dmidecode 2.9
/dev/mem: Permission Denied

I then did &quot;gksudo dmidecode&quot; and it worked fine.</description>
		<content:encoded><![CDATA[<p>Sounds interesting. Ive only been running Ubuntu for about 8 months now&#8230; can move around pretty good, but at first couldnt figure out how to run this. I installed it fine in the terminal, and then typed &#8220;dmidecode&#8221; in the terminal to run it but get this error:</p>
<p>dmidecode 2.9<br />
/dev/mem: Permission Denied</p>
<p>I then did &#8220;gksudo dmidecode&#8221; and it worked fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
