<?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>HowToBSD &#187; Hardware</title>
	<atom:link href="http://howtobsd.com/cat/hardware/feed" rel="self" type="application/rss+xml" />
	<link>http://howtobsd.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 11 Feb 2014 11:21:33 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>HTC Wildfire freebsd</title>
		<link>http://howtobsd.com/hardware/htc-wildfire-freebsd.html</link>
		<comments>http://howtobsd.com/hardware/htc-wildfire-freebsd.html#comments</comments>
		<pubDate>Sun, 16 Oct 2011 15:39:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[mount]]></category>

		<guid isPermaLink="false">http://howtobsd.com/?p=494</guid>
		<description><![CDATA[This post describes how to mount htc wildfire flash disk on FreeBSD. Actually it is not especially trick for HTC Wildfire and solution will be the same for mounting another flash disks which are not mounting automatically. Take a look at dmesg: howtobsd# dmesg -a &#124; tail ..... da0 at umass-sim0 bus 0 scbus0 target [...]]]></description>
				<content:encoded><![CDATA[<p>This post describes how to mount htc wildfire flash disk on FreeBSD.<br />
Actually it is not especially trick for HTC Wildfire and solution will be the same for mounting another flash disks which are not mounting automatically.<br />
Take a look at dmesg:<br />
<code>howtobsd# dmesg -a | tail<br />
.....<br />
da0 at umass-sim0 bus 0 scbus0 target 0 lun 0<br />
da0: <HTC Android Phone 0100> Removable Direct Access SCSI-2 device<br />
da0: 40.000MB/s transfers<br />
da0: Attempt to query device size failed: NOT READY, Medium not present</code></p>
<p>make next command to find out name of partition of our device (I hope you will try to mount in exist directory <img src='http://howtobsd.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  ):<br />
<code>howtobsd#mount /dev/da0 /mnt/flash<br />
mount: /dev/da0 : Invalid argument</code></p>
<p>Ignore this message and looking at /dev directory &#8211; there should appear new device:<br />
<code>howtobsd#ls -l /dev/da*<br />
crw-r-----  1 root  operator    0, 143 16 окт 17:57 /dev/da0<br />
crw-r-----  1 root  operator    0, 144 16 окт 18:29 /dev/da0s1</code></p>
<p>And now we are ready to mount it:</p>
<p><code>mount_msdosfs /dev/da0s1 /mnt/flash/  </code></p>
<p>Done.</p>
]]></content:encoded>
			<wfw:commentRss>http://howtobsd.com/hardware/htc-wildfire-freebsd.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting up wireless on FreeBSD laptop</title>
		<link>http://howtobsd.com/hardware/wi-fi-on-freebsd.html</link>
		<comments>http://howtobsd.com/hardware/wi-fi-on-freebsd.html#comments</comments>
		<pubDate>Fri, 22 Oct 2010 22:40:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[wi-fi]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://howtobsd.com/?p=186</guid>
		<description><![CDATA[Identify installed wi-fi adapter: hostobsd#pciconf -lv &#124;grep Wireless device = 'Intel 3945ABG Wireless LAN controller (10208086)' find device in Hardware Notes: [i386, amd64] Intel PRO/Wireless 3945ABG MiniPCI network adapters ( wpi(4) driver) So, wpi is driver for my wi-fi device. Following the instruction wpi(4), going to configure the kernel with options: device wpi device wpifw [...]]]></description>
				<content:encoded><![CDATA[<p>Identify  installed wi-fi adapter:</p>
<p><code>hostobsd#pciconf -lv |grep Wireless<br />
device     = 'Intel 3945ABG Wireless LAN controller (10208086)'</code></p>
<p>find device in <a href="http://www.freebsd.org/releases/8.1R/hardware.html">Hardware Notes</a>:</p>
<p>[i386, amd64] Intel PRO/Wireless 3945ABG MiniPCI network adapters ( wpi(4) driver)</p>
<p>So,  wpi is driver for my wi-fi device.</p>
<p>Following the <a href="http://www.freebsd.org/cgi/man.cgi?query=wpi&amp;sektion=4&amp;manpath=FreeBSD+8.1-RELEASE">instruction wpi(4)</a>, going to configure the kernel with options:<br />
<strong>device wpi<br />
device wpifw<br />
device pci<br />
device wlan<br />
device wlan_amrr<br />
device firmware<br />
</strong><br />
You also can load driver without kernel configuring by adding in /boot/loader.conf<br />
<strong>if_wpi_load=&#8221;YES&#8221;</strong></p>
<p>add in  /etc/rc.conf:<br />
<strong>wlans_wpi0=wlan0<br />
ifconfig_wlan0=&#8221;WPA DHCP&#8221;</strong></p>
<p>create configuration file for our wireless connection :<br />
<code>howtobsd#touch /etc/wpa_supplicant.conf<br />
howtobsd#vim /etc/wpa_supplicant.conf</code></p>
<p>and add there ssid and  password(for WPA-PSK):<br />
<strong>network={<br />
ssid=&#8221;yourssid&#8221;<br />
psk=&#8221;yourspass&#8221;<br />
}</strong></p>
<p>and finally reboot</p>
]]></content:encoded>
			<wfw:commentRss>http://howtobsd.com/hardware/wi-fi-on-freebsd.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting Up the Sound card on FreeBSD 8.1</title>
		<link>http://howtobsd.com/hardware/setting-up-the-sound-card-on-freebsd.html</link>
		<comments>http://howtobsd.com/hardware/setting-up-the-sound-card-on-freebsd.html#comments</comments>
		<pubDate>Thu, 21 Oct 2010 11:18:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[media]]></category>
		<category><![CDATA[X11]]></category>

		<guid isPermaLink="false">http://howtobsd.com/?p=180</guid>
		<description><![CDATA[The simplest way to setting up sound on FreeBSD to load universal kernel module kldload: howtobsd# kldload snd_driver snd_driver is driver, that include itself supporting the most popular sound card drivers. But I think better to install kernel with support exactly yours sound card. For this way we have to identify device model: slim# pciconf [...]]]></description>
				<content:encoded><![CDATA[<p>The simplest way to setting up sound on FreeBSD to load universal kernel module kldload:<br />
<code>howtobsd# kldload snd_driver</code></p>
<p>snd_driver is driver, that include itself supporting the most popular sound card drivers.</p>
<p>But I think better to install kernel with support exactly yours sound card.  For this way we have to identify device model:<br />
<code>slim# pciconf -lv | grep audio<br />
    device     = 'Intel audio controller embedded with the 82801H chipset ( ICH8 chipset ) (82801H)'</code></p>
<p>find this sound card in the <a href="http://www.freebsd.org/releases/8.1R/hardware.html">Hardware Notes </a>:</p>
<p>and make kernel with options:</p>
<p><strong>device sound<br />
device snd_hda</strong></p>
<p>You also can load driver without configuring kernel. Add in /boot/loader.conf:<br />
<strong>snd_hda_load=&#8221;YES&#8221;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://howtobsd.com/hardware/setting-up-the-sound-card-on-freebsd.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeBSD 7.2 and Silicon Image Sil 3112 SATA Controller</title>
		<link>http://howtobsd.com/hardware/freebsd-7-2-and-silicon-image-sil-3112-sata-controller.html</link>
		<comments>http://howtobsd.com/hardware/freebsd-7-2-and-silicon-image-sil-3112-sata-controller.html#comments</comments>
		<pubDate>Sun, 22 Nov 2009 11:11:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[hdd]]></category>

		<guid isPermaLink="false">http://howtobsd.com/?p=43</guid>
		<description><![CDATA[Sil3112 SATA Controller FreeBSD 7.2 ]]></description>
				<content:encoded><![CDATA[<p>Recently I have happened to set up some services on my brother&#8217;s fileserver.<br />
FreeBSD should been worked via PCI SATA Controller(Sil3112)on SATA 1Tb HDD.<br />
FreeBSD 7.2 was installing by a miracle. But it didn&#8217;t work properly.<br />
Server was being hang up and restart when hard disk was being use actively (for example: updating ports tree,make installing port&#8217;s and especially uploading a big data level via samba).<br />
As it found out this controller don&#8217;t work correctly with FreeBSD, although it present in <a title="generic ATA/ATAPI disk controller driver" rel="nofollow" href="http://www.freebsd.org/cgi/man.cgi?query=ata&amp;apropos=0&amp;sektion=4&amp;manpath=FreeBSD+7.2-RELEASE&amp;format=html">The currently supported ATA/SATA controller chips</a></p>
]]></content:encoded>
			<wfw:commentRss>http://howtobsd.com/hardware/freebsd-7-2-and-silicon-image-sil-3112-sata-controller.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
