<?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>huanix &#187; geek</title>
	<atom:link href="http://www.huanix.com/category/geek/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.huanix.com</link>
	<description>chown -R huanix /</description>
	<lastBuildDate>Sat, 31 Dec 2011 14:53:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Creating a Dell partition with Ubuntu to reinstall Windows on a new or blank hard drive with the recovery disk</title>
		<link>http://www.huanix.com/2009/12/10/creating-a-dell-partition-with-ubuntu-to-reinstall-windows-on-a-new-or-blank-hard-drive-with-the-recovery-disk/</link>
		<comments>http://www.huanix.com/2009/12/10/creating-a-dell-partition-with-ubuntu-to-reinstall-windows-on-a-new-or-blank-hard-drive-with-the-recovery-disk/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 05:44:57 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[Dell rescue]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=362</guid>
		<description><![CDATA[Here's the scenario: You have a Dell and you have somehow lost and/or destroyed the hard drive with Windows on it and you need to reinstall Windows. I think there are various solutions that require downloading and or purchasing tools, but I've been able to use fdisk under Ubuntu linux to create this partition quickly and easily!]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s the scenario: You have a Dell and you have somehow lost and/or destroyed the hard drive with Windows on it and you need to reinstall Windows. I think there are various solutions that require downloading and or purchasing tools, but I&#8217;ve been able to use fdisk under Ubuntu linux to create this partition quickly and easily!</p>
<p>When you restore a Dell computer with a restore disk it may give the error:</p>
<p>Windows could not start becuase of a computer disk hardware configuration problem.<br />
Could not read from the selected boot disk. Check boot path and disk hardware.<br />
Please check the Windows documentation about hardware disk configuration and your hardware reference manuals for additional information.</p>
<p>The Dell expected to find a special Dell Partition at the beginning of the hard drive, and a newly formatted drive will not have this partition.</p>
<p>The process for creating this partition really is simple &#8211; I&#8217;m going to give a simple overview, and then more detailed instructions. The key here is not to overthink things. The GOOD news is, if you&#8217;re starting with a blank hard drive, you have nothing to lose!</p>
<p><span style="text-decoration: underline;">Simple Overview</span></p>
<p>(If you are familiar with booting into a live linux environment and fdisk, this should be all you need!)</p>
<ol>
<li>delete the existing partition table</li>
<li>create a new dell partiton spanning the first 7 cylinders. (1-7)</li>
<li>create a second partition for windows spanning the rest of the drive. (8-default max)</li>
<li>set the first partition to type &#8220;de&#8221; (dell partition)</li>
<li>set the second partiton to type 7 (NTFS)</li>
<li>write the changes</li>
<li>exit, and install windows</li>
</ol>
<p><span style="text-decoration: underline;">Detailed process</span> (all command line language is in <em>italics</em>)</p>
<ol>
<li>Download an <a href="http://www.ubuntu.com/GetUbuntu/download">Ubuntu Desktop CD</a></li>
<li>Boot with the CD</li>
<li> F12 is the &#8220;one time boot menu on my computer; choose CD/DVD Drive &#8211; if this doesn&#8217;t work for you, enter BIOS and change the first boot device to the CD drive.</li>
<li> When the CD menu opens choose your language</li>
<li> Select &#8220;Try Ubuntu without any change to your computer&#8221;</li>
<li>Wait a minute while the CD loads. When it is done, you will see an ubuntu desktop.</li>
<li> Choose Applications &gt; Accessories &gt; Terminal</li>
<li> At the command line type: <em>sudo bash</em> (any linux nerd will tell you this can lead to trouble &#8211; we need to become the root user so we can modify the partition table)</li>
<li> <em>fdisk -l</em> (this tells fdisk to list your partitions. note the name under &#8220;Device&#8221; that you want to work with)</li>
<li> The target device will look something like &#8220;/dev/sd?&#8221;, where &#8220;?&#8221; represents a letter of the alphabet)</li>
<li> <em>fdisk /dev/sda</em> (instead of &#8220;/dev/sda&#8221;, use the correct name of the device listed in fdisk -l; do NOT add the number at the end of the device)</li>
<li> You are now in the fdisk utility. My instructions cannot fit every case perfectly, so you may need to improvise, but it&#8217;s easy. Type <em>m</em> if you need some guidance in fdisk. Protip: None of the changes you make will be written until you choose to write them. If you quit without writing, no changes (damage) will be done!</li>
<li> d (delete the existing partition table)</li>
<li>If you have multiple partitions you will be asked which one to delete. Delete them all one at a time. IF you only have one, it will automatically select it. Continue when you can type  <em>fdisk -l</em> and see a blank partition table.</li>
<li>Time to create the dell partition:<br />
Type <strong><em>n </em></strong>to create a new parition.<br />
Type <em><strong>p</strong> </em>to make this a primary partition.<br />
Type <em><strong>1 </strong></em>to make it the first partition.<br />
Type  <em><strong>1</strong></em> to make the paritition start at the first cylinder.<br />
Type  <em><strong>7</strong></em> to end the partition at cylinder 7.</li>
<li>Now we label the partition as a Dell partition:<br />
Type <strong><em>t</em></strong> to change the type of the partition.<br />
Type<em><strong> de</strong></em> to change the partition to type Dell.</li>
<li>Time to create the Windows partition:<br />
Type <strong><em>n </em></strong>to create a new parition.<br />
Type <em><strong>p</strong> </em>to make this a primary partition.<br />
Type <em><strong>2 </strong></em>to make it the second partition.<br />
Type  <em><strong>8 </strong></em>to make the paritition start at the first cylinder.<br />
Press <em><strong>Enter</strong></em> to end the partition at the last available cylinder of the hard drive.</li>
<li>Now we label the partition as a NTFS partition:<br />
Type <strong><em>t</em></strong> to change the type of the partition.<br />
Type <em><strong>2</strong></em> to select the second partition.<br />
Type<em><strong> 7</strong></em> to change the partition to type NTFS.</li>
<li>Now all you have to do is press <strong>w</strong> to write your changes and exit. If you do not write your changes before you exit, you will probably spend a long time trying to figure out why things didn&#8217;t work.</li>
<li>I always run <strong><em>fdisk -l</em></strong> one last time before I exit the command line to make sure I did everything right!</li>
<li>Shut down the computer.</li>
<li>Reboot the computer using the Dell Rescue CD and install windows.</li>
</ol>
<p>If you try this and it doesn&#8217;t work the first time, I suggest retrying. One common mistake is to run fdisk on /dev/sda1 (<span style="color: #ff0000;">wrong</span>) rather than /dev/sda (<span style="color: #339966;">right!</span>). Be sure you&#8217;re fdisking the correct volume! I have also talked to people that exit fdisk without writing the changes. If you exit without writing, it was just a dry run &#8211; nothing happened!</p>
<p>I am attaching some sequential screenshots &#8211; they are not complete, but they may help you understand the process if you&#8217;re having difficulty!</p>
<p><a href="http://www.huanix.com/wp-content/uploads/2009/12/fdisk.png"><img class="alignnone size-medium wp-image-363" title="fdisk" src="http://www.huanix.com/wp-content/uploads/2009/12/fdisk-300x203.png" alt="fdisk" width="300" height="203" /></a><a href="http://www.huanix.com/wp-content/uploads/2009/12/create_new_fdisk.png"><img class="alignnone size-medium wp-image-364" title="create_new_fdisk" src="http://www.huanix.com/wp-content/uploads/2009/12/create_new_fdisk-300x225.png" alt="create_new_fdisk" width="300" height="225" /></a><a href="http://www.huanix.com/wp-content/uploads/2009/12/writing-new-partitions-fdisk.png"><img class="alignnone size-medium wp-image-365" title="writing new partitions fdisk" src="http://www.huanix.com/wp-content/uploads/2009/12/writing-new-partitions-fdisk-300x225.png" alt="writing new partitions fdisk" width="300" height="225" /></a></p>
<h4>Incoming search terms:</h4><ul><li>dell partition table</li><li>dell recovery partition ubuntu</li><li>dell reinstall hdd dell partition</li><li>fdisk mark partition as type de dell recovery</li><li>install ubuntu on dell partition disc</li><li>install ubuntu on dell recovery partition</li><li>partition ubuntu on dell</li><li>ubuntu dell recovery disk</li><li>using dell recovery partition with ubuntu</li><li>dell xp recovery cd options</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2009/12/10/creating-a-dell-partition-with-ubuntu-to-reinstall-windows-on-a-new-or-blank-hard-drive-with-the-recovery-disk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>data recovery using dd_rescue over ssh</title>
		<link>http://www.huanix.com/2009/04/11/data-recovery-using-dd_rescue-over-ssh/</link>
		<comments>http://www.huanix.com/2009/04/11/data-recovery-using-dd_rescue-over-ssh/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 22:37:31 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[data recovery]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[helix3]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=323</guid>
		<description><![CDATA[These notes are primarily for my own use, but maybe you&#8217;ll get some benefit out of them. Also &#8211; these directions are a work in progress; i appreciate your feedback to improve them. Data recovery from a failed drive using dd_rescue over ssh: Use Helix3 as a boot disk; ensure the network is connected; Make [...]]]></description>
			<content:encoded><![CDATA[<p>These notes are primarily for my own use, but maybe you&#8217;ll get some benefit out of them. Also &#8211; these directions are a work in progress; i appreciate your feedback to improve them.</p>
<p>Data recovery from a failed drive using dd_rescue over ssh:</p>
<ol>
<li>Use Helix3 as a boot disk; ensure the network is connected; Make sure the bad/recovered hard drive is connected, but do not mount it in helix &#8211; it causes unnecessary disk activity. I prefer the console mode.</li>
<li>Identify the correct disk to recover. You might already know this, but use fdisk -l to be sure.</li>
<li>dd_rescue /dev/hda &#8211; | ssh huanix@192.168.1.4 &#8216;dd of=/media/data/test.img&#8217;</li>
<li>sometimes this hangs and i have to ctrl-z and restart. accept the RSA key and enter the user password.</li>
<li>The rescue can take a lot of time depending on how well the head transfer went, or how damaged the platters are. My worst case average is 1gb/hr</li>
<li>Now that you have the image on a safe machine, i like to make a copy of the disk image, just to be safe!</li>
<li>examine/build the partition table. I struggle here, but i eventually get it right.</li>
<li>fdisk -l to check the drive format</li>
<li>fdisk /dev/hda</li>
<li>enter expert mode (x)</li>
<li>set the sectors (s), heads (h), and cylinders (c), then return to home (r) and then write (w)</li>
<li>Calculate the offset: fdisk -lu //media/data/test.img</li>
<li>look in the &#8220;start&#8221; column, find the value and multiply it by 512 to get your offset.</li>
<li>the following mounts a fat32 partition (vfat)</li>
<li>sudo mount -t vfat -o loop,offset=32256 /media/data/test.img /media/test</li>
</ol>
<p>Primary references:</p>
<p>http://www.debianadmin.com/recover-data-from-a-dead-hard-drive-using-ddrescue.html</p>
<p>http://www.linux-usb.org/gadget/file_storage.html</p>
<p>As I research this method I&#8217;m learning more about dd_rescue vs. ddrescue. I&#8217;m working to use the newer, better ddrescue&#8230; this is just for reference!</p>
<h4>Incoming search terms:</h4><ul><li>ddrescue ssh</li><li>dd_rescue ssh</li><li>ddrescue over ssh</li><li>ddrescue over network</li><li>dd_rescue over ssh</li><li>dd rescue ssh</li><li>ddrescue iphone</li><li>ddrescue network</li><li>dd_rescue</li><li>iphone data recovery ssh</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2009/04/11/data-recovery-using-dd_rescue-over-ssh/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>iTunes 8 running natively in Ubuntu 8.10 with Wine</title>
		<link>http://www.huanix.com/2008/11/07/itunes-8-running-natively-in-ubuntu-810-with-wine/</link>
		<comments>http://www.huanix.com/2008/11/07/itunes-8-running-natively-in-ubuntu-810-with-wine/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 03:17:15 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=209</guid>
		<description><![CDATA[Here&#8217;s a screenshot of iTunes 8 running on Ubuntu 8.10 Intrepid Ibex: wine-116-itunes-no-devices.sh (right-click the link to download this script) to run it: save the script to your desktop or home folder open a terminal (Applications &#62; Accessories &#62; Terminal), navigate to the same directory as the script. type: chmod 777 wine-116-itunes-no-devices.sh (hit enter) then [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;">Here&#8217;s a screenshot of iTunes 8 running on Ubuntu 8.10 Intrepid Ibex:</p>
<p style="text-align: center;"><a href="http://www.huanix.com/wp-content/uploads/2008/11/itunes_ubuntu.jpg"><img class="aligncenter size-thumbnail wp-image-212" title="itunes_ubuntu" src="http://www.huanix.com/wp-content/uploads/2008/11/itunes_ubuntu-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p style="text-align: center;"><strong><a href="http://www.huanix.com/wp-content/uploads/2008/11/wine-116-itunes-no-devices.sh">wine-116-itunes-no-devices.sh</a></strong><br />
(right-click the link to download this script)</p>
<p style="text-align: left;"><strong>to run it:</strong><br />
save the script to your desktop or home folder<br />
open a terminal (Applications &gt; Accessories &gt; Terminal), navigate to the same directory as the script.<br />
type: chmod 777 wine-116-itunes-no-devices.sh (hit enter)<br />
then type: ./wine-116-itunes-no-devices.sh (hit enter)</p>
<p>This script will build a custom version of wine 1.1.6 that will run iTunes 8.0.1 on Ubuntu 8.10. The resulting installation of wine will *NOT* (?) recognize iPhones or iPods. This installation will <strong>NOT</strong> conflict with your existing wine installation &#8211; it is separate!!!</p>
<p>Expect to download 500+ mb of stuff and compile for 2+ hours. I may find a way to simplify it later, but my goal now is to get it working reliably and predictably for everyone running Ubuntu 8.10.</p>
<p>Please leave detailed feedback including your operating system and version of iTunes as well as other information (i expect people to try lots of different things). &#8220;it worked&#8221; or &#8220;it didn&#8217;t work&#8221; are not useful comments!!<br />
As far as getting devices to work, my best shot was Marteen  Lankhorst&#8217;s rejected patches (<a title="http://www.winehq.org/pipermail/wine-patches/2008-May/054483.html" href="http://www.winehq.org/pipermail/wine-patches/2008-May/054483.html" target="_blank">http://www.winehq.org/pipermail/wine-patches/2008-May/054483.html</a>), but i haven&#8217;t gotten them to work with iTunes 8 (not sure why). Just in case you weren&#8217;t clear: This version WILL run iTunes 8, but it will NOT recognize your iPod/iPhone.  My current solution for that is with VirtualBox: <a title="http://www.huanix.com/2008/11/03/fixing-usb-on-virtualbox-to-allow-iphone-sync-with-an-ubuntu-host-running-windows-xp/" href="http://www.huanix.com/2008/11/03/fixing-usb-on-virtualbox-to-allow-iphone-sync-with-an-ubuntu-host-running-windows-xp/" target="_self">http://www.huanix.com/2008/11/03/fixing-usb-on-virtualbox-to-allow-iphone-sync-with-an-ubuntu-host-running-windows-xp/</a></p>
<p><strong>For the latest developments on this, go to the wiki at : <a title="http://www.huanix.com/sync-in-linux/index.php/ITunes_8_through_modified_Wine" href="http://www.huanix.com/sync-in-linux/index.php/ITunes_8_through_modified_Wine">http://www.huanix.com/sync-in-linux/index.php/ITunes_8_through_modified_Wine</a></strong></p>
<h4>Incoming search terms:</h4><ul><li>itunes ubuntu</li><li>UBUNTU ITUNES</li><li>Wine ubuntu</li><li>ubuntu wine</li><li>itunes wine iphone</li><li>itunes ubuntu wine</li><li>itunes on ubuntu</li><li>itunes for ubuntu</li><li>ubuntu itunes wine</li><li>ubuntu itunes iphone</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2008/11/07/itunes-8-running-natively-in-ubuntu-810-with-wine/feed/</wfw:commentRss>
		<slash:comments>57</slash:comments>
		</item>
		<item>
		<title>Ubuntu Linux tools for iPhone: video audio and data transfer</title>
		<link>http://www.huanix.com/2007/12/31/ubuntu-linux-tools-for-iphone-video-audio-and-data-transfer/</link>
		<comments>http://www.huanix.com/2007/12/31/ubuntu-linux-tools-for-iphone-video-audio-and-data-transfer/#comments</comments>
		<pubDate>Tue, 01 Jan 2008 02:04:34 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[gutsy]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.huanix.com/2007/12/31/ubuntu-linux-tools-for-iphone-video-audio-and-data-transfer/</guid>
		<description><![CDATA[NOTE: This post is FAR from done, I just needed to begin documenting these tools. Your help is welcome! The iPhone was designed specifically to work with Apple iTunes, and to the best of my knowledge, you still can&#8217;t get away without attaching it to iTunes to activate it, but after the dirty business of [...]]]></description>
			<content:encoded><![CDATA[<p><strong>NOTE:</strong> This post is FAR from done, I just needed to begin documenting these tools. Your help is welcome!</p>
<p>The iPhone was designed specifically to work with Apple iTunes, and to the best of my knowledge, you still can&#8217;t get away without attaching it to iTunes to activate it, but after the dirty business of activating and jailbreaking, many of us want to return to a world free of DRM and big brother.</p>
<p>There are several tools available to people using iPhone (or iPod) with Linux, but or some reason I haven&#8217;t been able to find one page that has a good list; I&#8217;m going to try to set that up here.</p>
<p><u>Music Management</u></p>
<ul>
<li><strong><a href="http://amarok.kde.org/" title="Amarok" target="_blank">Amarok</a></strong> is fairly easy to set up with instructions by <a href="http://blog.adaniels.nl/articles/iphone-amarok/" title="Amarok and iPhone setup by Arnold Daniels" target="_blank">Arnold Daniels</a></li>
<li><strong><a href="http://www.gtkpod.org/about.html" title="GTKpod" target="_blank">GTKpod</a></strong> looks good, but I haven&#8217;t used it much; <a href="http://www.simplehelp.net/2007/07/07/how-to-use-gtkpod-to-manage-your-ipod-in-ubuntu/" title="manage ipod with ubuntu" target="_blank">here&#8217;s a guide</a>.</li>
</ul>
<p><u>Media Conversion Tools</u></p>
<ul>
<li><a href="http://ffmpeg.mplayerhq.hu/" title="ffmpeg" target="_blank"><strong>ffmpeg</strong></a>: ffmpeg is probably the single most important utility for encoding audio and video into a format that can be transferred to the iPhone. The trick is, you will probably have to build from source to enable the correct (proprietary) codecs. Even better &#8211; install the version of ffmpeg from medibuntu; <a href="http://www.salatti.net/medibuntu-repository-for-ubuntu-gutsy/" title="medibuntu for ffmpeg" target="_blank">here</a> are instructions</li>
<li><strong> <a href="http://www.myth2ipod.com/" title="myth2ipod">myth2ipod</a></strong>: myth2ipod converts your pvr recordings to a feed that can be downloaded to your ipod. At this point I have only had success with this on iTunes, but I do know that you can add feeds in amarok, but I haven&#8217;t done well with video feeds. I actually have myth2ipod set up on <a href="http://mysettopbox.tv" title="Knoppmyth" target="_blank">Knoppmyth</a> which runs VERY nice!</li>
</ul>
<p><u>Libraries and Codecs</u></p>
<ul>
<li><strong><a href="http://www.gtkpod.org/libgpod.html" title="ligbpod">libgpod</a>:</strong> A library designed to allow access to the ipod by developers of GTKpod.</li>
<li><strong><a href="http://sourceforge.net/projects/fuse/" title="filesystem in userspace" target="_blank">fuse</a></strong>: a framework to allow sshfs to work, fuse = Filesystem in USErspace.</li>
<li><strong>MP4box</strong>: ?? don&#8217;t know .. it exists, but i haven&#8217;t looked at it yet.</li>
<li><strong>nuvexport</strong>: a component of myth2ipod.. not sure of its role&#8230; i think it generates XML&#8230;</li>
</ul>
<p><u>Mounting the file system</u></p>
<ul>
<li><strong><a href="http://fuse.sourceforge.net/sshfs.html" title="sshfs" target="_blank">sshfs</a></strong>: This is a neat utility to access a file system over ssh. People who are new to iphone on Linux may not realize that the primary mode of access is over wifi rather than usb.</li>
</ul>
<p><u>Tutorials</u></p>
<ul>
<li><a href="http://slated.org/howto_transcode_h264_for_ipod_with_ffmpeg" title="video to ipod with ffmpeg" target="_blank"> Howto: Encode H.264 Video for the iPod using ffmpeg</a></li>
</ul>
<p><u></u></p>
<h4>Incoming search terms:</h4><ul><li>ubuntu iphone video</li><li>linux iphone video</li><li>linux iphone tools</li><li>ubuntu iphone video transfer</li><li>iphone video ubuntu</li><li>iphone linux tools</li><li>ubuntu iphone tools</li><li>linux access iphone</li><li>iphone tools for linux</li><li>iphone transfer linux</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/12/31/ubuntu-linux-tools-for-iphone-video-audio-and-data-transfer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>It&#8217;s the RAM, you fool! OR, &#8220;why you should always run memtest&#8221;</title>
		<link>http://www.huanix.com/2007/12/01/its-the-ram-you-fool-or-why-you-should-always-run-memtest/</link>
		<comments>http://www.huanix.com/2007/12/01/its-the-ram-you-fool-or-why-you-should-always-run-memtest/#comments</comments>
		<pubDate>Sat, 01 Dec 2007 19:04:25 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[AMD64]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[Knoppmyth]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SL7PM]]></category>

		<guid isPermaLink="false">http://www.huanix.com/2007/12/01/its-the-ram-you-fool-or-why-you-should-always-run-memtest/</guid>
		<description><![CDATA[I have fallen into this trap before. A computer begins locking up, either frequently or infrequently, and I attribute it to software errors and keep plugging along, consistently frustrated that the software I&#8217;m using was allowed to escape the developers hands to corrupt my system. In this case, I had been frustrated with Knoppmyth for [...]]]></description>
			<content:encoded><![CDATA[<p>I have fallen into this trap before. A computer begins locking up, either frequently or infrequently, and I attribute it to software errors and keep plugging along, consistently frustrated that the software I&#8217;m using was allowed to escape the developers hands to corrupt my system. In this case, I had been frustrated with <a href="http://mysettopbox.tv" title="Knoppmyth">Knoppmyth</a> for about two months. I had somehow relinquished myself to blaming my problems on Cecil Watson, the benevolent creator of Knoppmyth, rather than my own hardware or system admin skills. Today I tried for the 15th time to get a good stable install of Knoppmyth running on my Asus P4S800 mobo with an Intel SL7PM processor (3.0E  GHz) and 1 gig of Corsair CMX1024-3200PT ram. This was my old desktop setup (before I switched to <a href="http://www.amd.com/us-en/Processors/ProductInformation/0,,30_118_9485_9487,00.html?redir=CPAT01" title="Love me some AMD64!">AMD64</a>) and it always ran like a champ. So needless to say I was rather disenfranchised to find it crashing repeatedly with Knoppmyth.</p>
<p>The Point of my story is that I DID eventually run a memory test before attempting an install and discovered that the RAM had errors-  which is USUALLY the answer when you have intermittent undiagnosable failure. I went to the <a href="http://www.corsair.com/helpdesk" title="Corsair Helpdesk">corsair helpdesk (http://www.corasir.com/helpdesk)</a>  and answered a few quick questions; they accept a failed memory test as grounds for replacement under their lifetime guarantee, so I expect an RMA and a new chip rather soon. I think if this works out and my Mythbox runs smoothly again I&#8217;m going to share some good Christmas tidings with Cecil. (Paypal style!)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/12/01/its-the-ram-you-fool-or-why-you-should-always-run-memtest/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting to MySQL 5.0.xx from a remote client on Ubuntu Gutsy (or other)</title>
		<link>http://www.huanix.com/2007/11/09/connecting-to-mysql-50xx-from-a-remote-client-on-ubuntu-gutsy-or-other/</link>
		<comments>http://www.huanix.com/2007/11/09/connecting-to-mysql-50xx-from-a-remote-client-on-ubuntu-gutsy-or-other/#comments</comments>
		<pubDate>Sat, 10 Nov 2007 02:48:30 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Moodle]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.huanix.com/2007/11/09/connecting-to-mysql-50xx-from-a-remote-client-on-ubuntu-gutsy-or-other/</guid>
		<description><![CDATA[It took me a few minutes to connect remotely to a mysql database. My use for this is to use the same database for multiple installations of web software (moodle). I&#8217;ll go into that in-depth later, but right now, let&#8217;s just connect to the database from remote. These instructions are based on Ubuntu Gutsy or [...]]]></description>
			<content:encoded><![CDATA[<p>It took me a few minutes to connect remotely to a mysql database. My use for this is to use the same database for multiple installations of web software (moodle). I&#8217;ll go into that in-depth later, but right now, let&#8217;s just connect to the database from remote. These instructions are based on Ubuntu Gutsy or Feisty, but should be pretty general to any mysql and linux server. These steps are done on the database server.</p>
<p>1. edit /etc/mysql/my.cnf to remove the lock for localhost (127.0.0.1)<br />
<code><br />
sudo nano +47 /etc/mysql/my.cnf</code><br />
comment out the line (add a # at the VERY beginning of the line)<br />
<code><br />
#bind-address            = 127.0.0.1<br />
</code></p>
<p>2. edit /etc/hosts.allow to allow connections from your server (10.0.0.1 in this example &#8211; change it to the address you are connecting FROM). Note: &#8220;ALL&#8221; is too general, but I had trouble using &#8220;mysqld&#8221;, which was recommended.<br />
<code><br />
sudo nano /etc/hosts.allow<br />
</code><br />
scroll to the bottom and add:<br />
<code><br />
ALL : 10.0.0.55</code></p>
<p><code> </code><br />
3. Add the user in mysql with the correct host identification. Enter mysql as root (mysql -u root -p) and do the following:<br />
<code><br />
create user remoteguy@10.0.0.55 identified by 'l33ta0l';<br />
</code><br />
4. You could restart your mysql and inet services, but i just restart the server &#8211; sometimes easier <img src='http://www.huanix.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>NOW, go to the client (in this case, we&#8217;re calling it 10.0.0.55) and do, (we&#8217;re calling the mysql server 10.0.0.2) :<br />
<code><br />
mysql -u remoteguy@10.0.0.55 -p -h 10.0.0.2<br />
</code></p>
<h4>Incoming search terms:</h4><ul><li>ubuntu mysql connect remotely</li><li>connect to mysql remotely ubuntu</li><li>ubuntu connect to mysql database remote</li><li>ubuntu connect to mysql remote</li><li>how to connect mysql remotely in ubuntu</li><li>how to connect to mysql ubuntu remotely</li><li>ubuntu mysql connect from remote</li><li>remote connection to mysql database ubuntu</li><li>connecting to mysql database remotely ubuntu</li><li>ubuntu connect to remote mysql database</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/11/09/connecting-to-mysql-50xx-from-a-remote-client-on-ubuntu-gutsy-or-other/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geek My Swim</title>
		<link>http://www.huanix.com/2007/07/27/geek-my-swim/</link>
		<comments>http://www.huanix.com/2007/07/27/geek-my-swim/#comments</comments>
		<pubDate>Fri, 27 Jul 2007 22:25:37 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[geek]]></category>

		<guid isPermaLink="false">http://www.huanix.com/2007/07/27/geek-my-swim/</guid>
		<description><![CDATA[This is just a rough idea at the moment, but I expect to develop it this weekend: I have started participating in triathlons lately, and one of the necessary evils I&#8217;ve discovered is the need to practice swimming by doing laps in a pool. I want a way to keep track of my laps, and [...]]]></description>
			<content:encoded><![CDATA[<p>This is just a rough idea at the moment, but I expect to develop it this weekend:</p>
<p>I have started participating in triathlons lately, and one of the necessary evils I&#8217;ve discovered is the need to practice swimming by doing laps in a pool. I want a way to keep track of my laps, and to keep track of my progress over time. Finis has a &#8220;swim lap tracker&#8221; at $70 that keeps track of your laps as you swim, but I don&#8217;t have $70, and I think I could do a better solution for cheaper.</p>
<p>I&#8217;ve got several old laptops laying around; the plan is to use a serial input linked to a simple php script to keep track of my current laps and store the results in a database. The frontend should tell the the number of laps I&#8217;ve done and the time of the last lap (color coded for time compared to average?). Further, so I don&#8217;t have to touch the laptop when I&#8217;m done, the serial input device should create a key combo that will tell the laptop to shutdown.</p>
<p>The serial input should be on a telephone line type plug that will terminate in or at the water on a waterproof button &#8230; maybe a big red one <img src='http://www.huanix.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Total cost should be about $15 for the button, I have everything else.</p>
<p>The laptop will run debian or xubuntu &#8211; the minimum i would need to get a browser up on a gui. it&#8217;ll need apache, php, and mysql.</p>
<p>&#8211;Update<br />
I&#8217;m still gathering resources, I&#8217;ll create my list here:</p>
<ul>
<li>google search term: linux 9-pin serial input  keyboard button
<ul>
<li>http://linuxfocus.org/English/January2001/article186.shtml</li>
<li>http://www.faqs.org/docs/Linux-mini/IO-Port-Programming.html</li>
</ul>
</li>
<li>sourceforge.net searchterm: serial key mapping
<ul>
<li>http://sourceforge.net/projects/scontrol/</li>
<li>http://sourceforge.net/projects/slsnif/</li>
<li>http://sourceforge.net/projects/jsbuttons/</li>
<li>http://sourceforge.net/projects/serial-io/</li>
</ul>
</li>
</ul>
<h4>Incoming search terms:</h4><ul><li>audrino swim lap</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/07/27/geek-my-swim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Netgear 8-port gigabit router</title>
		<link>http://www.huanix.com/2007/05/31/netgear-8-port-gigabit-router/</link>
		<comments>http://www.huanix.com/2007/05/31/netgear-8-port-gigabit-router/#comments</comments>
		<pubDate>Thu, 31 May 2007 19:10:05 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[netgear]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.huanix.com/2007/05/31/netgear-8-port-gigabit-router/</guid>
		<description><![CDATA[It doesn&#8217;t exist. I have a firm expectation that by the time I&#8217;m in the mood to expect a product, the geniuses in industry will have already produced it and I can lay my money on the table with a smile. As far as I can tell, there are lots of companies manufacturing unmanaged 8-port [...]]]></description>
			<content:encoded><![CDATA[<p>It doesn&#8217;t exist. I have a firm expectation that by the time I&#8217;m in the mood to expect a product, the geniuses in industry will have already produced it and I can lay my money on the table with a smile. As far as I can tell, there are lots of companies manufacturing unmanaged 8-port gigabit switches, and lots of companies offering 4-port managed routers, but after several hours of surfing, I cannot locate an 8-port gigabit router. YES, I could use any computer on my network as a gateway, but I&#8217;m spoiled enough to enjoy DHCP, firewall, and switching all in one box &#8211; heck, I&#8217;d even throw in a few extra bucks for a wireless connection and VPN.</p>
<p>I implore you, if you&#8217;ve discovered this product, please let me know! I would certainly prefer a netgear product, but at this point i&#8217;d be willing to take one manufactured by Mattel.</p>
<h4>Incoming search terms:</h4><ul><li>i have netgare 8 port switch i have to take dm of that</li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/05/31/netgear-8-port-gigabit-router/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Restructuring the Desktop</title>
		<link>http://www.huanix.com/2007/04/04/restructuring-the-desktop/</link>
		<comments>http://www.huanix.com/2007/04/04/restructuring-the-desktop/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 14:22:59 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SL7PM]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.huanix.com/index.php/2007/04/04/restructuring-the-desktop/</guid>
		<description><![CDATA[I am off for spring break this week and I have taken some (a lot) of time to rebuild my desktop computer. I have been running the same basic box since I installed Windows XP on it  a few years ago  &#8211; it&#8217;s a Asus P4-S800 with a Intel P4 SL7PM processor (overclocked at 3.4) [...]]]></description>
			<content:encoded><![CDATA[<p>I am off for spring break this week and I have taken some (a lot) of time to rebuild my desktop computer. I have been running the same basic box since I installed Windows XP on it  a few years ago  &#8211; it&#8217;s a Asus P4-S800 with a Intel P4 SL7PM processor (overclocked at 3.4) and between 1 and 2 GB of RAM. I&#8217;m using a Western Digital 250 GB drive because they&#8217;re cheap and I don&#8217;t really need to store vital data on it.</p>
<p> Anyway, the configuration is what i wanted to talk about! I previously had 10 partitions, a 150 GB partition for XP, and 10 x 10 GB partitions for various linux distros. The big change I made is to commit to working on a few major distros and focusing a little less on checking out new distros.</p>
<p> The new configuration is:<br />
100 GB for Windows XP &#8211; I think i will continue to shrink this as I get away from Windows.<br />
20 GB for <a href="http://www.ubuntu.com">Ubuntu</a> &#8211; currently as Feisty Beta.<br />
20 GB for <a href="http://www.redhat.com">Red Hat</a> &#8211; because I really don&#8217;t have much experience with it.<br />
20 GB for <a href="http://www.novell.com/linux/suse/">Suse</a> &#8211; Again with the variety, Suse is such a strong distro, you just can&#8217;t ignore it.<br />
20 GB for <a href="http://www.knopper.net">Knoppix</a> &#8211; Another Debian distro, but it&#8217;s quite different from Ubuntu.<br />
35 GB for &#8220;Documents&#8221; &#8211; part of my getting away from XP means migrating my data to an OS independent drive.</p>
<p>The plan is to get into a routine of booting into a different OS every day until I really get a good gut feeling for what distro executes what task most efficiently.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/04/04/restructuring-the-desktop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Because I&#8217;m fat.</title>
		<link>http://www.huanix.com/2007/03/17/because-im-fat/</link>
		<comments>http://www.huanix.com/2007/03/17/because-im-fat/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 00:53:48 +0000</pubDate>
		<dc:creator>huanix</dc:creator>
				<category><![CDATA[geek]]></category>
		<category><![CDATA[health]]></category>

		<guid isPermaLink="false">http://www.huanix.com/?p=31</guid>
		<description><![CDATA[I&#8217;m getting closer to 30, and as I get a little older and more financially able, I have also become more overweight. I&#8217;m not &#8220;huge&#8221;, but i am 5&#8217;9&#8243; and 200 lbs.. significantly heavier than my &#8220;target weight&#8221; (164 lbs).. anyway, I have started running again, but I am actually hinging my weight loss goals [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m getting closer to 30, and as I get a little older and more financially able, I have also become more overweight. I&#8217;m not &#8220;huge&#8221;, but i am 5&#8217;9&#8243; and 200 lbs.. significantly heavier than my &#8220;target weight&#8221; (164 lbs).. anyway, I have started running again, but I am actually hinging my weight loss goals on a game.. Dance Dance Revolution on the PS2. Lisa and I picked one up at target the other day, the whole setup for ~$200, and we have been playing it non-stop.</p>
<p>Now, I&#8217;m not breaking a sweat, but i am being seriously challenged and having a lot of fun doing it. i think that with enough practice, (fun practice) i will become good enough to break a serious sweat.</p>
<p> I see several advantages to the game format of exercise:</p>
<p> 1. It&#8217;s a game, and I&#8217;m constantly encouraged to earn a higher score.</p>
<p> 2. It has interesting graphics.</p>
<p> 3. I&#8217;m staring at the tv, which is usually worthless.</p>
<p> 4. I don&#8217;t have to get dressed to exercise, and i&#8217;m not impressing anyone..</p>
<p>in all, i&#8217;ve found DDR great for exercise.. only time will tell if it&#8217;s effective!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.huanix.com/2007/03/17/because-im-fat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

