<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:rawvoice="http://www.rawvoice.com/rawvoiceRssModule/"
>

<channel>
	<title>Nosbig.net &#187; Hardware</title>
	<atom:link href="http://www.nosbig.net/category/technology/hardware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nosbig.net</link>
	<description>Like my life, in a perpetual state of construction...</description>
	<lastBuildDate>Sat, 06 Aug 2011 07:38:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<!-- podcast_generator="Blubrry PowerPress/2.0.4" -->
	<itunes:summary>Like my life, in a perpetual state of construction...</itunes:summary>
	<itunes:author>Nosbig.net</itunes:author>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.nosbig.net/wp-content/plugins/powerpress/itunes_default.jpg" />
	<itunes:subtitle>Like my life, in a perpetual state of construction...</itunes:subtitle>
	<image>
		<title>Nosbig.net &#187; Hardware</title>
		<url>http://www.nosbig.net/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://www.nosbig.net/category/technology/hardware/</link>
	</image>
		<item>
		<title>Learning from Broken Equipment and Minor Mistakes</title>
		<link>http://www.nosbig.net/learning-from-broken-equipment-and-minor-mistakes/</link>
		<comments>http://www.nosbig.net/learning-from-broken-equipment-and-minor-mistakes/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 16:32:36 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/?p=321</guid>
		<description><![CDATA[A few days ago, I noticed that websites were loading very slowly, particularly in the early stages.  It appeared as if there were problems with the DNS service being provided by my internal storage server.  I tried to SSH into &#8230; <a href="http://www.nosbig.net/learning-from-broken-equipment-and-minor-mistakes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>A few days ago, I noticed that websites were loading very slowly, particularly in the early stages.  It appeared as if there were problems with the DNS service being provided by my internal storage server.  I tried to SSH into the machine to do some investigation and access the Webmin web interface; neither option worked.  However, I was able to receive replys to pings sent to the server.  I knew something was up, but I would have to dig in to figure out exactly what.</p>
<p><span id="more-321"></span></p>
<p>After seeing these symptoms and a machine that is totally unresponsive, I chose to blindly reboot the machine, as I was running the server headless.  Not something I would <strong>ever</strong> do in a production environment, but it&#8217;s my home server.  After a reboot, the server wouldn&#8217;t even respond to ping requests, and I saw in my router that it had not registered its DHCP lease upon boot.  My obvious next step was to connect a monitor to this machine and actually see what was going on.  As I moved the machine around to plug in the monitor cable, I noticed that the steel case was warm (borderline hot, in fact) to the touch.  Once the monitor was connected, I immediately saw the root of the problem.  I was staring at a BIOS screen telling me the boot drive had failed.</p>
<p>Knowing what the problem was made for a clear path for recovering.  I located a replacement IDE hard drive and swapped it into the case and reloaded a stock installation of Debian 6, Squeeze.  Recreating the basic installation was no problem, and I added Webmin back onto the system.  Fortunately, I had no user data on the orignal hard drive, and I had kept the data volume in its own volume group, to avoid problems like this, should they ever come up.  The only parts of the configuration that were located on the original drive were mounting, NFS, Samba, and DNS configurations.  On the other hand, I had not gotten around to backing up that configuration to another machine to avoid such a problem.  ;-)</p>
<p>After getting a new boot drive with an OS on it, I moved to getting the data volume up and running.  Based upon <a title="A Weekend Project" href="http://www.nosbig.net/a-weekend-project/">my previous post</a>, the data lives inside of a LVM logical volume on top of a physical RAID1 array.  Since I was simply trying to locate and re-enable an existing array, I ran: &#8220;mdadm &#8211;assemble &#8211;scan&#8221; which found the two partitions in the RAID1 and activated them.  Since they had not been touched in quite some time, no resync was even necessary.</p>
<p>The next step was to locate and reactivate the logical volume so that I could actually mount and use the data stored on the volume.  I ran each of the LVM *scan commands, &#8220;vgscan&#8221;, &#8220;pvscan&#8221;, and &#8220;lvscan&#8221; to confirm the metadata had been preserved.  Everything looked good, so I just had to reactivate the volume with the &#8220;vgchange -y a&#8221; command, which tells LVM to activate all available volume groups and logical volumes.  I was finally able to mount the data drives and verify that all of the expected data was there.</p>
<p>Now that the data drives were healthy, I had to finish recreating the lost configurations.  I added a permanent entry in /etc/fstab to mount the volume at boot, along with my NFS exports.  Also, I added the local users to the system and gave Samba passwords.  My only time-consuming task was to re-enter the forward and reverse DNS entries for my internal machines and set the DNS forwarders.</p>
<p>Now that the configuration was back to where I wanted it, I took the extra step of using Webmin&#8217;s backup module to export all of the configuration information from the system to my laptop.</p>
<p>Once I really knew what was hapenning, the fix really didn&#8217;t take that long.  I spent about 4 hours between loading the OS, reactivating the data drives, and getting the local services set back up again.  With the added knowledge of RAID and LVM recovery in Linux, as well as configuration backups, it would probably only take about an hour; most of that time would be waiting on the OS to install to the drive.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/learning-from-broken-equipment-and-minor-mistakes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Weekend Project</title>
		<link>http://www.nosbig.net/a-weekend-project/</link>
		<comments>http://www.nosbig.net/a-weekend-project/#comments</comments>
		<pubDate>Fri, 13 May 2011 14:19:22 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Samba]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/?p=294</guid>
		<description><![CDATA[This weekend, I finished the bulk of the work of a long-standing project I had been pondering. I had all sorts of data lying around on my desktop machine that I didn’t want to lose. Photos, videos, school assignments, and &#8230; <a href="http://www.nosbig.net/a-weekend-project/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This weekend, I finished the bulk of the work of a long-standing project I had been pondering. I had all sorts of data lying around on my desktop machine that I didn’t want to lose. Photos, videos, school assignments, and the like. I wanted to be able to back up multiple machines and be able to synchronize my documents, especially while I was using my laptop. Knowing what I wanted to do, and being the IT control freak I am, I chose to build out a home storage appliance. I thought I would share my build process.</p>
<p><span id="more-294"></span></p>
<p>The hardware you can use for this project is fairly straightforward. I used a hodgepodge of parts I had laying around. I used:</p>
<ul>
<li>Case: older Antec case</li>
<li>Motherboard: Mini-ITX M10000N small form-factor motherboard, nearly everything integrated</li>
<li>System Hard Disk Drive: IDE drive I had lying around, 30 GB</li>
</ul>
<p>I had the bulk of what I needed for the project, but I still needed the drives and a way to attach them to the motherboard. I ordered:</p>
<ul>
<li>2 SATA hard drives, 1TB, from <a title="NewEgg" href="http://www.newegg.com">NewEgg</a></li>
<li>SATA Host-Bus Adapter to add SATA ports to the system from <a title="Deal Extreme" href="http://www.dealextreme.com/p/silicon-image-4-port-sata-pci-expansion-card-4660">Deal Extreme</a></li>
<li>Assorted SATA data and power cables from <a title="MonoPrice" href="http://www.monoprice.com">MonoPrice</a></li>
</ul>
<p>Once all the parts arrived, I started my build. For anyone who has built a computer or replaced parts knows how simple the build really is. The motherboard is mounted into the case, along with the drives. The SATA card is placed into this motherboard’s PCI slot, and the cabling is connected. About an hour later (I removed a VERY old motherboard from this case.), I had the system built and ready for the software for the project.</p>
<p>Several distributions of free software could manage both the storage array and the services designed to present the array to the rest of the network. I chose to use a stock installation of <a href="http://www.debian.org">Debian</a> 6.0 stable, with as few packages installed as possible, to keep the bloat down. Of the specific software that I made sure to have installed was the SSH server, NFS file sharing services, and Samba file sharing services. After I installed Debian, I manually installed&nbsp;<a href="http://www.webmin.com">WebMin</a> to provide a web interface for configuring everything.</p>
<p>First business is to create the array from the SATA disks. I used the cfdisk utility at the command-line to create a single partition over the entire drive, using a partition type of DA, which is listed as a Non-FS data partition. I then repeated the procedure for the second disk. Next, I used the webmin panel to create a RAID1 array (/dev/md0) with both of the disks. After I had the array, I created a new LVM volume group to contain the data array. Creating the volume group in Webmin requires a physical volume to be added to the newly created volume group; I chose the RAID array. Finally, I created an ext4 filesystem and waited for the disks in the array to sync. The synchronization process took roughly eight hours.</p>
<p>The next day, I used webmin to create some SMB shares and NFS filesystems. These will allow my Linux machines to use&nbsp;the data as if it were local and give access to the couple of Windows-centric devices available on my network.</p>
<p>With two fairly short days, and some waiting for disk synchronizing, my file storage device is complete. I am in the process of copying my data from my unreliable desktop to the device as we speak. Among my future improvements and enhancements to the configuration will be a tweaking the mounts and setting up a dedicated space for each user, instead of&nbsp;just a single wide-open storage space. &nbsp;From the hardware side, I eventually will upgrade to a hot-swap carriage from <a title="IcyDock" href="http://www.icydock.com/goods.php?id=128">IcyDock</a>. &nbsp;I can also add up to two more hard drives to the existing card. &nbsp;As long as the drives are at least 1TB, I can expand the existing RAID1 into a RAID5. &nbsp;If the drives are larger, I will create one partition as large as the partitions on the original drives. &nbsp;I can then create a new partition for the rest of the new drives and create a new array. &nbsp;This is, to the best of my knowledge, is the way the Drobo allows for expanding storage.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/a-weekend-project/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Smoothing Off Some Rough Edges</title>
		<link>http://www.nosbig.net/smoothing-off-some-rough-edges/</link>
		<comments>http://www.nosbig.net/smoothing-off-some-rough-edges/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 05:44:00 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/?p=150</guid>
		<description><![CDATA[Lately, I have been spending some quality time again with my TC1000 from Compaq.  I purchased mine last year, along with two friends of mine.  We all have taken different approaches to making the tablets work well. I have been &#8230; <a href="http://www.nosbig.net/smoothing-off-some-rough-edges/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Lately, I have been spending some quality time again with my TC1000 from Compaq.  I purchased mine last year, along with two friends of mine.  We all have taken different approaches to making the tablets work well.</p>
<p><span id="more-150"></span></p>
<p>I have been using the tablet off and on since then, with most of the functionality available while logged in, but there have been a few rough edges.  With a tablet PC, how do I log into the tablet while it is undocked from the keyboard?  I have used a great on-screen keyboard/handwriting recognition tool called <a title="Cellwriter" href="http://risujin.org/cellwriter/">Cellwriter</a>.  It requires a little training, but the tool is very accurate after training.  There are two instances where a user needs to enter a password, when logging in and when unlocking the screensaver.</p>
<ul>
<li>Login: I use Gnome, so GDM is the login manager I prefer on this tablet.  Changing the configuration was fairly wasy.  The configuration file, in Debian, is /etc/gdm/Init/Default.  I found that a single line, added above the final &#8220;exit 0&#8243; line, was enough to add the keyboard: &#8220;cellwriter &#8211;keyboard-only &#8211;window-x 170 &#8211;window-y 568 &amp;&#8221; and restart X by logging out.</li>
</ul>
<ul>
<li>Screensaver: The screensaver was slightly more difficult, requiring two steps to configure within gconf-editor:</li>
</ul>
<blockquote>
<ol>
<li>Enable the embedded_keyboard_enabled key in /apps/gnome-screensaver.</li>
<li>Edit the embeddes_keyboard_command to include: /usr/bin/cellwriter &#8211;keyboard-only &#8211;xid</li>
</ol>
</blockquote>
<p>I could have chosen one of a number of alternative keyboards, but Cellwriter works so well and looks so clean compared to the other tools I had tried.  There are two issues that I have been dealing with with little success&#8230;</p>
<p>First, the &#8211;keyboard-only flag is in both locations to run the keyboard without regards to the written input.  I expected to need that during login, as GDM has idea who is logging on until after they have logged on and GDM is no longer needed.  However, I did try to use it normally with the screensaver login, and I could not get gnome-screensaver to accept my known-good password while using the handwriting portion of the application.  While I would like to be able to write my password, your entire password remains on the screen in the input box until you accept the input.  So, I will try to get at working sometime, but it probably better that i have to type my password, keeping it hidden from view.</p>
<p>Second, each of the applications would randomly spam one of the input buttons as I was typing on the screen.  This forces me to have to simply hit the enter key and start again.  At some point, I will have to try using the native fpit driver within Xorg.  I might already be, now that I have upgraded my system to the post-Lenny testing version of Debian (Squeeze).  I haven&#8217;t otherwise updated the system&#8217;s overall configuration in several months.</p>
<p>So, hopefully, I can start getting even more utility out of this again, without the encumberance of this keyboard.  As much as I would like to try one of the new netbooks, like the Acer Aspire Once or the HP Mini 1000, the lack of a touch screen makes those devices a less-attractive form-factor that this handy piece of gear.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/smoothing-off-some-rough-edges/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Secret Modding Project Revealed</title>
		<link>http://www.nosbig.net/secret-modding-project-revealed/</link>
		<comments>http://www.nosbig.net/secret-modding-project-revealed/#comments</comments>
		<pubDate>Thu, 26 Aug 2004 17:55:30 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=40</guid>
		<description><![CDATA[Once again, I am a little lacking on posting, but I&#8217;ve got some exciting news&#8230;. I would like to announce the arrival of the Apple2PC. My first mod, I took an old Apple IIe and swapped out the original components &#8230; <a href="http://www.nosbig.net/secret-modding-project-revealed/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Once again, I am a little lacking on posting, but I&#8217;ve got some exciting news&#8230;.</p>
<p>I would like to announce the arrival of the Apple2PC.  My first mod, I took an old Apple IIe and swapped out the original components with modern parts.  The system includes:</p>
<ul>
<li>Via M10000N Mini-ITX motherboard with 1GHz processor, onboard audio, video, and network connections, 256MB DDR RAM, 4 USB ports and 2 Firewire ports on the back, and more&#8230;</li>
<li>30 GB Maxtor hard drive</li>
<li>250 watt low profile power supply</li>
</ul>
<p>The actual construction only took me about 3 days, once I sat down and did it.  The parts had been sitting for more than a year, waiting for me to get motivated&#8230;  <img src='http://www.nosbig.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>  I plan on writing up something about the construction later.  I don&#8217;t want to make promises I can&#8217;t keep, but I want to get it done soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/secret-modding-project-revealed/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wireless Streaming Media Server</title>
		<link>http://www.nosbig.net/wireless-streaming-media-server/</link>
		<comments>http://www.nosbig.net/wireless-streaming-media-server/#comments</comments>
		<pubDate>Tue, 09 Mar 2004 02:54:21 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=71</guid>
		<description><![CDATA[Today, I am finishing up my Streaming Media Server. It will wirelessly share music streams and setting up in-house file sharing for my music.\n\nThe hardware included a Thinkpad 390E from IBM (333 MHz Pentium II, 192MB RAM, 6 GB hard &#8230; <a href="http://www.nosbig.net/wireless-streaming-media-server/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today, I am finishing up my Streaming Media Server.  It will wirelessly share music streams and setting up in-house file sharing for my music.\n\nThe hardware included a Thinkpad 390E from IBM (333 MHz Pentium II, 192MB RAM, 6 GB hard drive) and a D-Link DWL-122 USB Wireless Wi-Fi Adapter.  The software I am using is Debian 3.0 stable and the SlimDevices.com SlimServer software.<br />
<span id="more-71"></span><br />
The first step was installing Debian.  Since I was cleaning off the laptop (I got a shiny reconditioned Thinkpad T22), I set up 2 partitions.  One was 400MB for swap, and the other was root (the rest of the drive).  After I got the base install set up, I added in the development packages to allow me to compile software, including a new version of the kernel.</p>
<p>My next challenge was to get the network card working.  Keep in mind that this laptop does not have working PCMCIA sockets because it fell off the table&#8230;.  Since this had been a laptop I had been previously using, I had already found a suitable USB network adapter, the D-Link.  I first tried to install the drivers for the network card, but I could not get the provided 2.4.18 kernel source from the Debian CD&#8217;s to match the pre-compiled kernel.  Since I had to compile a kernel from scratch, anyway, I went ahead and used my USB Zip drive to copy over the 2.4.24 kernel source code.  Then, I extracted, configured, and compiled my kernel.</p>
<p>Next, I compiled and installed the drivers for the network interface, available from <a HREF="http://www.linux-wlan.org">The Linux-WLAN Project</a>.  After installation of the drivers, the log file said that the device had no driver claiming it.  So, I actually found the source code that links the product/vendor code to a driver and edited the prism2sta.c file to add the cod<br />
es in.  I recompiled the modules and reinstalled.  At this point, the interface was recognized.</p>
<p>The next step was to get the kernel to set up the network interface automatically.  On my home network, I have a DHCP server set up, but there are two commands that are needed to turn on the radio and associate with the Access Point.  To get these to be executed automatically when you plug in the card, place the following two commands in /etc/network/interfaces:<br />
 pre-up wlanctl-ng wlan0 lnxreq_ifstate ifstate=enable<br />
 pre-up wlanctl-ng wlan0 lnxreq_autojoin ssid=&#8221;<ssid>&#8221; authtype=opensystem</p>
<p>Once the network is configured, the next step is to install the streaming software.  At slimdevices.com, I downloaded the tarball, rather than the RPM.  After extracting the code, I<br />
 copied it into place and ran the software.  It defaults to using port 9000, but that can be changed in the server interface.  I changed it to port 80, for ease of access.  At the same time, I changed the directory of the music library to point to my collection, once I got it copied to the server.</p>
<p>After getting the software laid out in the right locations, I decided I wanted to add it into the init system, so I needed to have a daemon startup and shutdown script.  It turns out that the one for the sympa mailing list manager worked well for me, after some slight modifications.  After creating the script for the init.d directory, I created the appropriate symbolic links in the rcX.d directories.</p>
<p>There are some last minute details that I am still working out, such as using NFS for native Linux mounting from other machines and Samba for Windows file sharing.  The only other large project yet to conquer is a firewall.  Of course, the Shorewall package will dramatically simplify that project.</p>
<p>In a matter of a couple of days of experimentation, I have set up my old laptop to stream and share my entire music collection to any machine that is on my network, giving me the freedom to listen to my music anywhere in the house or out in the yard, when it finally warms up in Ohio.</ssid></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/wireless-streaming-media-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secret Project on Track Again</title>
		<link>http://www.nosbig.net/secret-project-on-track-again/</link>
		<comments>http://www.nosbig.net/secret-project-on-track-again/#comments</comments>
		<pubDate>Fri, 17 Oct 2003 02:20:32 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=33</guid>
		<description><![CDATA[My secret modding project was being held up by the lack of a metal part for the back of the machine. Two days ago, Bill (the gentleman making the part for me) came through. I have had some success with &#8230; <a href="http://www.nosbig.net/secret-project-on-track-again/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My secret modding project was being held up by the lack of a metal part for the back of the machine.  Two days ago, Bill (the gentleman making the part for me) came through.  I have had some success with grinding and deburring, but I will need two brackets before I can finish the project.  I can at least get started, however.</p>
<p>Once I finish with the metalworking, there have to be several holes drilled to attach the backplate to the chassis and to attach the motherboard and other components inside the box.</p>
<p>After that, I can begin assembly, as long as I don&#8217;t want to paint the rear panel.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/secret-project-on-track-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Project Coming Together</title>
		<link>http://www.nosbig.net/project-coming-together/</link>
		<comments>http://www.nosbig.net/project-coming-together/#comments</comments>
		<pubDate>Fri, 06 Jun 2003 19:38:20 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=28</guid>
		<description><![CDATA[My hardware project is beginning to come together nicely. So far, I have all of the computer components I need, while the exterior case is something I need to work on. Actually, there is a gentleman who is going to &#8230; <a href="http://www.nosbig.net/project-coming-together/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My hardware project is beginning to come together nicely.  So far, I have all of the computer components I need, while the exterior case is something I need to work on.  Actually, there is a gentleman who is going to help me out by bending the metal pieces I need for the back and the brackets to hold it all together.  The only thing I have to do is draw it up so that he knows what I need.</p>
<p>Once I get those pieces, I can assembled everything and then begin to work on the operating system/system configuration.  I am leaning towards a dual-boot configuration so that I can have full gaming support no matter which game I want to play.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/project-coming-together/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Secret Project In Early Stages</title>
		<link>http://www.nosbig.net/secret-project-in-early-stages/</link>
		<comments>http://www.nosbig.net/secret-project-in-early-stages/#comments</comments>
		<pubDate>Wed, 28 May 2003 05:34:04 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Modding]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=25</guid>
		<description><![CDATA[I have a bit of a secret project that I am working on&#8230; it ought to be rather sweet when it&#8217;s done. Today, I ordered the parts after dealing with a credit card snafu. Anyway, the parts should arrive in &#8230; <a href="http://www.nosbig.net/secret-project-in-early-stages/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have a bit of a secret project that I am working on&#8230;  it ought to be rather sweet when it&#8217;s done.  Today, I ordered the parts after dealing with a credit card snafu.  Anyway, the parts should arrive in a matter of days, and then I should be able to begin.  Of course, I plan on documenting the process and posting it here on my website.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/secret-project-in-early-stages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wifi Kicks Ass!</title>
		<link>http://www.nosbig.net/wifi-kicks-ass/</link>
		<comments>http://www.nosbig.net/wifi-kicks-ass/#comments</comments>
		<pubDate>Mon, 30 Sep 2002 16:39:16 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=56</guid>
		<description><![CDATA[Oh, I love the wireless internet stuff. I just bought a wireless card from Linksys last Thursday, and I got it set up in Linux and an using it right now to surf the 802.11b network at NC State. Once &#8230; <a href="http://www.nosbig.net/wifi-kicks-ass/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Oh, I love the wireless internet stuff.  I just bought a wireless card from Linksys last Thursday, and I got it set up in Linux and an using it right now to surf the 802.11b network at <a HREF="http://www.ncstatecollege.edu">NC State</a>.</p>
<p>Once I got the card added to /etc/pcmcia/config, it bound to the Orinoco driver, and I just pulled up an IP via DHCP.  Really slick.</p>
<p>Sitting in the lobby, I an getting about 50KB/s, downloading OpenOffice 1.0.1.  Figured it was about time to upgrade.</p>
<p>Next, I will have to update my main box to Debian 3.0  I feel confident enough now that I can get it installed without too much hassle.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/wifi-kicks-ass/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Toy to Play With</title>
		<link>http://www.nosbig.net/toy-to-play-with/</link>
		<comments>http://www.nosbig.net/toy-to-play-with/#comments</comments>
		<pubDate>Wed, 04 Sep 2002 01:56:51 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=54</guid>
		<description><![CDATA[This week, I bought a laptop. The specs are not bad for a three year old laptop. I installed Linux on it, anyway. It runs very nicely. I figured I could use it this fall during the three hour breaks &#8230; <a href="http://www.nosbig.net/toy-to-play-with/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This week, I bought a laptop.  The specs are not bad for a three year old laptop.  I installed Linux on it, anyway.  It runs very nicely.  I figured I could use it this fall during the three hour breaks between my classes on Mondays and Wednesdays.  I will come home for one of those per day, most likely.  Two trips is not bad, but three each day is really awful.  That will kill the gas <b>really</b> quickly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/toy-to-play-with/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

