<?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>schmichael&#039;s blog &#187; debian</title>
	<atom:link href="http://blog.schmichael.com/tag/debian/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.schmichael.com</link>
	<description>good good study, day day up</description>
	<lastBuildDate>Sat, 05 Nov 2011 23:13:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Release Lenny!</title>
		<link>http://blog.schmichael.com/2008/12/27/release-lenny/</link>
		<comments>http://blog.schmichael.com/2008/12/27/release-lenny/#comments</comments>
		<pubDate>Sat, 27 Dec 2008 20:47:37 +0000</pubDate>
		<dc:creator>Michael Schurter</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[debian etch]]></category>
		<category><![CDATA[debian lenny]]></category>

		<guid isPermaLink="false">http://michael.susens-schurter.com/blog/?p=474</guid>
		<description><![CDATA[An article from El Reg about MySQL ends with a great quote: This is the same lesson that Debian hasn&#8217;t yet learned from Ubuntu: fast and good-enough always beats slow and correct. Release Lenny now! Update: Yay! It appears Debian &#8230; <a href="http://blog.schmichael.com/2008/12/27/release-lenny/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>An article from <a href="http://www.theregister.co.uk/2008/12/27/mysql_slowing_down/">El Reg about MySQL</a> ends with a great quote:</p>
<blockquote><p>This is the same lesson that Debian hasn&#8217;t yet learned from Ubuntu: fast and good-enough always beats slow and correct.</p></blockquote>
<p>Release <a href="http://www.debian.org/releases/lenny/">Lenny</a> now!</p>
<p><strong>Update:</strong> Yay! It appears <a href="http://master.debian.org/~secretary/gr_lenny/results.txt">Debian has voted that binary firmware blobs in the Linux kernel are GPL compatible</a> unless explicitly proven otherwise!  AFAIK this is in line with Linus&#8217;s reasoning as well.  Regardless of the &#8220;law,&#8221; end users benefit greatly from these blobs, and this means Lenny will hopefully be released much sooner than if another option had won!</p>
<p><small>The poor thing [Lenny] is already out of date (Old version of OpenOffice.org, 2 versions old on the kernel now, a version behind with Gnome, even further behind with KDE I believe, etc.)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schmichael.com/2008/12/27/release-lenny/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fixing Gnome Notification&#8217;s Popup Location</title>
		<link>http://blog.schmichael.com/2008/12/01/fixing-gnome-notifications-popup-location/</link>
		<comments>http://blog.schmichael.com/2008/12/01/fixing-gnome-notifications-popup-location/#comments</comments>
		<pubDate>Tue, 02 Dec 2008 06:32:52 +0000</pubDate>
		<dc:creator>Michael Schurter</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://michael.susens-schurter.com/blog/?p=458</guid>
		<description><![CDATA[Gnome notifications popup in the lower left corner of your desktop by default* which constantly annoys me. I usually have a terminal open in the lower left corner, and having my work covered by notifications is quite annoying. Luckily the &#8230; <a href="http://blog.schmichael.com/2008/12/01/fixing-gnome-notifications-popup-location/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Gnome notifications popup in the lower left corner of your desktop by default* which constantly annoys me.  I usually have a terminal open in the lower left corner, and having my work covered by notifications is quite annoying.</p>
<p>Luckily the fix is easy:</p>
<ol>
<li>Open Applications > System Tools > Configuration Editor**</li>
<li>Navigate to <code>apps</code> > <code>notification-daemon</code></li>
<li>Edit the <code>popup_location</code> to be something less annoying.  I prefer <strong><code>top_right</code></strong>.</li>
<li>Close Configuration Editor.  Changes will take effect next time you login <em>or</em> just restart the notification-daemon:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">~$ <span style="color: #c20cb9; font-weight: bold;">killall</span> notification-daemon
~$ <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>notification-daemon<span style="color: #000000; font-weight: bold;">/</span>notification-daemon <span style="color: #000000; font-weight: bold;">&amp;</span></pre></div></div>

</li>
</ol>
<p>Note that the notifications will actually show up over the top of your panel which seems a bit strange.  However, I&#8217;d rather the notification covered the panel than take up any more precious application space than is necessary.</p>
<p>Luckily you can easily test notifications if you have Python and python-notify installed:</p>

<div class="wp_syntax"><div class="code"><pre class="python" style="font-family:monospace;"><span style="color: #66cc66;">&gt;&gt;&gt;</span> <span style="color: #ff7700;font-weight:bold;">import</span> pynotify
<span style="color: #66cc66;">&gt;&gt;&gt;</span> pynotify.<span style="color: black;">init</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'foo'</span><span style="color: black;">&#41;</span>
<span style="color: #008000;">True</span>
<span style="color: #66cc66;">&gt;&gt;&gt;</span> pynotify.<span style="color: black;">Notification</span><span style="color: black;">&#40;</span><span style="color: #483d8b;">'foo'</span>, <span style="color: #483d8b;">'bar'</span><span style="color: black;">&#41;</span>.<span style="color: black;">show</span><span style="color: black;">&#40;</span><span style="color: black;">&#41;</span>
<span style="color: #008000;">True</span></pre></div></div>

<p><img src="/files/notification-top_right.png" alt="Notification in the upper right."/></p>
<p>* at least on Gnome 2.22.3 on Debian Sid with notification-daemon 0.3.7-1+b1<br />
** aka <a href="http://projects.gnome.org/gconf/">gconf-editor</a> from the <a href="http://packages.debian.org/search?keywords=gconf-editor&#038;searchon=names&#038;suite=all&#038;section=all&#038;sourceid=mozilla-search">gconf-editor package</a> which should be installed with Gnome.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schmichael.com/2008/12/01/fixing-gnome-notifications-popup-location/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Fedora&#8217;s Crypto Consolidation</title>
		<link>http://blog.schmichael.com/2008/10/20/fedoras-crypto-consolidation/</link>
		<comments>http://blog.schmichael.com/2008/10/20/fedoras-crypto-consolidation/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 19:50:50 +0000</pubDate>
		<dc:creator>Michael Schurter</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[crypto]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://michael.susens-schurter.com/blog/?p=422</guid>
		<description><![CDATA[I just found out Fedora is attempting to consolidate on Mozilla&#8217;s NSS for system-wide cryptography. I love the idea and hope it succeeds as it will make using crypto so much easier for system administrators and users. Since humans are &#8230; <a href="http://blog.schmichael.com/2008/10/20/fedoras-crypto-consolidation/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just found out Fedora is attempting to consolidate on <a href="http://developer.mozilla.org/en/NSS">Mozilla&#8217;s NSS</a> for <a href="http://fedoraproject.org/wiki/FedoraCryptoConsolidation">system-wide cryptography</a>.  I love the idea and hope it succeeds as it will make using crypto so much easier for system administrators and users.</p>
<p>Since humans are the weakest link in the security chain, improving the human interaction with crypto is a much bigger security win than the latest impossible-to-crack-by-the-NSA-in-a-bajillion-years algorithm.  While switching libraries isn&#8217;t exactly a huge UI win, having a single application to manage all of your certificates, keys, passwords, etc. would be.</p>
<p>I&#8217;d love to see Debian, Ubuntu, Suse, et al, get on board as well because this is the sort of initiative that simply won&#8217;t happen upstream.  Upstream developers have already chosen a crypto library and probably like it.  The burden of tight integration is definitely the job of system engineers and packagers.</p>
<p>I submitted an Ubuntu Brainstorm Idea, so please feel free to vote on it if you&#8217;re so inclined:<br />
<a href="http://brainstorm.ubuntu.com/idea/14632/"><img src="http://brainstorm.ubuntu.com/idea/14632/image/1/" /></a></p>
<p>I would love to submit this idea to Debian as well, but I have no idea where to even start.  Probably a mailing list, but I don&#8217;t exactly have the skills to defend this proposition.  Eventually bugs would need to be filed against every package that needs to be converted to NSS, but I&#8217;m afraid doing that as just-another-end-user might just anger a bunch of maintainers&#8230;</p>
<p><strong>Update:</strong> Looks like the <a href="http://ldn.linuxfoundation.org/article/lsb-beta-reveals-new-tools-features-developers">LSB is standardizing on NSS</a> as well.</p>
<p><small>I <em>really</em> need to learn deb packaging&#8230;</small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schmichael.com/2008/10/20/fedoras-crypto-consolidation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adobe Flash in Linux</title>
		<link>http://blog.schmichael.com/2008/09/14/adobe-flash-in-linux/</link>
		<comments>http://blog.schmichael.com/2008/09/14/adobe-flash-in-linux/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 22:30:20 +0000</pubDate>
		<dc:creator>Michael Schurter</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[gnash]]></category>
		<category><![CDATA[swfdec]]></category>

		<guid isPermaLink="false">http://michael.susens-schurter.com/blog/?p=388</guid>
		<description><![CDATA[Like most people, I use Flash a lot. Not only do I watch YouTube and Hulu videos, but FusionCharts* are an integral part of one of the main projects I work on. And like most people, I just want Flash &#8230; <a href="http://blog.schmichael.com/2008/09/14/adobe-flash-in-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Like most people, I use Flash a lot.  Not only do I watch YouTube and Hulu videos, but FusionCharts* are an integral part of one of the main projects I work on.  And like most people, I just want Flash to work.  While an open source option would be nice, I really just need something that works.</p>
<p>Unfortunately <b>Flash in Linux </b><small>still</small><b> sucks.</b></p>
<p>Fortunately, <strong>not for long.</strong></p>
<p><b>Flash 9</b></p>
<p>For a long time I&#8217;ve just used the <a href="http://packages.debian.org/sid/flashplugin-nonfree">flashplugin-nonfree</a> (such an attractive package name) package to get Flash support.</p>
<p>In general this works great, unless you want to also use <a href="http://pulseaudio.org/">PulseAudio</a>.  For some reason I do, which means my audio is always out of sync.  Apparently Ubuntu has a flashplugin-nonfree-pulse (another awesome package name), but <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477266#35">Debian won&#8217;t package it because of issues with upstream, and the fact the upcoming Flash 10 works fine without any extra wrappers</a>.</p>
<p><b>Flash 10</b></p>
<p>So I finally decide to just try out the betas of <a href="http://labs.adobe.com/downloads/flashplayer10.html">Flash 10</a>.  At this point in time, Flash 10 beta 2, is the latest, so I download it and copy the <code>.so</code> file to <code>/usr/lib/mozilla/plugins/</code>.</p>
<p>Tada!  Sync&#8217;d audio!  Yay!</p>
<p>Except now my browser crashes on about 1 out of every 2 sites with Flash.  Some Flash doesn&#8217;t render completely.  Other Flash videos flicker horribly.</p>
<p>Bottom line is even Ubuntu&#8217;s notoriously unstable alpha&#8217;s are better than trying to use Flash 10 beta 2.</p>
<p><b>Update:</b>  Just tried Flash 10 RC 1, but its not better than beta 2.  Actually it might be a bit better because it crashes <i>less</i>, but its more frustrating in other ways: <i>some Flash videos don&#8217;t show up at all.</i></p>
<p><b>swfdec</b></p>
<p>One last thing to try: <a href="http://swfdec.freedesktop.org/wiki/">swfdec</a>, an open source Flash player.  I&#8217;ve followed its development closely on Planet Gnome and really respect its developer, <a href="http://blogs.gnome.org/otte/">Benjamin Otte</a>.  Unfortunately it makes Flash 10 beta 2 look good by comparison.  To be fair I used the unstable 0.7.4 version of swfdec, so maybe thats why it crashes fairly often.  0.8 was just released, but evidently not packaged for Debian yet.</p>
<p>I&#8217;ll probably keep trying swfdec from time to time in the future as I <i>want</i> to use it, but for now I just need a Flash player that works.</p>
<p><b><a href="http://www.gnu.org/software/gnash/">Gnash</a></b></p>
<p>I should try it, but the FSF can be such dicks I have a hard time even wanting to try it.  They have a stupid &#8220;Bad Vista&#8221; logo in the upper right corner of their home page.  I&#8217;m no fan of Vista, but plastering the Internet with poorly drawn negative logos isn&#8217;t going to win friends.</p>
<p>I shouldn&#8217;t let politics affect whats essentially a purely pragmatic endeavor**, so I&#8217;ll probably end up trying it out.</p>
<p><b>Conclusion</b></p>
<p>I can&#8217;t wait for Flash 10 to be released.  While I love open source, Adobe makes excellent products, and I just need Flash to work.  Its like my graphics driver:  I really don&#8217;t care about the source, just make my graphics work!</p>
<p><small>* Very pretty product.  Decent documentation.  Worthless JavaScript API and debugging features.  I hope &lt;canvas&gt; becomes a viable alternative soon.</small></p>
<p><small>** That endeavor being:  get Flash to work as well in Linux as it does in Windows.</small></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schmichael.com/2008/09/14/adobe-flash-in-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Thunderbird Import Fail</title>
		<link>http://blog.schmichael.com/2008/07/07/thunderbird-import-fail/</link>
		<comments>http://blog.schmichael.com/2008/07/07/thunderbird-import-fail/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 16:38:27 +0000</pubDate>
		<dc:creator>Michael Schurter</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[icedove]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://michael.susens-schurter.com/blog/?p=319</guid>
		<description><![CDATA[Do I really need to see this?]]></description>
			<content:encoded><![CDATA[<p>Do I really need to see this?<br />
<a href="http://michael.susens-schurter.com/files/thunderbird-import-fail.png"><img src="http://michael.susens-schurter.com/files/thunderbird-import-fail.png" alt="Thunderbird screenshot with only 1 option: Don't import anything" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schmichael.com/2008/07/07/thunderbird-import-fail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Cable Internet, 22&#8243; LCD, and WiFi!</title>
		<link>http://blog.schmichael.com/2007/12/17/new-cable-internet-22-lcd-and-wifi/</link>
		<comments>http://blog.schmichael.com/2007/12/17/new-cable-internet-22-lcd-and-wifi/#comments</comments>
		<pubDate>Tue, 18 Dec 2007 05:25:09 +0000</pubDate>
		<dc:creator>Michael Schurter</dc:creator>
				<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[atheros]]></category>
		<category><![CDATA[broadband]]></category>
		<category><![CDATA[cable]]></category>
		<category><![CDATA[comcast]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[lcd]]></category>
		<category><![CDATA[wifi]]></category>

		<guid isPermaLink="false">http://michael.susens-schurter.com/blog/2007/12/17/new-cable-internet-22-lcd-and-wifi/</guid>
		<description><![CDATA[Today was my work Christmas! I work from home most of the time, so I&#8217;m finally getting around to upgrading some of the equipment I use for my job every day. Today I got 3 new pieces of technology and &#8230; <a href="http://blog.schmichael.com/2007/12/17/new-cable-internet-22-lcd-and-wifi/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Today was my work Christmas!  I work from home most of the time, so I&#8217;m finally getting around to upgrading some of the equipment I use for my job every day.  Today I got 3 new pieces of technology and just finished setting them all up!</p>
<p><b>Goodbye ATT&#038;T!</b></p>
<p>I switched from 1.5 Mbps/386 Kbps DSL to 10 Mbps/1 Mbps cable broadband today.  I used to download packages at 140 KBps to 160 KBps, but now I easily reach over 1 MBps.  Tomorrow I get to call AT&#038;T and cancel not only my DSL but also my landline phone.</p>
<p>The only downside is starting in 2008, my local cable company, <a href="http://www.insight-com.com/">Insight</a>, is going to become <a href="http://www.comcast.com/">Comcast</a>.  It took me about 10 seconds to get a human on the line when calling Insight.  When I tried to call Comcast to find out if anything was going to change, I had to call <em>3 different phone numbers</em> until I finally reached a sales person who kept trying to sell me a package deal for broadband/tv/phone even though Comcast isn&#8217;t in my area yet!</p>
<p>Sales representatives for both companies seemed very confused that a person would only want Internet access.  My wife &#038; I watch all of our TV online or through Netflix, and we don&#8217;t need a landline phone.  Is that really so strange these days?  I suppose most people still have cable TV or satellite, but with more shows becoming available for free online I don&#8217;t see the point.</p>
<p><b>Hello 22&#8243; LCD!</b></p>
<p>I finally got a nice LCD and got rid of my $5 19&#8243; inch CRT (thanks <a href="http://blog.christopherpitzer.com/">Chris</a>, it was nice while it lasted).  Its a Hanns-G HG216D no frills monitor.  There was a similarly priced Acer monitor, by the Hanns-G is Energy Star which I like.  It looks beautiful to me, but I have to admit the built-in 1 watt speakers are a complete joke for anything error than error beeps.  Luckily they&#8217;re hidden in the back of the LCD case, so no one even has to notice them.</p>
<p>Setup in Linux was as simple as pressing Ctrl-Alt-Backspace in GDM to restart X.  It worked as soon as I plugged it in, but restarting X Windows auto-detected the resolution properly so I didn&#8217;t have to mess around in my xorg.conf file.</p>
<p>X Windows has come a very very long way in the past year or two.  My xorg.conf file is tiny, and I&#8217;m not sure why I even have it.  Last time I tried, X Windows autodetected everything just fine!</p>
<p>Oh come on&#8230; <a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16824254024">3 days later and my monitor has already dropped $20 in price.  Yeesh.</a></p>
<p><b>Working Wi-Fi in Linux?  Yes, but&#8230;</b></p>
<p>My office is upstairs, and our only cable connections are downstairs.  Instead of running unsightly cables through our house or drilling holes, I just bought a Wi-Fi card for my desktop.  Finding a card that works well with Linux was very very difficult.</p>
<p>In the end I bought a <a href="http://www.tigerdirect.com/applications/searchtools/item-Details.asp?EdpNo=3350606&#038;sku=D145-1006">TP-Link TL-WN651G</a> (Ver 1.5), but the box also lists the model as TL-WN650G.  Most importantly it works perfectly with the <a href="http://madwifi.org/">MadWiFi</a> (it uses an Atheros chipset).  Its running at 802.11g with WPA2.  The PCI card was only $25, so I didn&#8217;t even have to spend too much more for Linux compatibility.  I question the reliability of those $10-$15 adapters anyway&#8230;</p>
<p>The only caveat is caused by Debian&#8217;s insistence on freeness and hatred of binary modules.  The MadWiFi module uses a binary module, so Debian makes you download a source package and compile it using <code>module-assistant</code>.  Now m-a is a wonderful program, but this is still the reason I <em>always recommend Ubuntu to desktop users.</em>  Expecting anyone other than a Linux hacker to install some random package and run some random command line tool to get WiFi working is deranged.</p>
<p>My motto: Debian is for developers, Ubuntu is for people.</p>
<p>At any rate, I&#8217;ve had a wonderful day and am excited all my new toys play well with Linux.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.schmichael.com/2007/12/17/new-cable-internet-22-lcd-and-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

