<?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>Opgenorth.NET &#187; Hardware</title>
	<atom:link href="http://www.opgenorth.net/tag/hardware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.opgenorth.net</link>
	<description>Mindless missives of a .NET developer from the North</description>
	<lastBuildDate>Sat, 28 Aug 2010 15:58:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Ubuntu 9.04 &amp; Microsoft Notebook Mouse 5000</title>
		<link>http://www.opgenorth.net/2009/11/07/ubuntu-9-04-microsoft-notebook-mouse-5000/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=ubuntu-9-04-microsoft-notebook-mouse-5000</link>
		<comments>http://www.opgenorth.net/2009/11/07/ubuntu-9-04-microsoft-notebook-mouse-5000/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 00:17:04 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.opgenorth.net/2009/11/07/ubuntu-9-04-microsoft-notebook-mouse-5000/</guid>
		<description><![CDATA[A while ago I picked up a Microsoft Notebook Mouse 5000.&#160; Finally decided to use it on my laptop.&#160; I figured that having a bluetooth mouse would mean that I wouldn’t have a USB receiver hanging off my laptop all the time.&#160; Plus, I thought it would be nice to use Blue Proximity. Now, the [...]]]></description>
			<content:encoded><![CDATA[<p>A while ago I picked up a <a href="http://www.microsoft.com/hardware/mouseandkeyboard/productdetails.aspx?pid=099">Microsoft Notebook Mouse 5000</a>.&#160; Finally decided to use it on my laptop.&#160; I figured that having a bluetooth mouse would mean that I wouldn’t have a USB receiver hanging off my laptop all the time.&#160; Plus, I thought it would be nice to use <a href="http://blueproximity.sourceforge.net">Blue Proximity</a>.</p>
<p>Now, the hiccup came when setting up the new mouse on Ubuntu 9.04 64-bit.&#160; It seems that you have to do a little bit extra to get the mouse working. I found the solution on the <a href="http://ubuntuforums.org/showpost.php?p=7374310&amp;postcount=8">Ubuntu forums</a>.&#160; For my one selfish purposes, I will repeat the instructions here:</p>
<pre class="prettyprint">1) install the bluez-compat package with terminal
sudo apt-get install bluez-compat

2)Pair the mouse with the bluetooth manager. The manager will say that the pairing is &quot;successful&quot;
Although the mouse won't worked... this step has to be done...

3) In the terminal, type :

sudo hidd --search

You should see something like

Searching ...
Connecting to device 00:XX:XX:XX:XX:XX (your mouse MAC)

Done. Your mouse should be working now.</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.opgenorth.net/2009/11/07/ubuntu-9-04-microsoft-notebook-mouse-5000/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Starting with my ADP1</title>
		<link>http://www.opgenorth.net/2009/09/15/getting-starting-with-my-adp1/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=getting-starting-with-my-adp1</link>
		<comments>http://www.opgenorth.net/2009/09/15/getting-starting-with-my-adp1/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 03:31:00 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.opgenorth.net/2009/09/15/getting-starting-with-my-adp1/</guid>
		<description><![CDATA[After a bit of tinkering, I managed to provision my ADP1 setup without a SIM card.&#160; A bit of google, and here is what I did Download the Android SDK.&#160; In my case, I unzipped it to C:\android-sdk-windows-1.1_r1. Connection the phone via the USB cable to my computer.&#160; When the phone asks for a device. [...]]]></description>
			<content:encoded><![CDATA[<p>After a bit of tinkering, I managed to provision my ADP1 setup without a SIM card.&#160; A bit of google, and here is what I did</p>
<ol>
<li>Download the Android SDK.&#160; In my case, I unzipped it to C:\android-sdk-windows-1.1_r1. </li>
<li>Connection the phone via the USB cable to my computer.&#160; When the phone asks for a device. </li>
<li>You’ll get the new hardware dialog, when prompted for the drivers, you’ll need to specify the location.&#160; The Android SDK has the drivers, in my case they were at C:\android-sdk-windows-1.1_r1\usb_driver\x86. </li>
<li>Once you have the drivers installed cd to c:\android-sdk-windows-1.1_r1\tools. </li>
<li>Type adb devices.&#160; This should list all the Android devices that you have connected.&#160; If you don’t see any devices listed, then you have a problem. </li>
<li>Type adb shell.&#160; This will direct your commands to your ADP1 </li>
<li>Now while at the adb shell, su to root, then :&#160; </li>
<li>cd /data/data/com.android/providers.settings/databases/ </li>
<li>sqlite3 settings.db </li>
<li>INSERT INTO system (name, value) VALUES (‘device_provisioned’, 1); </li>
<li>.quit </li>
<li>Reboot the phone </li>
<li>adb shell </li>
<li>am start –a android.intent.action.MAIN –n com.android.settings/.Settings </li>
</ol>
<p>Once all that is done, you should be enable to use your ADP1 as if you had a SIM card in it (we’ll except for the phoning part).</p>
<p>Useful link:&#160; <a href="http://www.gotontheinter.net/content/faq-unlockingactivating-g1-or-adp1-without-sim-card">FAQ: Unlocking/Activating a G1 or ADP1 Without A Sim Card</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opgenorth.net/2009/09/15/getting-starting-with-my-adp1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>NAS-less in the North</title>
		<link>http://www.opgenorth.net/2009/04/24/nas-less-in-the-north/?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=nas-less-in-the-north</link>
		<comments>http://www.opgenorth.net/2009/04/24/nas-less-in-the-north/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 02:25:00 +0000</pubDate>
		<dc:creator>tom</dc:creator>
				<category><![CDATA[Hardware]]></category>

		<guid isPermaLink="false">http://www.opgenorth.net/2009/04/24/nas-less-in-the-north/</guid>
		<description><![CDATA[Over the Easter long weekend, I experience my own resurrection of sorts.&#160; On Thursday just before Easter I noticed that my NAS, a Thecus N3200 Pro with three Seagate Barracuda 7200.11 drives in a RAID5 array, was beeping and displaying a “RAID degraded” message.&#160; I didn’t worry about it to much, as it was late [...]]]></description>
			<content:encoded><![CDATA[<p>Over the Easter long weekend, I experience my own resurrection of sorts.&#160; On Thursday just before Easter I noticed that my NAS, a Thecus N3200 Pro with three Seagate Barracuda 7200.11 drives in a RAID5 array, was beeping and displaying a “RAID degraded” message.&#160; I didn’t worry about it to much, as it was late on Thursday, and I figured I was safe/okay with three drives in a RAID5 array.</p>
<p>So, the next morning I check things out.&#160; Turns out all was not well in Whoville.&#160; While check the RAID config, I saw that two of the three drives had “warnings” associated with them.&#160; This was Not Good.&#160; Two out of three failing HDD in a RAID5 array is A Bad Thing.&#160; A bit of Googling and conversing with the <a href="http://www.harddata.com">vendor who sold me the NAS</a> (note- I’ve got no problems with them, Hard Data has always been great for me for the past six or seven years) and it seems that there is a <a href="http://seagate.custkb.com/seagate/crm/selfservice/search.jsp?DocId=207951&amp;Hilite=">firmware upgrade</a> for my particular trio of NAS drives.&#160; Luckily, I managed to get all my critical stuff off the NAS, so I’m not to worried about data loss.&#160; </p>
<p>So, I pull the drives, apply the firmware update, and try to rebuild. The NAS will not let me create a RAID5 array.&#160; So, I pull the drives one by one, and then proceed to check them out in a computer.&#160; Turns out that the two drives that had the warnings were okay, but the third drive, that was “warning-less” is toast.&#160; What is wrong with it I’m not sure, but the BIOS on the computer won’t recognize the drive after boot up.&#160; Had to RMA the drive back to Seagate.&#160; </p>
<p>So, now I sit, alone in my room, without my NAS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.opgenorth.net/2009/04/24/nas-less-in-the-north/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
