<?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>Mike Gerwitz &#187; Ubuntu</title>
	<atom:link href="http://mikegerwitz.com/tags/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://mikegerwitz.com</link>
	<description>Free Software Hacker</description>
	<lastBuildDate>Wed, 04 Jan 2012 23:15:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Grub 2 Hangs on Boot</title>
		<link>http://mikegerwitz.com/2009/11/01/grub-2-hangs-on-boot/</link>
		<comments>http://mikegerwitz.com/2009/11/01/grub-2-hangs-on-boot/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 00:10:36 +0000</pubDate>
		<dc:creator>Mike Gerwitz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[grub]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mikegerwitz.com/2009/11/01/grub-2-hangs-on-boot/</guid>
		<description><![CDATA[When BETA testing Ubuntu Karmic (9.10), I noticed that the whole boot process wasn&#8217;t so fast. This was primarily due to Grub 2 hanging for nearly 35 seconds each boot.
I haven&#8217;t the time to figure out what Grub is trying to do in that amount of time, but I did notice a solution. I have [...]]]></description>
			<content:encoded><![CDATA[<p>When BETA testing Ubuntu Karmic (9.10), I noticed that the whole boot process wasn&#8217;t so fast. This was primarily due to Grub 2 hanging for nearly 35 seconds each boot.</p>
<p>I haven&#8217;t the time to figure out what Grub is trying to do in that amount of time, but I did notice a solution. I have three HDDs. In the BIOS, it was set as the third boot device. By moving it to the top, Grub quickly moved along to boot Ubuntu.</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fmikegerwitz.com%2F2009%2F11%2F01%2Fgrub-2-hangs-on-boot%2F&amp;linkname=Grub%202%20Hangs%20on%20Boot">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://mikegerwitz.com/2009/11/01/grub-2-hangs-on-boot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gnome-screensaver: What happens when you can&#8217;t unlock your PC.</title>
		<link>http://mikegerwitz.com/2009/10/01/gnome-screensaver-what-happens-when-you-cant-unlock-your-pc/</link>
		<comments>http://mikegerwitz.com/2009/10/01/gnome-screensaver-what-happens-when-you-cant-unlock-your-pc/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 03:38:51 +0000</pubDate>
		<dc:creator>Mike Gerwitz</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[GNOME]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mikegerwitz.com/2009/10/01/gnome-screensaver-what-happens-when-you-cant-unlock-your-pc/</guid>
		<description><![CDATA[This is an issue that has irritated me enough that I feel I should post my work-around. On Ubuntu (I&#8217;m not sure since what version &#8211; I&#8217;m currently using 9.04 Jaunty), I&#8217;ve noticed that every once in a while, gnome-screensaver would hang when I tried to log back in. Let me clarify a little. When [...]]]></description>
			<content:encoded><![CDATA[<p>This is an issue that has irritated me enough that I feel I should post my work-around. On Ubuntu (I&#8217;m not sure since what version &#8211; I&#8217;m currently using 9.04 Jaunty), I&#8217;ve noticed that every once in a while, gnome-screensaver would hang when I tried to log back in. Let me clarify a little. When you lock your computer, it fades out, that&#8217;s gnome-screensaver (assuming you&#8217;re using GNOME of course). When you move your mouse or hit a key and you are prompted for your password, that&#8217;s gnome-screensaver as well.</p>
<p>The problem is, there are times (however few) that I&#8217;d enter my password, and it&#8217;d just sit there. Everything would be disabled and it&#8217;d act like it was simply pausing due to an incorrect password.</p>
<p>But it&#8217;d never unlock.</p>
<p>As long as you know what the application is that&#8217;s running, you can kill it. Going off of a hunch, I hit <tt>Ctrl+Alt+F1</tt> to go to TTY1. I logged in under the same user, then typed the following command:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p118code2'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1182"><td class="line_numbers"><pre>1
</pre></td><td class="code" id="p118code2"><pre class="bash" style="font-family:monospace;">  <span style="color: #c20cb9; font-weight: bold;">killall</span> gnome-screensaver</pre></td></tr></table></div>

<p>This successfully gets rid of the login screen. Simply hit <tt>Ctrl+Alt+F8</tt> (or whatever TTY your X session was running on), and tada!</p>
<p>Of course, you&#8217;ll have to run gnome-screen saver again or you won&#8217;t be able to lock your computer. Hit Alt+F2 and type &#8220;gnome-screensaver&#8221; to have it run in the background as it was before. It may also be a good idea to go back to TTY1 and log out, since you never want to leave a terminal wide open unprotected.</p>
<p>If you&#8217;re worried that someone might use this to bypass your login, don&#8217;t worry. They&#8217;d have to either log in as you in order to kill gnome-screensaver on your session, or they&#8217;d have to log in as root. And if they&#8217;re root, you have nowhere to hide anyway.</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fmikegerwitz.com%2F2009%2F10%2F01%2Fgnome-screensaver-what-happens-when-you-cant-unlock-your-pc%2F&amp;linkname=gnome-screensaver%3A%20What%20happens%20when%20you%20can%26%238217%3Bt%20unlock%20your%20PC.">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://mikegerwitz.com/2009/10/01/gnome-screensaver-what-happens-when-you-cant-unlock-your-pc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RaLink Random Wireless Disconnects &#8211; Simple Solution</title>
		<link>http://mikegerwitz.com/2008/11/20/ralink-random-wireless-disconnects-simple-solution/</link>
		<comments>http://mikegerwitz.com/2008/11/20/ralink-random-wireless-disconnects-simple-solution/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 00:47:43 +0000</pubDate>
		<dc:creator>Mike Gerwitz</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[NetworkManager]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mikegerwitz.com/2008/11/20/ralink-random-wireless-disconnects-simple-solution/</guid>
		<description><![CDATA[In previous entries I discussed problems with random wireless disconnects. The problem seems to be that the router was going down briefly, causing the interface to time out, but not reconnect. Therefore, I was stuck with a lingering connection that was technically &#8220;up&#8221;, but inoperable.
I had disabled NetworkManager because Ubuntu (Intrepid Ibex) was still in [...]]]></description>
			<content:encoded><![CDATA[<p>In previous entries I discussed problems with random wireless disconnects. The problem seems to be that the router was going down briefly, causing the interface to time out, but not reconnect. Therefore, I was stuck with a lingering connection that was technically &#8220;up&#8221;, but inoperable.</p>
<p>I had disabled NetworkManager because Ubuntu (Intrepid Ibex) was still in its RC stages, and NetworkManager was buggy (to put it lightly). Therefore, nothing restarted the interface when it went down &#8211; I had to do so manually using /etc/init.d/networking restart. However, I&#8217;m happy to say that with NetworkManager, I have not needed to restart the interface:</p>
<pre>[101664.145191] wlan0: No ProbeResp from current AP 00:15:e9:76:1a:ee - assume out of range
[101665.013111] wlan0: authenticate with AP 00:15:e9:76:1a:ee
</pre>
<p>The above is output from <tt>dmesg | tail</tt>, showing that as soon as the error message is received, the interface begins to reauthenticate. So, for all of you that do not use NetworkManager, consider it once again. It saves me a lot of frustration.</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fmikegerwitz.com%2F2008%2F11%2F20%2Fralink-random-wireless-disconnects-simple-solution%2F&amp;linkname=RaLink%20Random%20Wireless%20Disconnects%20%26%238211%3B%20Simple%20Solution">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://mikegerwitz.com/2008/11/20/ralink-random-wireless-disconnects-simple-solution/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RaLink Wireless &#8211; Random Disconnects (No ProbeResp)</title>
		<link>http://mikegerwitz.com/2008/10/15/ralink-wireless-random-disconnects-no-proberesp/</link>
		<comments>http://mikegerwitz.com/2008/10/15/ralink-wireless-random-disconnects-no-proberesp/#comments</comments>
		<pubDate>Wed, 15 Oct 2008 10:32:25 +0000</pubDate>
		<dc:creator>Mike Gerwitz</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mikegerwitz.com/2008/10/15/ralink-wireless-random-disconnects-no-proberesp/</guid>
		<description><![CDATA[Some time ago, while using Gentoo, I modified the kernel to stop a wireless problem I had been having and forgot to make a post about it. Now, I&#8217;ve switched by to Ubuntu (didn&#8217;t have time to administer Gentoo and compile everything, and I missed Ubuntu). Luckily, version 8.10 BETA was released just a few [...]]]></description>
			<content:encoded><![CDATA[<p>Some time ago, while using Gentoo, I modified the kernel to stop a wireless problem I had been having and forgot to make a post about it. Now, I&#8217;ve switched by to Ubuntu (didn&#8217;t have time to administer Gentoo and compile everything, and I missed Ubuntu). Luckily, version 8.10 BETA was released just a few days earlier and I was able to upgrade, getting the 2.6.27 kernel (required so my computer wouldn&#8217;t randomly shut down (other computers may freeze instead) due to the drivers, while the net was in use).</p>
<p>For settings up RaLink drivers for your wireless device, please see a previous entry: <a href="http://www.mikegerwitz.com/2008/08/30/rt61-rt2x00-ralink-linux-driver-installation/">RT61 / RT2×00 RaLink Linux Driver Installation</a></p>
<p>In many previous kernel versions, including 2.6.27, my wireless would randomly go down. I checked <tt>dmesg | tail</tt> and found that I received the following error:</p>
<pre>
[41884.647257] wlan0: authenticate with AP 00:15:e9:76:1a:ee
[41884.658208] wlan0: authenticated
[41884.658208] wlan0: associate with AP 00:15:e9:76:1a:ee
[41884.668257] wlan0: RX ReassocResp from 00:15:e9:76:1a:ee (capab=0x431 status=0 aid=5)
[41884.668257] wlan0: associated
[41892.844239] wlan0: no IPv6 routers present
[68822.729255] wlan0: No ProbeResp from current AP 00:15:e9:76:1a:ee - assume out of range
</pre>
<p>For more information, please see my posts in the following bug report:<br />
<a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/200500">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/200500</a><br />
<a href="https://bugs.launchpad.net/ubuntu/+source/linux/+bug/200500/comments/35">https://bugs.launchpad.net/ubuntu/+source/linux/+bug/200500/comments/35</a></p>
<p>Within the bug report, a link was referenced to modify the kernel, increasing the amount of time to wait for a response, so it doesn&#8217;t assume it&#8217;s out of range and disconnect. The problem is &#8211; the file to edit didn&#8217;t exist anymore in 2.6.27:</p>
<p><a href="http://rt2x00.serialmonkey.com/phpBB/viewtopic.php?f=5&amp;t=2081&amp;p=30312&amp;hilit=No+ProbeResp+from+current+AP#p30312" rel="nofollow">http://<wbr></wbr>rt2&#215;00.<wbr></wbr>serialmonkey.<wbr></wbr>com/phpBB/<wbr></wbr>viewtopic.<wbr></wbr>php?f=5&amp;<wbr></wbr>t=2081&amp;<wbr></wbr>p=30312&amp;<wbr></wbr>hilit=No+<wbr></wbr>ProbeResp+<wbr></wbr>from+current+<wbr></wbr>AP#p30312</a></p>
<p>First, you must obtain your kernel source. In gentoo, emerge the vanilla or gentoo sources. In Ubuntu, run the following commands (taken and modified from https://help.ubuntu.com/community/Kernel/Compile):</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p40code9'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p409"><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code" id="p40code9"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">su</span>
<span style="color: #666666; font-style: italic;"># (Enter root password - if it's not set, run &quot;sudo su&quot; instead)</span>
$ <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> linux-source
$ <span style="color: #7a0874; font-weight: bold;">cd</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src
$ <span style="color: #c20cb9; font-weight: bold;">tar</span> xjvf <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>src<span style="color: #000000; font-weight: bold;">/</span>linux-source-<span style="color: #000000; font-weight: bold;">*</span>.tar.bz2
$ <span style="color: #7a0874; font-weight: bold;">cd</span> linux-source-<span style="color: #000000; font-weight: bold;">*</span>
$ <span style="color: #c20cb9; font-weight: bold;">vi</span> .<span style="color: #000000; font-weight: bold;">/</span>net<span style="color: #000000; font-weight: bold;">/</span>mac80211<span style="color: #000000; font-weight: bold;">/</span>mlme.c <span style="color: #666666; font-style: italic;">#or use your favorite text editor</span></pre></td></tr></table></div>

<p>In the file <tt>mlme.c</tt>, find the following line:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p40code10'); return false;">View Code</a> C</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4010"><td class="code" id="p40code10"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#define IEEE80211_MONITORING_INTERVAL (2 * HZ)</span></pre></td></tr></table></div>

<p>Modify it so it looks like this (we&#8217;re changing the &#8220;2&#8243; to &#8220;100&#8243;):</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p40code11'); return false;">View Code</a> C</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4011"><td class="code" id="p40code11"><pre class="c" style="font-family:monospace;"><span style="color: #339933;">#define IEEE80211_MONITORING_INTERVAL (100 * HZ)</span></pre></td></tr></table></div>

<p>Save and close the file. Let&#8217;s get to building it. With Gentoo, you would simply run &#8220;make &amp;&amp; make modules_install&#8221;, navigate to &#8220;arch/your_arch/boot&#8221;, find the image, and copy it to /boot. Then modify GRUB/Lilo accordingly. Since Gentoo users probably know what they&#8217;re doing, I&#8217;ll focus on Ubuntu, which I recently figured out how to do via the above wiki. Ubuntu does it oddly.</p>
<p>Using the commands in the wiki, I had some trouble. It was trying to build using the &#8220;xen&#8221; archeticture &#8211; definatly not what I have. I wanted amd64 (which is x86_64 in the eyes of the kernel). So, I added the &#8211;arch option to the below commands. Be sure to specify YOUR architecture (such as i386). Also note the &#8211;apend-to-version line. This will append text to the kernel version (which&#8217;ll show up in <tt>uname -r</tt>). Remove it if you don&#8217;t want anything. If you do, modify the text in the command.</p>
<p><strong>Multi-core/multiple processors: </strong>If you have multiple processors or cores (such as dual-core), type the following command before continuing, replacing the number with <tt>1 + number of processors/cores</tt>. This will increase the compiling speed (trust me, you want that) by utilizing all available processors/cores. If you&#8217;re busy doing something else, you may wish not to set it, so your computer doesn&#8217;t slow down too much.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p40code12'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4012"><td class="line_numbers"><pre>1
2
</pre></td><td class="code" id="p40code12"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;"># Do this only if you have multiple processors (see above paragraph)</span>
$ <span style="color: #7a0874; font-weight: bold;">export</span> <span style="color: #007800;">CONCURRENCY_LEVEL</span>=<span style="color: #000000;">3</span></pre></td></tr></table></div>


<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p40code13'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4013"><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code" id="p40code13"><pre class="bash" style="font-family:monospace;">$ <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #660033;">-vi</span> <span style="color: #000000; font-weight: bold;">/</span>boot<span style="color: #000000; font-weight: bold;">/</span>config-<span style="color: #000000; font-weight: bold;">`</span><span style="color: #c20cb9; font-weight: bold;">uname</span> -r<span style="color: #000000; font-weight: bold;">`</span> .config <span style="color: #666666; font-style: italic;">#copy current configuration to use when building kernel</span>
$ make-kpkg <span style="color: #660033;">--arch</span>=amd64 clean
$ fakeroot make-kpkg <span style="color: #660033;">--arch</span>=amd64 <span style="color: #660033;">--initrd</span> <span style="color: #660033;">--append-to-version</span>=-some-string-here kernel-image kernel-headers</pre></td></tr></table></div>

<p>Go grab something to eat, watch TV, throw pebbles at young children &#8211; something to pass the time. It&#8217;ll take a while.</p>
<p>After it is complete, in Ubuntu, this will have created *.deb files and placed them in the parent directory (in this case, /usr/src). Let&#8217;s install them!</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p40code14'); return false;">View Code</a> BASH</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p4014"><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code" id="p40code14"><pre class="bash" style="font-family:monospace;">$ <span style="color: #7a0874; font-weight: bold;">echo</span> vesafb <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #660033;">-a</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>initramfs-tools<span style="color: #000000; font-weight: bold;">/</span>modules
$ <span style="color: #7a0874; font-weight: bold;">echo</span> fbcon <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">tee</span> <span style="color: #660033;">-a</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>initramfs-tools<span style="color: #000000; font-weight: bold;">/</span>modules
$ <span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-i</span> linux-<span style="color: #000000; font-weight: bold;">*</span>.deb</pre></td></tr></table></div>

<p>After that, check out the following link for building the restricted modules:<br />
<a href="https://help.ubuntu.com/community/CustomRestrictedModule">https://help.ubuntu.com/community/CustomRestrictedModules</a></p>
<p>Then, of course, modify GRUB to boot the new image. Good luck!</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fmikegerwitz.com%2F2008%2F10%2F15%2Fralink-wireless-random-disconnects-no-proberesp%2F&amp;linkname=RaLink%20Wireless%20%26%238211%3B%20Random%20Disconnects%20%28No%20ProbeResp%29">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://mikegerwitz.com/2008/10/15/ralink-wireless-random-disconnects-no-proberesp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.04 &#8220;Hardy Heron&#8221; Broadcom Wireless</title>
		<link>http://mikegerwitz.com/2008/05/15/ubuntu-804-hardy-heron-broadcom-wireless/</link>
		<comments>http://mikegerwitz.com/2008/05/15/ubuntu-804-hardy-heron-broadcom-wireless/#comments</comments>
		<pubDate>Thu, 15 May 2008 08:21:57 +0000</pubDate>
		<dc:creator>Mike Gerwitz</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.mikegerwitz.com/2008/05/15/ubuntu-804-hardy-heron-broadcom-wireless/</guid>
		<description><![CDATA[Ubuntu 8.04 LTS was recently released. So I upgraded a couple of my computers (that I&#8217;m far too lazy and have no time to maintain Gentoo on) to this new release to find that my wireless PCMCIA card did not work on my laptop. Okay &#8211; that&#8217;s fine. I&#8217;ve had this problem since I began [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.ubuntu.com/">Ubuntu 8.04 LTS</a> was recently released. So I upgraded a couple of my computers (that I&#8217;m far too lazy and have no time to maintain <a href="http://www.gentoo.org/">Gentoo</a> on) to this new release to find that my wireless PCMCIA card did not work on my laptop. Okay &#8211; that&#8217;s fine. I&#8217;ve had this problem since I began using Linux years ago. However, unlike the previous release, Hardy Heron didn&#8217;t seem to list the driver for it in the restricted drivers. Granted, you need an internet connection to download the drivers either way, it would have been nice for it to say &#8220;Hey, we&#8217;ve got you covered!&#8221; So I was worried that it was for some reason removed from this release.</p>
<p>So, for those of you who have this problem &#8211; start by plugging it into a wired connection and updating your repositories (<tt>sudo apt-get update</tt>). Then in System -> Administration -> Hardware Drivers, the driver for your wireless device should be listed. Simply install it and restart and you should be good to go.</p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Fmikegerwitz.com%2F2008%2F05%2F15%2Fubuntu-804-hardy-heron-broadcom-wireless%2F&amp;linkname=Ubuntu%208.04%20%26%238220%3BHardy%20Heron%26%238221%3B%20Broadcom%20Wireless">Share/Bookmark</a>]]></content:encoded>
			<wfw:commentRss>http://mikegerwitz.com/2008/05/15/ubuntu-804-hardy-heron-broadcom-wireless/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
