<?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>No Open Blockers &#187; Linux</title>
	<atom:link href="http://noopenblockers.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://noopenblockers.com</link>
	<description></description>
	<lastBuildDate>Fri, 06 Jan 2012 21:11:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Summit 2010 Lab</title>
		<link>http://noopenblockers.com/2010/06/04/summit-2010-lab/</link>
		<comments>http://noopenblockers.com/2010/06/04/summit-2010-lab/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 13:19:56 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=966</guid>
		<description><![CDATA[Only just over 2 weeks left until Red Hat Summit 2010. Be sure to check out my lab on Wednesday afternoon: Cloud Computing with Red Hat Enterprise Linux on Amazon EC2 Cloud computing is fast becoming a core component of both Web and enterprise IT infrastructure architectures. With Red Hat Enterprise Linux on Amazon EC2, [...]]]></description>
			<content:encoded><![CDATA[<p>Only just over 2 weeks left until Red Hat Summit 2010. Be sure to check out my <a href="http://www.redhat.com/promo/summit/2010/sessions/labs.html" target="new">lab</a> on Wednesday afternoon:</p>
<blockquote><p>
<strong>Cloud Computing with Red Hat Enterprise Linux on Amazon EC2</strong><br />
<em>Cloud computing is fast becoming a core component of both Web and enterprise IT infrastructure architectures. With Red Hat Enterprise Linux on Amazon EC2, you are able to experience both the dynamic scalability of the Amazon EC2 cloud combined with the enterprise stability and security of Red Hat Enterprise Linux.</p>
<p>Presented by Red Hat and sponsored by Amazon Web Services, this lab tutorial will walk participants through a complete lifecycle process of setting up Red Hat Enterprise Linux on Amazon EC2, accessing running images, and terminating those instances using both Red Hat and Amazon tools.</em>
</p></blockquote>
<p>Guaranteed to be 100% awesome.</p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2010/06/04/summit-2010-lab/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Screen</title>
		<link>http://noopenblockers.com/2010/01/19/screen/</link>
		<comments>http://noopenblockers.com/2010/01/19/screen/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 13:48:05 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Planet Fedora]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=862</guid>
		<description><![CDATA[I love when I find useful built-in commands that I never knew about. When starting out with Linux, I heard about the typical heavy hitters like grep, sed, and awk. Then I discovered some variations on common commands, such as htop and less. And then every so often, someone mentions a command in passing that [...]]]></description>
			<content:encoded><![CDATA[<p>I love when I find useful built-in commands that I never knew about. When starting out with Linux, I heard about the typical heavy hitters like grep, sed, and awk. Then I discovered some variations on common commands, such as htop and less. And then every so often, someone mentions a command in passing that causes me to say &#8220;Wait&#8230; what is that?&#8221;</p>
<p>Screen is one of those sorts of tools. I was watching a VNC demo of one of our team&#8217;s sprint reviews and was distracted by the fact that he had a tab bar on the bottom of a terminal. It turns out that was just part of the coolness of &#8220;screen&#8221;.</p>
<p>Screen is basically a window manager that runs in a terminal, letting multiple shells run within the single terminal. I&#8217;m sure there are other features that I&#8217;d find awesome, but there are two that immediately stood out.</p>
<p>As I mentioned, screen allows you to run multiple shells inside of a single terminal. Instead of starting up a handful of separate SSH sessions to a server, I now just use screen to manage multiple shells inside of a single connection. Each call to screen creates a new shell, with a simple emacs-like syntax to switch between them:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">ctrl + a + n    #  next
ctrl + a + p    #  previous
ctrl + a + 0    #  select screen 0</pre></div></div>

<p>One side note on this, by default the tab bar displaying the running shells isn&#8217;t displayed. Adding the following to <code>~/.screenrc</code> enables a visual indicator of the current and possible shells that are open:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">hardstatus on
hardstatus alwayslastline &quot;%{-b gk}%-w%{+b kg}%50&gt;%n %t%{-b gk}%+w%&lt; %= %{w}%D %M %d %C%a&quot;</pre></div></div>

<p align="center"><img src="http://noopenblockers.com/wp-content/uploads/2010/01/screen-shell.png" alt="" title="Screen" width="564" height="306" class="aligncenter size-full wp-image-864" /></p>
<p>While useful, it can still get a little confusing when a bunch of shells are opened. The title can be set by:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">ctrl + a  A</pre></div></div>

<p align="center"><img src="http://noopenblockers.com/wp-content/uploads/2010/01/screen2.png" alt="" title="Screen - Titles" width="564" height="306" class="aligncenter size-full wp-image-865" /></p>
<p>The second major piece of awesomeness is the ability to detach from a running screen and reattach later. Going back to the SSH example, this lets me leave some shells running, detach, completely disconnect from the server, and then reattach to the screen later (with everything left exactly as it was).</p>
<p>Again, an emacs-like syntax for detaching from a running screen:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">ctrl + a + d</pre></div></div>

<p>Later, to reattach to the running screen detached from earlier:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">screen -dr</pre></div></div>

<p>Like I said, I&#8217;m not trying to make this post sound like I&#8217;ve discovered some hidden black magic in Linux. It&#8217;s just an attempt to let new users know about this awesomeness.</p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2010/01/19/screen/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Devil&#8217;s Pie</title>
		<link>http://noopenblockers.com/2009/12/09/devils-pie/</link>
		<comments>http://noopenblockers.com/2009/12/09/devils-pie/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 21:52:34 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>
		<category><![CDATA[Shell]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=810</guid>
		<description><![CDATA[I&#8217;ve been using Gnome for almost a year and a half now, and while I have grown to love a lot of the advantages it has, there are still some things I miss about FVWM. From a keyboard shortcut standpoint, many of them were alleviated when I discovered Gnome Do. However, I still found myself [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using Gnome for almost a year and a half now, and while I have grown to love a lot of the advantages it has, there are still some things I miss about FVWM. From a keyboard shortcut standpoint, many of them were alleviated when I discovered <a href="http://do.davebsd.com/" target="new">Gnome Do</a>. However, I still found myself missing sticky, transparent shells that would give me a constant view into certain data, be it htop or tailing some files. It was really quick to set up in FVWM, but I had trouble finding a way to remove window decorations from windows in Gnome.</p>
<p align="center"><a href="http://noopenblockers.com/wp-content/uploads/2009/12/devilspie-full.png"><img src="http://noopenblockers.com/wp-content/uploads/2009/12/devilspie-thumb.png" alt="Devil&#039;s Pie + Gnome Terminal = Win" title="Devil&#039;s Pie + Gnome Terminal = Win" width="700" height="438" class="aligncenter size-full wp-image-828" /></a><em>Click for 1680&#215;1050 version</em></p>
<p>Sure, there are other ways to get the data I&#8217;m looking for, but having text rendered directly on the desktop like that just looks damn cool to me. It also intimidates the crap out of non-geeks when they see my office, which I fully admit is a big plus.</p>
<p>I came across a package called <a href="http://burtonini.com/blog/computers/devilspie/" target="new">Devil&#8217;s Pie</a> that gave me a lot more control over windows. Although I was looking for something that would let me actively select a window to give it certain properties (sticky, no decorations, etc), Devil&#8217;s Pie instead passively detects new windows and applies settings to them. It&#8217;s a mentality shift from my initial thoughts, but I think over time this model will actually be really useful. Plus, it has &#8220;pie&#8221; in the name, which is just awesome.</p>
<p>With a combination of gnome-terminal profiles/flags and Devil&#8217;s Pie configuration, I was able to get my desktop to automatically populate my desktop with all sorts of data. The following description of how is kinda wordy, but it&#8217;s really not complicated at all.</p>
<h2>Install and Configure Devil&#8217;s Pie</h2>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">sudo yum -y install devilspie
mkdir ~/.devilspie
touch ~/.devilspie/console.ds</pre></div></div>

<p>Devil&#8217;s Pie reads all configuration files (I believe they have to end in .ds, but don&#8217;t quote me on that) in the above directory on startup. Those files define the rules that will be applied to new windows that are created (there&#8217;s also a way to ask it to apply rules to all existing windows as well). For this example, I put my rules in a file named console.ds.</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">(if 
(contains (window_name) &quot;console&quot; )
(begin 
(undecorate)
(pin)
(skip_pager)
(skip_tasklist)
)
)</pre></div></div>

<p>There are two main parts to the above configuration. The first is the matching expression to decide if a window should have the rules applied. In this case, I indicate to apply the actions if the window name contains the string &#8220;console&#8221; (there are also options for &#8220;is&#8221; and &#8220;matches&#8221;). I&#8217;ll cover where that rule comes into play in a bit.</p>
<p>The actions do the following:</p>
<ul>
<li>undecorate &#8211; This is primarily what I was going for, I want the window decorations removed. This includes the title bar and border, though you can still use the shortcut key (alt+F8 by default) to resize a window without decorations.</li>
<li>pin &#8211; Make this window available on all workspaces. There are also attributes to control putting a window on a particular workspace, which could be useful in my case since I use 12 workspaces and am, well, pretty anal retentive about having certain applications in certain workspaces.</li>
<li>skip_pager &#8211; Don&#8217;t let the window show up in the pager. It removes the clutter in my pager since I don&#8217;t consider this a &#8220;real&#8221; application, just a status-type window.</li>
<li>skip_tasklist &#8211; A little more useful than skip_pager, this keeps the window off the taskbar, for the same rationale as above.</li>
</ul>
<p>Needless to say, I&#8217;m only scratching the surface of all of the actions supported. I haven&#8217;t found a good way to find this list yet; the man page says the -l flag will list symbols but when I try it, it just doesn&#8217;t do anything.</p>
<h2>Run Devil&#8217;s Pie</h2>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">devilspie</pre></div></div>

<p>Not much to say about that. I&#8217;ll talk more about enabling a debug mode later, but I mention it now to say it&#8217;s not done through flags. You&#8217;ll need to restart it every time you change your confguration files, but once you&#8217;re set add it to System -> Preferences -> Startup Applications and you&#8217;re good to go on reboots.</p>
<h2>Create Gnome Terminal Profile</h2>
<p>To summarize above, Devil&#8217;s Pie will take care of removing window decorations and keeping it on the visible workspace. We still need to configure Gnome terminal to add some slickness to how it looks. Since I don&#8217;t want this slickness on all of my terminals, I created a new profile named &#8220;console&#8221; with the following changes:</p>
<ul>
<li>Background &#8211; Transparent background, with the slider set all the way to none.</li>
<li>Scrolling &#8211; Scrollbar is: Disabled</li>
</ul>
<p>That gives us a completely transparent shell, reflective of its use to simply throw data at me.</p>
<h2>Start the Terminal</h2>
<p>Now we just need to make sure we start the terminal such that it will use the right profile and will trigger the window detection from Devil&#8217;s Pie. Here&#8217;s where the matching expression from above comes into play. I don&#8217;t want all of my terminals to have no decorations, just specific ones I want to treat in this fashion. When starting the terminal, tell it to use a specific window title that will match our Devil&#8217;s Pie rule from above.</p>

<div class="wp_syntax"><div class="code"><pre class="shell" style="font-family:monospace;">gnome-terminal -t console --profile=console --geometry=140x20+1680-0 -e htop</pre></div></div>

<p>A quick explanation of above:</p>
<ul>
<li>-t &#8211; Sets the title of the terminal window. This value should match up to the window_name value from the Devil&#8217;s Pie configuration.</li>
<li>&#8211;profile &#8211; Tells the terminal to use the slick console profile in all of its transparent goodness.</li>
<li>&#8211;geometry &#8211; Initially size and place the terminal on my screen.</li>
<li>-e &#8211; Run a specific command when it starts, in this case <code>htop</code>.</li>
</ul>
<hr/>
<p>My screenshot above simply uses a similar call to gnome-terminal, passing a tail command to -e and different geometry to get the log tail on the top of the screen.</p>
<p>Two other notes on Devil&#8217;s Pie:</p>
<p>There is a UI for editing the configuration files: <code>gdevilspie</code>. It&#8217;s handy because you can easily see the different types of matching expressions and actions, however the files it generated didn&#8217;t run for me. For some reason, even with one matching expression it still added a blank condition and an &#8220;and&#8221; statement and closed the conditions block too early. I haven&#8217;t looked to closely yet to see what is wrong.</p>
<p>Enabling debugging is as simple as adding another configuration file. I added one named &#8220;debug.ds&#8221; to my <code>~/.devilspie</code> directory that contained simply:</p>

<div class="wp_syntax"><div class="code"><pre class="none" style="font-family:monospace;">(debug)</pre></div></div>

<p>Once that is in place, running the <code>devilspie</code> executable from the command line output some really useful window information whenever a new window was created.</p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/12/09/devils-pie/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>It Just Worked</title>
		<link>http://noopenblockers.com/2009/11/29/it-just-worked/</link>
		<comments>http://noopenblockers.com/2009/11/29/it-just-worked/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 22:53:56 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=805</guid>
		<description><![CDATA[I&#8217;m a bit late on any sort of post about Fedora 12 being released. That&#8217;s not to say I haven&#8217;t been taking advantage of it. On release day I did a clean install of my main desktop. From start to finish, I went from booting into the x86_64 install disk to building and running RHQ [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a bit late on any sort of post about <a href="http://fedoraproject.org" target="new">Fedora 12</a> being released. That&#8217;s not to say I haven&#8217;t been taking advantage of it. On release day I did a clean install of my main desktop. From start to finish, I went from booting into the x86_64 install disk to building and running <a href="http://rhq-project.org" target="new">RHQ</a> in about 70 minutes. That includes dual monitor support with no manual steps on my part and sound support. I even plugged in a tablet input I have and it picked it up without an issue.</p>
<p>That&#8217;s it. I ran through the installer, added a few packages I use that aren&#8217;t part of the default install, and was back up and running (I intentionally didn&#8217;t upgrade just to use it as an opportunity to clean off all the random crap I collect over the lifespan of an OS install). I literally did it during a conference call at work. The installation and initial experience has gotten extremely streamlined.</p>
<p>Over the weekend, I decided it was time to attack my wife&#8217;s laptop. She&#8217;s been using one of my old laptops for about a year and a half now which was running an older, non-updated version of Ubuntu (probably 8.04). After a quick backup, I popped in the i386 install disk to the same result as on my desktop: it just worked. I typed in the wifi password and she was good to go.</p>
<p>My wife is still a die hard Quicken user. She took extremely well to Linux when I first pushed it on her, but I have yet to mentally prepare myself to argue the accountant in her to move off of Quicken. So as part of this laptop install, I setup a dual boot into Windows (the hardware isn&#8217;t beefy enough to run it as a virt guest).</p>
<p>I figured I&#8217;d push my luck. I popped in the Quicken CD, pointed wine at the installer, and hoped for the best. 5 minutes later, it was installed. A few minutes after that, it had successfully updated itself from the internet and there was a menu item in Gnome for her to access it.</p>
<p>The worst part? Midway through the installer I called my wife over to show her. Here on her Gnome desktop sat the Quicken Windows installer. I didn&#8217;t have to do any sort of odd config file hacking, nor did I have to sacrifice any small furry animals. Her reaction?</p>
<p>&#8220;Cool.&#8221;</p>
<p>I just kinda stared at her blankly for a minute. It was almost physically painful to see her not appreciate the technological awesomeness that stood before her. I sighed and grabbed my phone intent on texting someone who could appreciate the situation.</p>
<p>Congratulations to the Fedora team on an awesome release. There have been some seriously great improvements in what have historically been uglier areas, such as wifi and dual monitor setups (not to mention the fact that I&#8217;ve always been cursed when it came to wine).</p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/11/29/it-just-worked/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Future Red Hat Developer</title>
		<link>http://noopenblockers.com/2009/11/18/future-fedora-ambassador/</link>
		<comments>http://noopenblockers.com/2009/11/18/future-fedora-ambassador/#comments</comments>
		<pubDate>Wed, 18 Nov 2009 18:06:28 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=788</guid>
		<description><![CDATA[(Renamed from &#8220;Future Fedora Ambassador&#8221; because of the hat&#8230; not that she can&#8217;t be involved in both, but this picture happens to be Red Hat specific ) It&#8217;s been a while since I got a good picture of my 2 year old geeking out. My wife actually took this one after my daughter found my [...]]]></description>
			<content:encoded><![CDATA[<p>(Renamed from &#8220;Future Fedora Ambassador&#8221; because of the hat&#8230; not that she can&#8217;t be involved in both, but this picture happens to be Red Hat specific  <img src='http://noopenblockers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  )</p>
<p>It&#8217;s been a while since I got a good picture of my 2 year old geeking out. My wife actually took this one after my daughter found my red fedora which was still packed from moving.</p>
<p align="center"><img src="http://noopenblockers.com/wp-content/uploads/2009/11/leanne-fedora.jpg" alt="Future Fedora Ambassador" title="Future Fedora Ambassador" width="294" height="482" class="aligncenter size-full wp-image-789" /></p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/11/18/future-fedora-ambassador/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Conky</title>
		<link>http://noopenblockers.com/2009/09/28/conky/</link>
		<comments>http://noopenblockers.com/2009/09/28/conky/#comments</comments>
		<pubDate>Mon, 28 Sep 2009 15:13:12 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=767</guid>
		<description><![CDATA[When I first started out using Linux, I was introduced to FVWM as a display manager. I quickly became, well, addicted to dorking with my .fvwm2rc config file. I was hooked on how many possibilities and customizations could be made. I&#8217;ve since stopped using FVWM for various reasons (not the least of which is their [...]]]></description>
			<content:encoded><![CDATA[<p>When I first started out using Linux, I was introduced to FVWM as a display manager. I quickly became, well, addicted to dorking with my .fvwm2rc config file. I was hooked on how many possibilities and customizations could be made. I&#8217;ve since stopped using FVWM for various reasons (not the least of which is their abrasive community) and thought my config file tweaking addiction was cured.</p>
<p>Then I found <a href="http://conky.sourceforge.net/" target="new">Conky</a>. The easiest description is found directly on their site: <em>&#8220;Conky is a free, light-weight system monitor for X, that displays any information on your desktop.&#8221;</em> The addictive part is that there are hundreds of variables that can be displayed as part of its monitoring. Do I need, at all times, to see the amount of space left on my /home partition? No. Does the fact that I can do it make it awesome anyway? Hell yeah.</p>
<p>In the past week, I&#8217;ve had a number of coworkers see it running on my laptop and ask me what it was and how to configure it. The &#8220;what&#8221; part can be seen in the top right corner of my desktop below (click the image for the full size 1680&#215;1050 version):</p>
<p><a href="http://noopenblockers.com/wp-content/uploads/2009/09/desktop.png" alt="Conky Desktop" title="Conky Desktop"><img src="http://noopenblockers.com/wp-content/uploads/2009/09/desktop-small.png" alt="Conky Desktop Thumbnail" title="Conky Desktop Thumbnail" width="700" height="438" class="aligncenter size-full wp-image-769" /></a></p>
<p>The &#8220;how&#8221;, or at least my settings, can <a href="http://github.com/jdob/sandbox/blob/master/.conkyrc" target="new">be found here</a>. I&#8217;m playing around with a personal github account for backing up and sharing this sort of stuff. I&#8217;m still not sure how much I&#8217;ll use it, but for now my conky config file can be found there. It&#8217;s a bit of a mess, but should be at least enough to give users an idea of what can be done. If anyone knows of any particularly cool use of it that I&#8217;m missing, definitely let me know.  <img src='http://noopenblockers.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/09/28/conky/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Amazon MP3 Downloader on Fedora 11</title>
		<link>http://noopenblockers.com/2009/07/03/amazon-mp3-downloader-on-fedora-11/</link>
		<comments>http://noopenblockers.com/2009/07/03/amazon-mp3-downloader-on-fedora-11/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 02:23:59 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Planet Fedora]]></category>

		<guid isPermaLink="false">http://noopenblockers.com/?p=686</guid>
		<description><![CDATA[I&#8217;ll cut to the chase: it doesn&#8217;t work. But have no fear, there&#8217;s an OSS solution. I recently got into using Amazon for buying MP3s. It&#8217;s DRM-free and has a great integration with pandora.com, which lets me hear a new song and click directly in pandora&#8217;s interface to buy it. It&#8217;s technology at its finest, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ll cut to the chase: it doesn&#8217;t work. But have no fear, there&#8217;s an OSS solution.</p>
<p>I recently got into using Amazon for buying MP3s. It&#8217;s DRM-free and has a great integration with <a href="http://pandora.com" target="new">pandora.com</a>, which lets me hear a new song and click directly in pandora&#8217;s interface to buy it. It&#8217;s technology at its finest, if not its most dangerous (to my credit card).</p>
<p>Amazon is annoying in the sense that you can download single MP3s as an MP3 file, but to buy a full album you have to use their proprietary downloader. This was bearable until a recent change where all MP3s now have to be downloaded using their downloader.</p>
<p>The problem? The most recent build of their client is for Fedora 9 (or Ubuntu 8.10 if you go that route). So their software is, um, I&#8217;ll just say &#8220;not up to date&#8221;. I was able to hack around to get it to run under Fedora 10, but it&#8217;s flat out busted in Fedora 11.</p>
<p>As I said at the outset, there is hope. <a href="http://code.google.com/p/clamz/" target="new">Clamz</a> is a command line app to download MP3s using Amazon&#8217;s .amz formatted files. It&#8217;s exactly what you think it is. You download the .amz file from Amazon (at the point in Amazon&#8217;s workflow where you <em>should</em> be just downloading the MP3 itself) and run the clamz executable passing in the .amz file. Poof, it just works.</p>
<p>I&#8217;m disappointed it has to come to this. I know Fedora 11 is still new, but that doesn&#8217;t change the fact that there was never a Fedora 10 build (and still is no Ubuntu 9.4 build) of the Amazon downloader. Serious good karma to the Clamz project for stepping up and filling this need (at least until I find a new outlet for buying MP3s; if Amazon doesn&#8217;t want to let me buy from them then I&#8217;m not gonna go nuts trying to).</p>
]]></content:encoded>
			<wfw:commentRss>http://noopenblockers.com/2009/07/03/amazon-mp3-downloader-on-fedora-11/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>

