<?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; Kernel</title>
	<atom:link href="http://www.nosbig.net/category/technology/linux/kernel/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; Kernel</title>
		<url>http://www.nosbig.net/wp-content/plugins/powerpress/rss_default.jpg</url>
		<link>http://www.nosbig.net/category/technology/linux/kernel/</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>Starting a Podcast/Netcast</title>
		<link>http://www.nosbig.net/starting-a-podcastnetcast/</link>
		<comments>http://www.nosbig.net/starting-a-podcastnetcast/#comments</comments>
		<pubDate>Sun, 01 Apr 2007 23:30:36 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/starting-a-podcastnetcast/</guid>
		<description><![CDATA[I have been wanting to start a podcast for a very long time, inspired by what Leo Laporte does with TWiT and with what my parents did educating people. So, I spent some time thinking about a focus for the &#8230; <a href="http://www.nosbig.net/starting-a-podcastnetcast/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I have been wanting to start a podcast for a very long time, inspired by what Leo Laporte does with <a href="http://twit.tv">TWiT</a> and with what my parents did educating people.  So, I spent some time thinking about a focus for the show and decided to start a podcast for people who are wishing to learn more about Linux.  The Linux Enthusiasts&#8217; Podcast recorded its first rehearsal podcast today (yes, on April Fool&#8217;s Day) to get a feel for the amount of material to need to fill 30-60 minutes.</p>
<p>For the most part, I would like to spend the time answering anyone&#8217;s Linux questions.  But I thought I would include some weekly news, and I want to include two applications per week, one graphical and one text-based.</p>
<p>To get help with any conundrums, email len@nosbig.net.  I want to hear from people before and during the podcast.  I will probably post the rehearsal after I edit it down a little.  There were a few spots where my ADD got the best of me and I repeated myself or I had to pause a moment to collect my thoughts.  I thought I had prepared sufficiently for this episode, but clearly not.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/starting-a-podcastnetcast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lingering Projects</title>
		<link>http://www.nosbig.net/lingering-projects/</link>
		<comments>http://www.nosbig.net/lingering-projects/#comments</comments>
		<pubDate>Sun, 18 Mar 2007 20:37:09 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Amateur Radio]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nosbig.net/lingering-projects/</guid>
		<description><![CDATA[Over the course of the last few months, I have come across a few projects that I have not taken the opportunity to work on, and I really should. The following projects are on my short list of things to &#8230; <a href="http://www.nosbig.net/lingering-projects/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Over the course of the last few months, I have come across a few projects that I have not taken the opportunity to work on, and I really should.  The following projects are on my short list of things to do:</p>
<ul>
<li>Obtaining and reflashing a Linksys WRT54G router, either the GL or GS.
	</li>
<li>Playing with and/or hacking a LaFonera wireless access point</li>
<li>Building my power lockout device for my ham radio</li>
<li>Building a PC for my car with wireless capability for a media center</li>
<li>Building a decent amateur radio station, including packet station</li>
<li>Building a podcast station</li>
<li>Upgrade my radio license to General Class</li>
</ul>
<p>At some point in the future, I want to do some kind of podcast.  But before I would commit to that, I need to find a topic that I can regularly update and contribute.  Part of the issue of the lack of updates is the company for which I work.  MCPR has me doing some very interesting things, but they are marketable ideas that I have to keep quiet.  The only project that I can talk about is our Asterisk dabblings.  We are offering the ability to connect analog or IP phones to the system and connect to about any outbound media out there, including SIP trunks.</p>
<p>But much beyond that, I don&#8217;t have the ability to talk about the details of what I do at work with the world at large, between protecting our clients&#8217; privacy and not wanting to give any competitors any ideas about our strategy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/lingering-projects/feed/</wfw:commentRss>
		<slash:comments>0</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>2.4.21 Released</title>
		<link>http://www.nosbig.net/2421-released/</link>
		<comments>http://www.nosbig.net/2421-released/#comments</comments>
		<pubDate>Wed, 18 Jun 2003 22:57:22 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=67</guid>
		<description><![CDATA[Just a couple of days ago, the newest release of the 2.4 Linux kernel was released, after a lengthy period since 2.4.20. While there were very few truly new features, there were a great deal of improvements to existing drivers &#8230; <a href="http://www.nosbig.net/2421-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just a couple of days ago, the newest release of the <a HREF="http://www.kernel.org">2.4 Linux kernel</a> was released, after a lengthy period since 2.4.20.  While there were very few truly new features, there were a great deal of improvements to existing drivers and subsystems&#8230;.</p>
<p>And I could continue to repeat the same sort of reporting that many Linux news organizations would give you, but I won&#8217;t&#8230;  What I will say is that I am really pleased with the driver changes for the ESS Solo1 sound chip.  The driver actually plays audio right out of the box.  There are still problems with it, however.  The playback is a bit spotty.  Every once in a while, I will get distortion and other problems.  Usually unloading and reloading the drivers helps, but I hate to have to reboot for that!  So, I went back and re-installed the <a HREF="http://www.alsa-project.org">ALSA</a> drivers.  Of course, the driver fixes in 2.4.21 could be entirely in vain, seeing as 2.6 is expected to use the ALSA drivers, anyway&#8230;.</p>
<p>Now, everything is a bit quicker; there is a bit of improved performance overall.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/2421-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Winmodem, Schwinmodem</title>
		<link>http://www.nosbig.net/winmodem-schwinmodem/</link>
		<comments>http://www.nosbig.net/winmodem-schwinmodem/#comments</comments>
		<pubDate>Wed, 12 Feb 2003 21:20:01 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=62</guid>
		<description><![CDATA[Of course, I had solved this problem once with Mandrake installed, but I was just lazy about getting the modem in this laptop working. Fortunately for me, the internal Winmodem is a Lucent Technologies chipset that just happens to have &#8230; <a href="http://www.nosbig.net/winmodem-schwinmodem/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Of course, I had solved this problem once with Mandrake installed, but I was just lazy about getting the modem in this laptop working.</p>
<p>Fortunately for me, the internal Winmodem is a Lucent Technologies chipset that just happens to have a Linux driver, available at <a HREF="http://www.physcip.uni-stuttgart.de/heby/ltmodem/">http://www.physcip.uni-stuttgart.de/heby/ltmodem/</a>  The package was simple to install, and it works quite well, although I should try to figure out why the driver told me that it is a v.92 modem, or if this is normal with a controllerless modem.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/winmodem-schwinmodem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Loot</title>
		<link>http://www.nosbig.net/new-loot/</link>
		<comments>http://www.nosbig.net/new-loot/#comments</comments>
		<pubDate>Wed, 04 Sep 2002 01:54:11 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=53</guid>
		<description><![CDATA[This week, I finally bought a laptop, an IBM Thinkpad 390e. Specs: Pentium II &#8211; 333MHz 128 MB SDRAM 6.4 GB hard drive Neomagic video chipset 14.1&#8243; LCD screen Built-in 56k modem (Winmodem ) Included Xircom 10/100 PCCard NIC All &#8230; <a href="http://www.nosbig.net/new-loot/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This week, I finally bought a laptop, an IBM Thinkpad 390e.</p>
<p>Specs:</p>
<ul>
<li>Pentium II &#8211; 333MHz</li>
<li>128 MB SDRAM</li>
<li>6.4 GB hard drive</li>
<li>Neomagic video chipset</li>
<li>14.1&#8243; LCD screen</li>
<li>Built-in 56k modem (Winmodem <img src='http://www.nosbig.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  )</li>
<li>Included Xircom 10/100 PCCard NIC</li>
</ul>
<p>All this for only $350.  I knew I would be able to install Linux on it, it was just a matter of how completely.  Once again, Mandrake comes through.  8.0 installed flawlessly except for the modem.  It even detected the modem; they just didn&#8217;t include drivers for it.  A quick download from a link from <a HREF="http://www.linmodems.org">www.linmodems.org</a> solved that problem.  The only other things I have done to it are changing the sound system from ALSA (which I despise with a passion) to OSS and to update GAIM from the 0.11pre1 version included with 8.0 to the newest version, 0.59.1.  Neither sound driver works terribly well (especially for MP3 playback, but well enough for alert sounds and audio CD&#8217;s.  Besides, this is a laptop, and I don&#8217;t want to kill the battery playing MP3&#8242;s or DVD&#8217;s (if that were available on this laptop).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/new-loot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RCHFH Network</title>
		<link>http://www.nosbig.net/rchfh-network/</link>
		<comments>http://www.nosbig.net/rchfh-network/#comments</comments>
		<pubDate>Thu, 07 Mar 2002 20:38:47 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Networking]]></category>
		<category><![CDATA[Samba]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=49</guid>
		<description><![CDATA[Things got a little interesting today as I was trying to set up the network for RCHFH. The major problem was that the two clients I was running could ping each other, but not the server. I suspected a cable &#8230; <a href="http://www.nosbig.net/rchfh-network/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Things got a little interesting today as I was trying to set up the network for RCHFH.</p>
<p>The major problem was that the two clients I was running could ping each other, but not the server.  I suspected a cable or simple configuration problem, but I tried to ping from the server to the clients, and that worked.  I knew it wasn&#8217;t the cable.</p>
<p>Next, I tried examining the IP configuration of the clients.  All looked normal.</p>
<p>Finally, it dawned on me that I had set up a firewall at one point through the Mandrake Control Cent<br />
er.  I took down the ethernet interface and flushed the chains from iptables.  That wasn&#8217;t successful, so I took eth0 down again and removed the iptables kernel modules entirely.  A quick ping later, and I was in business.</p>
<p>Now, the connectivity is restored; Samba actually logged me onto multiple machines and allowed me to connect to the server with the shares that I had set up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/rchfh-network/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>System Upgrade</title>
		<link>http://www.nosbig.net/system-upgrade/</link>
		<comments>http://www.nosbig.net/system-upgrade/#comments</comments>
		<pubDate>Tue, 22 Jan 2002 21:04:06 +0000</pubDate>
		<dc:creator>Nosbig</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Kernel]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://localhost/~nosbig/website/?p=46</guid>
		<description><![CDATA[This weekend, I upgraded to system to Mandrake 8.0 and am still recovering from a lack of sleep. The setup is good, except for a few key components. WindowMaker needs a new install, and Mozilla could use an upgrade. Gaim &#8230; <a href="http://www.nosbig.net/system-upgrade/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This weekend, I upgraded to system to Mandrake 8.0 and am still recovering from a lack of sleep.  <img src='http://www.nosbig.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />   The setup is good, except for a few key components.  WindowMaker needs a new install, and Mozilla could use an upgrade.  Gaim is already there, and I love the new kmail and knode.  Xchat is a newer version with cool features.  The only major problem is the kernel.  It is 2.4.3 with all the associated bugs.  I just have to make sure that I print the options from the Mandrake kernel 2.4.3 for framebuffer and non-fb kernels.  It supported my CD-RW and both sound cards with kernel modules out of the box with even more modules if necessary.  I still can&#8217;t get my Logitech USB mouse working properly, but I will soon.  Just a matter of modules.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosbig.net/system-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

