<?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>Matthew Lenz &#187; Linux</title>
	<atom:link href="http://www.nocturnal.org/blog/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nocturnal.org/blog</link>
	<description>Ignore the typos and spelling.  I do.</description>
	<lastBuildDate>Wed, 03 Feb 2010 00:21:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Correct way to install Firefox 3.6 on Ubuntu 9.10 Karmic Koala</title>
		<link>http://www.nocturnal.org/blog/2010/01/26/correct-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala/</link>
		<comments>http://www.nocturnal.org/blog/2010/01/26/correct-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 16:10:05 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/2010/01/26/correct-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala/</guid>
		<description><![CDATA[First close all your current firefox windows.  Then open a Terminal with Applications &#62; Accessories &#62; Terminal.  At the $ prompt enter the following:
sudo add-apt-repository ppa:mozillateam/firefox-stable
When prompted for your password enter it and enter the following commands one on each line:
sudo apt-get update
 sudo apt-get install firefox-3.6
Enjoy.
]]></description>
			<content:encoded><![CDATA[<p>First close all your current firefox windows.  Then open a Terminal with Applications &gt; Accessories &gt; Terminal.  At the $ prompt enter the following:</p>
<p><strong>sudo add-apt-repository ppa:mozillateam/firefox-stable</strong></p>
<p>When prompted for your password enter it and enter the following commands one on each line:</p>
<p><strong>sudo apt-get update</strong><br />
<strong> sudo apt-get install firefox-3.6</strong></p>
<p>Enjoy.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2010%2F01%2F26%2Fcorrect-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala%2F&amp;linkname=Correct%20way%20to%20install%20Firefox%203.6%20on%20Ubuntu%209.10%20Karmic%20Koala">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2010/01/26/correct-way-to-install-firefox-3-6-on-ubuntu-9-10-karmic-koala/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding perl packages with APT</title>
		<link>http://www.nocturnal.org/blog/2009/09/02/finding-perl-packages-with-apt/</link>
		<comments>http://www.nocturnal.org/blog/2009/09/02/finding-perl-packages-with-apt/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 16:07:12 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/2009/09/02/finding-perl-packages-with-apt/</guid>
		<description><![CDATA[If you are attempting to satisfy dependencies for perl software that was NOT available via your favourite repository (this is sometimes unavoidable in enterprise environments) you should AT LEAST attempt to satisfy those dependencies using said repository.  The easiest solution is to install &#8216;apt-file&#8217; from your repo and for any perl modules you can [...]]]></description>
			<content:encoded><![CDATA[<p>If you are attempting to satisfy dependencies for perl software that was NOT available via your favourite repository (this is sometimes unavoidable in enterprise environments) you should AT LEAST attempt to satisfy those dependencies using said repository.  The easiest solution is to install &#8216;apt-file&#8217; from your repo and for any perl modules you can simply call:</p>
<pre>apt-file search "LWP::UserAgent"</pre>
<p>This will return the following list on Debian Lenny:</p>
<pre>liblwp-useragent-determined-perl: /usr/share/man/man3/LWP::UserAgent::Determined.3pm.gz
libtest-mock-lwp-perl: /usr/share/man/man3/Test::Mock::LWP::UserAgent.3pm.gz
libwww-perl: /usr/share/man/man3/LWP::UserAgent.3pm.gz</pre>
<p>Now you know that in order to satisfy a dependency on &#8220;LWP::UserAgent&#8221; you would need to install the &#8216;libwww-perl&#8217; module from the repo.</p>
<p>If the module is not available via the repo you should next consider installing the package into a custom perl lib directory specifically for the software (and/or user account) in question.  To do this read the documentation for the <a href="http://search.cpan.org/search?query=local%3A%3Alib&amp;mode=dist">local::lib module in CPAN</a>.</p>
<p>Ultimately your goal should be to not install non-packaged software to /usr/local and by doing so increase the maintainability of your systems.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2009%2F09%2F02%2Ffinding-perl-packages-with-apt%2F&amp;linkname=Finding%20perl%20packages%20with%20APT">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2009/09/02/finding-perl-packages-with-apt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updating bios and/or firmware on Dell servers running Debian or any unsupported OS</title>
		<link>http://www.nocturnal.org/blog/2009/07/07/updating-biosfirmware-on-dell-servers-running-debian/</link>
		<comments>http://www.nocturnal.org/blog/2009/07/07/updating-biosfirmware-on-dell-servers-running-debian/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 01:06:47 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=127</guid>
		<description><![CDATA[These instructions will help you update BIOS, BMC, PERC or any other system firmware on your Dell system running any supported or unsupported OS.

I finally got around to updating our servers to Debian Lenny.  We have 1850&#8217;s and 2850&#8217;s.  After lots of trial and error I figured out how to go about updating [...]]]></description>
			<content:encoded><![CDATA[<p><strong>These instructions will help you update BIOS, BMC, PERC or any other system firmware on your Dell system running any supported or unsupported OS.<br />
</strong><br />
I finally got around to updating our servers to Debian Lenny.  We have 1850&#8217;s and 2850&#8217;s.  After lots of trial and error I figured out how to go about updating the bios and various device firmware without a Dell supported Linux environment installed on the server.  You should note that instructions below still require basic Linux experience.  Another note is that these instructions are OS agnostic and use a livecd which doesn&#8217;t care what operating system you actually have installed on the machine itself.</p>
<p>The first step is running the Dell Content Manager to create a custom update repository for your severs.  The fun part is actually getting your hands on the thing.  You will need to download the <a href="http://support.dell.com/support/downloads/download.aspx?c=us&#038;l=en&#038;s=gen&#038;releaseid=R200232&#038;SystemID=PWE_FOS_XEO_2650&#038;servicetag=J3TD01J&#038;os=WNET&#038;osl=en&#038;deviceid=17782&#038;devlib=0&#038;typecnt=0&#038;vercnt=3&#038;catid=-1&#038;impid=-1&#038;formatcnt=1&#038;libid=36&#038;fileid=279040">Dell Systems Build and Update Utility</a>.  I should note that I wasn&#8217;t able to get the download to work until I tried with a MS Windows desktop.  When/If you are prompted for a Service Tag, just enter one for one of your own servers.</p>
<p>Once the ISO is downloaded you&#8217;ll need to mount/copy or extract the &#8216;contentmanager&#8217; directory onto your desktop.  Assuming you are moving forward with the Windows desktop route you&#8217;ll want to run the &#8216;win\wincontent.exe&#8217; (there is also a &#8216;lin\lincontent.tar&#8217; if you want to try that, I didn&#8217;t).  Now go find the new directory that was created.  Edit the content.ini and change the &#8216;ftp://&#8217; url to &#8216;http://&#8217;.  After you save that, run the &#8216;contentmanager.exe&#8217;.  Select &#8216;Create Custom Server Update Utility&#8217; and &#8216;Next.&#8217;  Click &#8216;Browse&#8217; and select a directory to dump this repository and click &#8216;Next.&#8217;  Wait for the program to download some meta-data and then un-check &#8216;Windows&#8217; (leaving &#8216;Linux&#8217; checked).  Now control-click all the server models you need to upgrade and click &#8216;Next.&#8217;  Go get a soda and let it download everything.  Once you&#8217;ve got your &#8216;CustomRepository&#8217; go into the &#8216;repository/sysman&#8217; directory and edit the .XML files in that directory with your favorite editor and look for the &#8216;path=&#8217; attribute(s) (one for each system type).  You&#8217;ll see something like &#8216;path=&#8221;sysman\&#8230;&#8221;&#8216; change the slash to a &#8216;/&#8217; so it&#8217;ll look like &#8216;path=&#8221;sysman/&#8230;&#8221;.  Save your changes and copy the contents (not the directory itself) of the &#8216;CustomRepository&#8217; to the root of a FAT32 formatted usbkey.</p>
<p>Now you need to download the <a href="http://linux.dell.com/files/openmanage-contributions/omsa-55-live/omsa-55-022109.iso">OpenManage Server Administrator</a>.  Burn it to a CD and then boot it in one of the servers you want to upgrade.  Let it boot up all the way (this can take several minutes while network connectivity times out etc. and you answer a couple questions) and once you login as root you need to insert the usbkey.  Mount it (you can check &#8216;dmesg&#8217; output for the device and it&#8217;ll be the first partition on there) with something like &#8216;mkdir /media/disk; mount /dev/sdb1 /media/disk -o ro&#8217;.  Change directory into &#8216;/media/disk&#8217; and run the following &#8216;./suu -u&#8217;.  Wait for it to analyze your system and update your system to the newest bios and firmwares.  You&#8217;ll probably see some notifications from snmpd and other stuff, they can be ignored.  After you&#8217;ve completed all the updates type &#8216;reboot&#8217;.  Do not power down your system, some of the updates need the system to be rebooted to complete (such as BIOS updates).</p>
<p>You should now have up-to-date hardware bios/firmwares for your server.  I should point out that under the Drivers section for your Service Tag on Dell&#8217;s site you might also see something about &#8216;SCSI Drives&#8217; firmware update.  If you are using SCSI drives in your system you might want to get these out of the way as well.  There is a Windows .exe you can download which will create a floppy or ISO image which you can boot in your server to update the drive firmware.</p>
<p>I hope this helps out, this was the simplest solution I could find given my environment (no DVD drives, no network connectivity, and the livecd not supporting X on the 1850&#8217;s).   Good luck! <img src='http://www.nocturnal.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2009%2F07%2F07%2Fupdating-biosfirmware-on-dell-servers-running-debian%2F&amp;linkname=Updating%20bios%20and%2For%20firmware%20on%20Dell%20servers%20running%20Debian%20or%20any%20unsupported%20OS">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2009/07/07/updating-biosfirmware-on-dell-servers-running-debian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core one last time</title>
		<link>http://www.nocturnal.org/blog/2005/10/04/fedora-core-one-last-time/</link>
		<comments>http://www.nocturnal.org/blog/2005/10/04/fedora-core-one-last-time/#comments</comments>
		<pubDate>Tue, 04 Oct 2005 01:21:24 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=26</guid>
		<description><![CDATA[This is my last post about this disaster of a linux distribution.

 Install      2 Package(s)
 Update      39 Package(s)
 Remove       0 Package(s)
 Total download size: 92 M

]]></description>
			<content:encoded><![CDATA[<p>This is my last post about this disaster of a linux distribution.</p>
<ul>
<li> Install      2 Package(s)</li>
<li> Update      39 Package(s)</li>
<li> Remove       0 Package(s)</li>
<li> Total download size: 92 M</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F10%2F04%2Ffedora-core-one-last-time%2F&amp;linkname=Fedora%20Core%20one%20last%20time">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/10/04/fedora-core-one-last-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core (2.5 weeks later) again</title>
		<link>http://www.nocturnal.org/blog/2005/09/17/fedora-core-25-weeks-later-again/</link>
		<comments>http://www.nocturnal.org/blog/2005/09/17/fedora-core-25-weeks-later-again/#comments</comments>
		<pubDate>Sat, 17 Sep 2005 04:13:12 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=31</guid>
		<description><![CDATA[I thought I should keep this joke running because that&#8217;s what it is really; a complete  joke.  Why do they even bother having releases?  I had to double check to make sure I wasn&#8217;t tracking rawhide.  Just because its F/OSS doesn&#8217;t mean it has to suck guys.

 Install     [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I should keep this joke running because that&#8217;s what it is really; a complete  joke.  Why do they even bother having releases?  I had to double check to make sure I wasn&#8217;t tracking rawhide.  Just because its F/OSS doesn&#8217;t mean it has to suck guys.</p>
<ul>
<li> Install      1 Package(s)</li>
<li> Update      60 Package(s)</li>
<li> Remove       0 Package(s)</li>
<li> Total download size: 88 M</li>
</ul>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F09%2F17%2Ffedora-core-25-weeks-later-again%2F&amp;linkname=Fedora%20Core%20%282.5%20weeks%20later%29%20again">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/09/17/fedora-core-25-weeks-later-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core (2.5 weeks later)</title>
		<link>http://www.nocturnal.org/blog/2005/08/30/fedora-core-25-weeks-later/</link>
		<comments>http://www.nocturnal.org/blog/2005/08/30/fedora-core-25-weeks-later/#comments</comments>
		<pubDate>Tue, 30 Aug 2005 00:57:40 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=25</guid>
		<description><![CDATA[Time for another FC4 update a couple weeks later.

 Install      3 Package(s)
 Update      38 Package(s)
 Remove       0 Package(s)
 Total download size: 151 M

Here piggy piggy piggy.  Come on piggy!
]]></description>
			<content:encoded><![CDATA[<p>Time for another FC4 update a couple weeks later.</p>
<ul>
<li> Install      3 Package(s)</li>
<li> Update      38 Package(s)</li>
<li> Remove       0 Package(s)</li>
<li> Total download size: 151 M</li>
</ul>
<p>Here piggy piggy piggy.  Come on piggy!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F08%2F30%2Ffedora-core-25-weeks-later%2F&amp;linkname=Fedora%20Core%20%282.5%20weeks%20later%29">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/08/30/fedora-core-25-weeks-later/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core</title>
		<link>http://www.nocturnal.org/blog/2005/08/11/fedora-core/</link>
		<comments>http://www.nocturnal.org/blog/2005/08/11/fedora-core/#comments</comments>
		<pubDate>Thu, 11 Aug 2005 21:01:05 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=24</guid>
		<description><![CDATA[I decided to run an update on my FC4 box today after about 3 weeks of being away from my desk.

 Install      2 Package(s)
 Update      85 Package(s)
 Remove       0 Package(s)
 Total download size: 226 M

Anyone who uses this OS [...]]]></description>
			<content:encoded><![CDATA[<p>I decided to run an update on my FC4 box today after about 3 weeks of being away from my desk.</p>
<ul>
<li> Install      2 Package(s)</li>
<li> Update      85 Package(s)</li>
<li> Remove       0 Package(s)</li>
<li> Total download size: 226 M</li>
</ul>
<p>Anyone who uses this OS and doesn&#8217;t feel like a complete guinea pig please raise your hand. <img src='http://www.nocturnal.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F08%2F11%2Ffedora-core%2F&amp;linkname=Fedora%20Core">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/08/11/fedora-core/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core 3 (Ok, so maybe not)</title>
		<link>http://www.nocturnal.org/blog/2005/05/05/ok-so-maybe-not/</link>
		<comments>http://www.nocturnal.org/blog/2005/05/05/ok-so-maybe-not/#comments</comments>
		<pubDate>Thu, 05 May 2005 07:37:26 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=29</guid>
		<description><![CDATA[I went back to FC3 at work.  FC4T2 is showing a bit more promise as well.  I liked Ubuntu but its very young, and has almost no configuration tools.  They use gnome system tools for most stuff, which at best are flaky.  Oh well, it was worth a try   [...]]]></description>
			<content:encoded><![CDATA[<p>I went back to FC3 at work.  FC4T2 is showing a bit more promise as well.  I liked Ubuntu but its very young, and has almost no configuration tools.  They use gnome system tools for most stuff, which at best are flaky.  Oh well, it was worth a try <img src='http://www.nocturnal.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   I still stand by the Debian on the server though.  9000 packages are hard to ignore.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F05%2F05%2Fok-so-maybe-not%2F&amp;linkname=Fedora%20Core%203%20%28Ok%2C%20so%20maybe%20not%29">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/05/05/ok-so-maybe-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fedora Core 4 Test 1</title>
		<link>http://www.nocturnal.org/blog/2005/03/18/fedora-core-4-test-1/</link>
		<comments>http://www.nocturnal.org/blog/2005/03/18/fedora-core-4-test-1/#comments</comments>
		<pubDate>Fri, 18 Mar 2005 03:06:11 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=27</guid>
		<description><![CDATA[Well, I think they&#8217;ve done it.  FC4T1 is officially the most unstable and most broken test/beta/alpha software I&#8217;ve had the pleasure to install.  To make matters worse the development repo is usually out of sync which means you cant do a dist upgrade because of unfilled dependancies.  I&#8217;ve been a big Redhat [...]]]></description>
			<content:encoded><![CDATA[<p>Well, I think they&#8217;ve done it.  FC4T1 is officially the most unstable and most broken test/beta/alpha software I&#8217;ve had the pleasure to install.  To make matters worse the development repo is usually out of sync which means you cant do a dist upgrade because of unfilled dependancies.  I&#8217;ve been a big Redhat advocate since the RH3 days. I&#8217;m pretty much all but convinced that <a href="http://www.debian.org/" target="_blank">Debian</a> on the server and <a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a> on the desktop might be the ultimate combo.  The only thing really missing from a major linux distro is some kind of binary diff so updating a system can happen as quickly as possible.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2005%2F03%2F18%2Ffedora-core-4-test-1%2F&amp;linkname=Fedora%20Core%204%20Test%201">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2005/03/18/fedora-core-4-test-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well I finally did it</title>
		<link>http://www.nocturnal.org/blog/2004/09/27/well-i-finally-did-it/</link>
		<comments>http://www.nocturnal.org/blog/2004/09/27/well-i-finally-did-it/#comments</comments>
		<pubDate>Mon, 27 Sep 2004 20:18:56 +0000</pubDate>
		<dc:creator>Matthew</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.nocturnal.org/blog/?p=30</guid>
		<description><![CDATA[My IBM A21p came with a 3com 3c556b mini-pci combo card.  Its never worked all that great with linux.  Not that I&#8217;ve ever used it all that much, the 3com modem is completely unsupported by linux (way to go 3com, I love you).  I was able to accept that because god forbid [...]]]></description>
			<content:encoded><![CDATA[<p>My IBM A21p came with a 3com 3c556b mini-pci combo card.  Its never worked all that great with linux.  Not that I&#8217;ve ever used it all that much, the 3com modem is completely unsupported by linux (way to go 3com, I love you).  I was able to accept that because god forbid I&#8217;m not always on broadband <img src='http://www.nocturnal.org/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  The ethernet card on the other hand worked.  The kicker was that I always had to disable acpi with acpi=off on all my linux installs for recent 2.4 and the entire 2.6 release since the test versions.  NOW, the most recent versions of the linux kernel break REGARDLESS of the acpi parameter.</p>
<p>I did some poking around and found out that you can easily replace these pci cards and I knew that some versions of my laptop (A21p 2629, mine is the HWU version) came with an intel ethernet/lucent modem combo that works great with linux.  Sure enough, according to ibm&#8217;s website there are a few different cards that are field replaceable in the A21p line (and many other lines for that matter).  Over to ebay and in 10 minutes I&#8217;ve got a used 06P3809 (ibm part number) mini-pci combo card ordered and it only set me back about $20 bucks shipped.</p>
<p>Installed it today and suprise suprise, it works flawlessly.  I haven&#8217;t tried out the modem, but all reports seem to indicate that it works fine.  I guess none of this changes the fact that this broke completely between a STABLE release of linux.  Oh well, sucks to be me.  Atleast now I don&#8217;t have to dick with the acpi=off thing.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fwww.nocturnal.org%2Fblog%2F2004%2F09%2F27%2Fwell-i-finally-did-it%2F&amp;linkname=Well%20I%20finally%20did%20it">Share/Save</a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.nocturnal.org/blog/2004/09/27/well-i-finally-did-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
