<?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>LAMPDocs &#187; dirvers</title>
	<atom:link href="http://www.lampdocs.com/tag/dirvers/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lampdocs.com</link>
	<description>Documenting the Open Source</description>
	<lastBuildDate>Sat, 03 Dec 2011 15:09:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Checking the Vendor of Hardware</title>
		<link>http://www.lampdocs.com/obtaining-installing-drivers/checking-the-vendor-of-hardware/</link>
		<comments>http://www.lampdocs.com/obtaining-installing-drivers/checking-the-vendor-of-hardware/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 16:09:43 +0000</pubDate>
		<dc:creator>Vadim Cissa</dc:creator>
				<category><![CDATA[Obtaining And Installing The Drivers]]></category>
		<category><![CDATA[detect unknown hardware]]></category>
		<category><![CDATA[device ID]]></category>
		<category><![CDATA[dirvers]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[lspci]]></category>
		<category><![CDATA[PCI device drivers]]></category>
		<category><![CDATA[PCI devices]]></category>
		<category><![CDATA[PCI Utilities]]></category>
		<category><![CDATA[Source code]]></category>
		<category><![CDATA[vendor]]></category>
		<category><![CDATA[vendor ID]]></category>

		<guid isPermaLink="false">http://www.lampdocs.com/?p=676</guid>
		<description><![CDATA[Almost every single user had at least once encountered the situation when he/she wasn’t able to find the documentation and installation disks for all the hardware. That’s why many users when they need to download and install the drivers for a particular hardware try to find out “who the vendor of this hardware is”. In [...]


Related posts:<ol><li><a href='http://www.lampdocs.com/os-installation/how-to-install-linux-from-cddvd-in-graphical-mode/' rel='bookmark' title='How to Install Linux from CD/DVD in Graphical Mode'>How to Install Linux from CD/DVD in Graphical Mode</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/moblin-2-1/' rel='bookmark' title='Moblin 2.1'>Moblin 2.1</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/elks/' rel='bookmark' title='ELKS'>ELKS</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Almost every single user had at least once encountered the situation when he/she wasn’t able to find the documentation and installation disks for all the hardware. That’s why many users when they need to download and install the drivers for a particular hardware try to find out “who the vendor of this hardware is”.</p>
<p>In fact it’s not as hard to do as it may seem to be. There are just 5 simple steps…</p>
<p><strong>1.</strong> Find out all the hardware connected to the bus</p>
<p>Launch the terminal and enter the command:</p>
<p><strong>lspci</strong></p>
<p><strong><img class="aligncenter size-full wp-image-677" title="lspci1" src="http://www.lampdocs.com/wp-content/uploads/2009/07/lspci1.jpg" alt="lspci1 Checking the Vendor of Hardware" width="470" height="455" /></strong></p>
<p>The list of all connected hardware is displayed. For instance, we are going to check the vendor of Audio device. In this step we need to remember the digits located in the very beginning of the line.</p>
<p>…</p>
<p><strong>00:1b.0 Audio device …</strong></p>
<p>&#8230;</p>
<p>We have the following digits: <strong>00:1b.0</strong></p>
<p><strong>2.</strong> Determine  ID of vendor and device itself</p>
<p>Enter the following command:</p>
<p><strong>lspci –n</strong></p>
<p><img class="aligncenter size-full wp-image-678" title="lspci2" src="http://www.lampdocs.com/wp-content/uploads/2009/07/lspci2.jpg" alt="lspci2 Checking the Vendor of Hardware" width="470" height="455" /></p>
<p>We get the list of the same devices, but displayed in a digital way. Find the line which starts with the numbers we got in the first step.</p>
<p><strong>00:1b.0 0403: 8086:284b (rev 03)</strong></p>
<p>Here we need to remember (or write down) the following digits – <strong>8086:284b</strong>. IN fact these digits represent the passport of device: <strong>8086</strong> – ID of vendor and <strong>284b</strong> – ID of device.</p>
<p><strong>3.</strong> Right now to find out the real names we need to visit<a href="http://pci-ids.ucw.cz/read/PC/" target="_blank"> this site</a>.</p>
<p>Using ID of vendor (8086) we find out that the vendor is Intel Corporation. If we click on ID we get the list of vendor&#8217;s devices.</p>
<p><img class="aligncenter size-full wp-image-679" title="Vendors" src="http://www.lampdocs.com/wp-content/uploads/2009/07/Vendors.jpg" alt="Vendors Checking the Vendor of Hardware" width="470" height="301" /></p>
<p><strong>4.</strong> According to 284b we get the name of the device itself. It’s 82801H (ICH8 Family) HD Audio Controller. ID represents the link to the list of subsystems for given device.</p>
<p><strong>5.</strong> Possessing all the data we can easily check the vendor’s website (or any other website with drivers) to get the driver we need.</p>


<p>Related posts:<ol><li><a href='http://www.lampdocs.com/os-installation/how-to-install-linux-from-cddvd-in-graphical-mode/' rel='bookmark' title='How to Install Linux from CD/DVD in Graphical Mode'>How to Install Linux from CD/DVD in Graphical Mode</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/moblin-2-1/' rel='bookmark' title='Moblin 2.1'>Moblin 2.1</a></li>
<li><a href='http://www.lampdocs.com/linux-distros/elks/' rel='bookmark' title='ELKS'>ELKS</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.lampdocs.com/obtaining-installing-drivers/checking-the-vendor-of-hardware/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

