<?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>handyfloss &#187; linux</title>
	<atom:link href="http://handyfloss.net/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://handyfloss.net</link>
	<description>Because FLOSS is handy, isn&#039;t it?</description>
	<lastBuildDate>Tue, 17 Jan 2012 09:04:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Desktop environment manipulation from the command line</title>
		<link>http://handyfloss.net/2011.01/desktop-environment-manipulation-from-the-command-line/</link>
		<comments>http://handyfloss.net/2011.01/desktop-environment-manipulation-from-the-command-line/#comments</comments>
		<pubDate>Sun, 09 Jan 2011 12:59:34 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[Compiz]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[gaming]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[regnum online]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=1189</guid>
		<description><![CDATA[I recently discovered Regnum Online, a very good MMORPG, with two interesting properties: it has a native Linux version, and is free to download and play (NGD, its owner, gets revenue through so called &#8220;premium items&#8221;, which are sold for real money. Premium items are not really necessary to play, but include convenience items like [...]]]></description>
			<content:encoded><![CDATA[<p>I recently discovered <a href="http://www.regnumonlinegame.com/">Regnum Online</a>, a very good <a href="http://en.wikipedia.org/wiki/MMORPG">MMORPG</a>, with two interesting properties: it has a native Linux version, and is free to download and play (NGD, its owner, gets revenue through so called &#8220;premium items&#8221;, which are sold for real money. Premium items are not really necessary to play, but include convenience items like mounts, to travel faster than on foot).</p>
<p>It so happens that Regnum can be played either in windowed mode, or fullscreen. Obviously the latter takes advantage of the whole screen, but sadly it can not be minimized or alt-tabbed to a different window. Being able to minimize the Regnum window and switching to another task is interesting, for example, to leave your character resting after a battle (it takes some time to heal back to normality), and checking your e-mail meanwhile. However, playing in windowed mode feels uncomfortable, with not all the screen being used, and having your desktop bars above and/or below the window you are playing on.</p>
<p>To have the advantages of both windowed and fullscreen mode at the same time (and none of their disadvantages), I thought of the following: I can play on 1440&#215;900 resolution (my whole screen), hiding the top and bottom bars (I use <a href="http://en.wikipedia.org/wiki/GNOME">GNOME</a>, with both bars), and getting rid of the window decoration of the Regnum window (which would eat some of the 900 vertical pixels). While we are at it, it would be cool to stop <a href="http://en.wikipedia.org/wiki/Compiz Fusion">Compiz Fusion</a> before running Regnum (to dedicate the whole video card to the game), and starting it again after closing it.</p>
<p>The problem is, I do not like to have autohiding panels in GNOME, and I like window decorations and Compiz effects, so the desktop settings for playing would have to be turned on before playing, and off after that. The next problem in the line is that I don&#8217;t like performing repetitive tasks such as pointing, clicking and choosing options from menus every time I feel like playing a game. Since I already click a button to start Regnum, it would be cool to have all configuration stuff happen by just clicking that same button. Obviously, that means automating all the configuration by placing the corresponding commands in a script, and making the Regnum button execute that script.</p>
<p><b>Stopping Compiz</b></p>
<p>That part was easy. We want to switch from Compiz to <a href="http://en.wikipedia.org/wiki/Metacity">Metacity</a>, which can be done with:</p>
<p><code>metacity --replace</code></p>
<p><b>Autohiding GNOME panels</b></p>
<p>Some googling yielded <a href="http://ubuntu-tutorials.com/2009/09/21/completely-hide-gnome-panel/">this ubuntu-tutorials page</a>, which led me to:</p>
<p><code>gconftool-2 --set "/apps/panel/toplevels/top_panel_screen0/auto_hide" --type bool "true"<br />
gconftool-2 --set "/apps/panel/toplevels/bottom_panel_screen0/auto_hide" --type bool "true"</code></p>
<p><b>Eliminating window decorations</b></p>
<p>All you can google about it will lead you to a little wonder called <a href="http://burtonini.com/blog/computers/devilspie/">Devil&#8217;s Pie</a>. In short, it&#8217;s a kind of daemon that checks for windows that match some user-defined rules, and performs on them the corresponding user-defined actions.</p>
<p>In my case, I defined a rule (in <tt>~/.devilspie/regnum.ds</tt>):</p>
<pre>
<code>(if
    (is (application_name) "Untitled window")
    (begin
        (undecorate)
    )
)</code>
</pre>
<p>Running <tt>devilspie</tt> from the command line will show the properties of all open windows, which will help you create the appropriate condition for the rule. In my case, apparently the final Regnum window is identified only as &#8220;Untitled window&#8221;.</p>
<p><b>Running Regnum, and waiting for it to finish</b></p>
<p>Waiting for Regnum to finish is not trivial, since once fully running it returns the control to the shell. For that reason, the following will not work:</p>
<pre>
<code>$ echo "start"
$ regnum-online
$ echo "end"</code>
</pre>
<p>It will echo &#8220;start&#8221;, then start Regnum, then echo &#8220;end&#8221;, while Regnum is still running. To fix that, I added a loop to my script, which only exits once Regnum has finished. There must be more elegant and less hacky ways of doing it, but this one works:</p>
<pre>
<code>while [[ -n "`ps aux| grep -e regnum-online -e "./game" | grep -v grep`" ]]
do
    sleep 5
done</code>
</pre>
<p>Every 5 seconds, it runs some <tt>ps</tt> command, and exits when the output is empty. The command itself is a simple <tt>grep</tt> to a <tt>ps</tt>, adding the <tt>grep -v grep</tt> so that the <tt>grep</tt> command is not catched by itself.</p>
<p><b>After closing Regnum, and whole script</b></p>
<p>So, after the while loop above exits, all we have to do is undo the settings changes we just did, and exit. The whole script would read:</p>
<pre>
<code>#!/bin/bash

# Substitute Compiz with Metacity:
metacity --replace &amp;

# Autohide top and bottom pannels:
gconftool-2 --set "/apps/panel/toplevels/top_panel_screen0/auto_hide" --type bool "true"
gconftool-2 --set "/apps/panel/toplevels/bottom_panel_screen0/auto_hide" --type bool "true"

# Run devilspie, to remove decoration in Regnum Online windows:
/usr/bin/devilspie &amp;

# Run Regnum Online:
/usr/bin/regnum-online

# Wait until RO finishes:
while [[ -n "`ps aux| grep -e regnum-online -e "./game" | grep -v grep`" ]]
do
    sleep 5
done

# Kill devilspie:
killall devilspie

# Show top and bottom pannels:
gconftool-2 --set "/apps/panel/toplevels/top_panel_screen0/auto_hide" --type bool "false"
gconftool-2 --set "/apps/panel/toplevels/bottom_panel_screen0/auto_hide" --type bool "false"

# Run Compiz again:
compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding --indirect-rendering &amp;</code>
</pre>
<p>Finally, I just named this script &#8220;RegnumRun.sh&#8221;, made it executable, placed it in a suitable place, and associated the Regnum icon on my top panel with RegnumRun.sh, instead of with <tt>regnum-online</tt> directly, and voilà: every time I click on that icon I get to play Regnum with purpose-chosen settings, and I get my regular settings back once I exit Regnum.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2008.10/usable-compiz-fusion-zoom-to-window/" title="Usable Compiz Fusion: zoom to window (October 1, 2008)">Usable Compiz Fusion: zoom to window</a> (0)</li>
	<li><a href="http://handyfloss.net/2009.11/trivial-use-of-md5sum/" title="Trivial use of md5sum (November 11, 2009)">Trivial use of md5sum</a> (4)</li>
	<li><a href="http://handyfloss.net/2009.10/first-impressions-with-arch-linux/" title="First impressions with Arch Linux (October 9, 2009)">First impressions with Arch Linux</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2011.01/desktop-environment-manipulation-from-the-command-line/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Please, choose the right format to send me that text. Thanks.</title>
		<link>http://handyfloss.net/2010.04/please-choose-the-right-format-to-send-me-that-text-thanks/</link>
		<comments>http://handyfloss.net/2010.04/please-choose-the-right-format-to-send-me-that-text-thanks/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 08:03:07 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[compression]]></category>
		<category><![CDATA[copyfight]]></category>
		<category><![CDATA[disk usage]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[format war]]></category>
		<category><![CDATA[gzip]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[optimization]]></category>
		<category><![CDATA[PS/PDF]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[xz]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=1071</guid>
		<description><![CDATA[I just received an e-mail with a very interesting text (recipies for pintxos), and it prompted some experiment. The issue is that the text was inside of a DOC file (of course!), which rises some questions and concerns on my side. The size of the file was 471 kB. I thought that one could make [...]]]></description>
			<content:encoded><![CDATA[<p>I just received an e-mail with a very interesting text (recipies for <a href="http://en.wikipedia.org/wiki/Pincho">pintxos</a>), and it prompted some experiment. The issue is that the text was inside of a <a href="http://en.wikipedia.org/wiki/DOC (computing)">DOC</a> file (of course!), which rises some questions and concerns on my side. The size of the file was <i>471 kB</i>.</p>
<p>I thought that one could make the document more portable by exporting it to <a href="http://en.wikipedia.org/wiki/PDF">PDF</a> (using <a href="http://en.wikipedia.org/wiki/OpenOffice.org">OpenOffice.org</a>). Doing so, the resulting file has a size of <i>364 kB</i> (1.29 times smaller than the original DOC).</p>
<p>Furthermore, text formatting could be waived, by using a <a href="http://en.wikipedia.org/wiki/plain text">plain text</a> format. A copy/paste of the contents of the DOC into a TXT file yielded a <i>186 kB</i> file (2.53x smaller).</p>
<p>Once in the mood, we can go one step further, and compress the TXT file: with <a href="http://en.wikipedia.org/wiki/gzip">gzip</a> we get a <i>51 kb</i> file (9.24x), and with <a href="http://en.wikipedia.org/wiki/xz">xz</a> a <i>42 kB</i> one (11.2x)</p>
<p>So far, so good. No surprise. The surprise came when, just for fun, I exported the DOC to <a href="http://en.wikipedia.org/wiki/OpenDocument">ODT</a>. I obtained a document equivalent to the original one, but with a <i>75 kB</i> size! (6.28x smaller than the DOC).</p>
<p>So, for summarizing:</p>
<p><b>DOC</b></p>
<p><b><i>Pros</i></b></p>
<ul>
<li>Editable.</li>
<li>Allows for text formatting.</li>
</ul>
<p><b><i>Cons</i></b></p>
<ul>
<li>Proprietary. In principle only MS Office can open it. OpenOffice.org can, but because of reverse engineering.</li>
<li>If opened with OpenOffice.org, or just a different version of MS Office, the reader can not be sure of seeing the same formatting the writer intended.</li>
<li>Size. 6 times bigger than ODT. Even bigger than PDF.</li>
<li>MS invented and owns it. You need more reasons?</li>
</ul>
<p><b>PDF</b></p>
<p><b><i>Pros</i></b></p>
<ul>
<li>Portability. You can open it in any OS (Windows, Linux, Mac, BSD&#8230;), on account of there being so many free PDF readers.</li>
<li>Smaller than the DOC.</li>
<li>Allows for text formatting, and the format the reader sees will be exactly the one the writer intended.</li>
</ul>
<p><b><i>Cons</i></b></p>
<ul>
<li>Not editable (I really don&#8217;t see the point in editing PDFs. For me the PDF is a product of an underlying format (e.g. LaTeX), as what you see on your browser is the product of some HTML/PHP, or an exe is the product of some source code. But I digress.)</li>
<li>Could be smaller</li>
</ul>
<p><b>TXT</b></p>
<p><b><i>Pros</i></b></p>
<ul>
<li>Portability. You can&#8217;t get much more portable than a plain text file. You can edit it anywhere, with your favorite text editor.</li>
<li>Size. You can&#8217;t get much smaller than a plain text file (as it contains the mere text content), and you can compress it further with ease.</li>
</ul>
<p><b><i>Cons</i></b></p>
<ul>
<li>Formatting. If you need text formatting, or including pictures or content other than text, then plain text is not for you.</li>
</ul>
<p><b>ODT</b></p>
<p><b><i>Pros</i></b></p>
<ul>
<li>Portability. It can be edited with OpenOffice.org (and probably others), which is <a href="http://en.wikipedia.org/wiki/free software">free software</a>, and has versions for Windows, Linux, and Mac.</li>
<li>Editability. Every bit as editable as DOC.</li>
<li>Size. 6 times smaller files than DOC.</li>
<li>It&#8217;s a free standard, not some proprietary rubbish.</li>
</ul>
<p><b><i>Cons</i></b></p>
<ul>
<li>None I can think of.</li>
</ul>
<p>So please, if you send me some text, first consider if plain text will suffice. If not, and no edition is intended on my side, PDF is fine. If edition is important (or size, because it&#8217;s smaller than PDF), the ODT is the way to go.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2009.01/save-hd-space-by-using-compressed-files-directly/" title="Save HD space by using compressed files directly (January 14, 2009)">Save HD space by using compressed files directly</a> (3)</li>
	<li><a href="http://handyfloss.net/2009.07/plzma-py-a-wrapper-for-parallel-implementation-of-lzma-compression/" title="plzma.py: a wrapper for parallel implementation of LZMA compression (July 23, 2009)">plzma.py: a wrapper for parallel implementation of LZMA compression</a> (3)</li>
	<li><a href="http://handyfloss.net/2009.12/chopzip-a-parallel-implementation-of-arbitrary-compression-algorithms/" title="ChopZip: a parallel implementation of arbitrary compression algorithms (December 20, 2009)">ChopZip: a parallel implementation of arbitrary compression algorithms</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2010.04/please-choose-the-right-format-to-send-me-that-text-thanks/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>LWD &#8211; March 2010</title>
		<link>http://handyfloss.net/2010.03/lwd-march-2010/</link>
		<comments>http://handyfloss.net/2010.03/lwd-march-2010/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 12:03:48 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[boinc]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=1006</guid>
		<description><![CDATA[This is a continuation post for my Linux World Domination project, started in this May 2008 post. You can read the previous post in the series here. In the following data T2D means &#8220;time to domination&#8221; (the expected time for Windows/Linux shares to cross, counting from the present date). DT2D means difference (increase/decrease) in T2D, [...]]]></description>
			<content:encoded><![CDATA[<p>This is a continuation post for my Linux World Domination project, started in <a href="/2008.05/how-much-left-for-gnulinux-world-domination/">this May 2008 post</a>. You can read the previous post in the series <a href="http://handyfloss.net/2009.12/lwd-december-2009/">here</a>.</p>
<p>In the following data <b>T2D</b> means &#8220;time to domination&#8221; (the expected time for Windows/Linux shares to cross, counting from the present date). <b>DT2D</b> means difference (increase/decrease) in T2D, with respect to last report. <b>CLP</b> means &#8220;current Linux Percent&#8221;, as given by last logged data, and <b>DD</b> means domination day (in YYYY-MM-DD format), and <b>DCLP</b> means &#8220;difference in CLP&#8221;, with respect to last logged data.<br />
</p>
<div align="center">
<table width=80%>
<tr>
<td><b>Project</b></td>
<td><b>T2D</b></td>
<td><b>DT2D</b></td>
<td><b>DD</b></td>
<td><b>CLP</b></td>
<td><b>DCLP</b></td>
</tr>
<tr>
<td><a href="http://einstein.phys.uwm.edu/">Einstein</a></td>
<td><span class="stress">already crossed</a></td>
<td>-</td>
<td>September 2009</td>
<td>54.80</td>
<td>+3.45</td>
</tr>
<tr>
<td><a href="http://www.malariacontrol.net/">MalariaControl</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>12.12</td>
<td>+0.17</td>
</tr>
<tr>
<td><a href="http://www.primegrid.com/">PrimeGrid</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>11.78</td>
<td>+1.47</td>
</tr>
<tr>
<td><a href="http://boinc.fzk.de/poem/">POEM</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>11.52</td>
<td>+0.69</td>
</tr>
<tr>
<td><a href="http://boinc.bakerlab.org/rosetta">Rosetta</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.61</td>
<td>+0.01</td>
</tr>
<tr>
<td><a href="http://setiathome.berkeley.edu/">SETI</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.12</td>
<td>+0.05</td>
</tr>
<tr>
<td><a href="http://qah.uni-muenster.de/">QMC</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.11</td>
<td>-0.12</td>
</tr>
<tr>
<td><a href="http://spin.fh-bielefeld.de/">Spinhenge</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>4.46</td>
<td>+0.09</td>
</tr>
</table>
</div>
<p>The numbers (again) seem a bit discouraging, but the data is what it is. Now MalariaControl goes up (it went down in previous report), but QMC goes slightly down. All others go up. The Linux tide seems unstoppable, however its forward speed is not necessarily high.</p>
<p>As promised, today I&#8217;m showing the plots for Spinhenge@home. In next issue, QMC@home.</p>
<div align="center">
<a href="http://isilanes.org/pub/blog/lwd/2010.03.04.spinhenge.nhosts.png"><img src="http://isilanes.org/pub/blog/lwd/2010.03.04.spinhenge.nhosts.small.png"></a></p>
<p>Number of hosts percent evolution for Spinhenge@home <i>(click to enlarge)</i></p>
</div>
<div align="center">
<a href="http://isilanes.org/pub/blog/lwd/2010.03.04.spinhenge.credit.png"><img src="http://isilanes.org/pub/blog/lwd/2010.03.04.spinhenge.credit.small.png"></a></p>
<p>Accumulated credit percent evolution for Spinhenge@home <i>(click to enlarge)</i></p>
</div>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2008.10/lwd-october/" title="LWD &#8211; October (October 30, 2008)">LWD &#8211; October</a> (0)</li>
	<li><a href="http://handyfloss.net/2009.03/lwd-march-2009/" title="LWD &#8211; March 2009 (March 12, 2009)">LWD &#8211; March 2009</a> (0)</li>
	<li><a href="http://handyfloss.net/2009.06/lwd-june-2009/" title="LWD &#8211; June 2009 (June 2, 2009)">LWD &#8211; June 2009</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2010.03/lwd-march-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Amarok WTF</title>
		<link>http://handyfloss.net/2010.01/amarok-wtf/</link>
		<comments>http://handyfloss.net/2010.01/amarok-wtf/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 09:34:38 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[gui]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[wtf]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=983</guid>
		<description><![CDATA[Warning: the following rant could be caused by my idiocy, more than by Amarok&#8217;s fault. See comments. I have been using Amarok as music player even since I had first contact with it. I was really delighted with its capabilities, and everything was intuitive and useful in its UI. That was until version 1.4.x. Version [...]]]></description>
			<content:encoded><![CDATA[<p><i>Warning: the following rant could be caused by my idiocy, more than by Amarok&#8217;s fault. See comments.</i></p>
<p>I have been using <a href="http://en.wikipedia.org/wiki/Amarok (software)">Amarok</a> as music player even since I had first contact with it. I was really delighted with its capabilities, and everything was intuitive and useful in its <a href="http://en.wikipedia.org/wiki/User Interface">UI</a>. That was until version 1.4.x.</p>
<p>Version 2.0 was an almost complete rewrite of the code, and as such many things changed. The UI suffered a large redesign, in my opinion for worse&#8230; but that&#8217;s just an opinion. There are, however, other issues that are facts, not opinion. Amarok 2.0 lacked many of the features of Amarok 1.x, as the developers themselves admitted (not much room to deny). Fine, I have no problem with that. It is understandable: until version 2.x things will not settle down. The only problem is that Linux distros (at least Ubuntu) adopted Amarok 2.0 almost immediately, leaving us users with a broken toy. Not nice.</p>
<p>My latest gripe with Amarok? I run Ubuntu 9.10 at work (Amarok 2.2.0), and latest Arch at home. In the latter, I just updated Amarok 2.2.1 to 2.2.2 in the weekend (Arch is much more up to date than Ubuntu, since it&#8217;s based in almost bleeding-edge rolling releases). Well, unlike Amarok 2.2.1 before (or Amarok 2.2.0 at work), the new Amarok 2.2.2 does not have an option for <b>random play</b>. Yes, you read correctly. There is no way I know of to avoid playing all the songs in the playlist in the exact order (in principle, alphabetical) they are laid on. In older versions, you could play songs <i>or</i> albums randomly. With 2.2.2, they lost this capability. Amazing feature regression, if you ask me.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2011.01/desktop-environment-manipulation-from-the-command-line/" title="Desktop environment manipulation from the command line (January 9, 2011)">Desktop environment manipulation from the command line</a> (0)</li>
	<li><a href="http://handyfloss.net/2009.06/changing-font-style-in-pygtk-combobox/" title="Changing font style in PyGTK ComboBox (June 10, 2009)">Changing font style in PyGTK ComboBox</a> (0)</li>
	<li><a href="http://handyfloss.net/2008.10/usable-compiz-fusion-zoom-to-window/" title="Usable Compiz Fusion: zoom to window (October 1, 2008)">Usable Compiz Fusion: zoom to window</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2010.01/amarok-wtf/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Hardware compatibility is better with Windows&#8230; not</title>
		<link>http://handyfloss.net/2010.01/hardware-compatibility-is-better-with-windows-not/</link>
		<comments>http://handyfloss.net/2010.01/hardware-compatibility-is-better-with-windows-not/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 12:20:28 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[eeepc]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=941</guid>
		<description><![CDATA[One of the (few, but legitimate) reasons given by some Windows users to not switch to Linux is that many pieces of hardware are not recognized by the latter. Sure enough, 99.9%, if not all, of the devices sold in shops are &#8220;Windows compatible&#8221;. The manufacturers of devices make damn sure their device, be it [...]]]></description>
			<content:encoded><![CDATA[<p>One of the (few, but legitimate) reasons given by some Windows users to not switch to Linux is that many pieces of hardware are not recognized by the latter. Sure enough, 99.9%, if not all, of the devices sold in shops are &#8220;Windows compatible&#8221;. The manufacturers of devices make damn sure their device, be it a pendrive or a printer, a computer screen or a keyboard, will work on any PC running Windows. They will even ship a CD with the drivers in the same package, so that installation of the device is as smooth as possible in Microsoft&#8217;s platform. Linux compatibility? Well, they usually just don&#8217;t care. Those hackers will make it work anyway, so why bother? And their market share is too small to take them into account.</p>
<p>Now, let&#8217;s pass to some personal experience with a webcam. I bought a webcam for my girlfriend&#8217;s laptop, which doesn&#8217;t have one integrated. The webcam was a cheap Logitech USB one, with &#8220;Designed for Skype&#8221; and &#8220;Windows compatible&#8221; written all around on the box. It even came with a CD, marked prominently as &#8220;Windows drivers&#8221;. My girlfriend&#8217;s laptop runs Windows Vista, and I decided to give it a chance, and plugged the webcam without further consideration. A message from our beloved OS informed me that a new device had been plugged (brilliant!) but Windows lacked the necessary drivers to make it work (bummer!). OK, no problem. We had the drivers, right? I unplugged the camera, inserted the CD, and followed the instructions to get the drivers installed. Everything went fine, except that the progress bar with the installation percent went on for more than 12 minutes (checked on the watch) before reaching 100%. After installation, Windows informed me that a system reboot was necessary, and so I did. After reboot, the camera would work.</p>
<p>As I had my Asus Eee at hand, I decided to try the webcam on it. I plugged it, and nothing happened. I just saw the green light on the camera turn on. Well, maybe it worked&#8230; I opened Cheese, a Linux program to show the output of webcams. I was a bit wary, because the Eee has an integrated webcam, so maybe there would be some interference or something. Not so. Cheese showed me immediately the output of the webcam I had just plugged, and offered me a menu with two entries (USB webcam and integrated one), so I could choose. That&#8217;s it. No CD with drivers, no 12-minute installation, no reboot, no nothing. Just plug and play.</p>
<p>Perhaps it is worth mentioning that the next time I tried to use the webcam on the Vista laptop, it would ask me for driver installation again! I don&#8217;t know why&#8230; I must have done something wrong in the first installation&#8230; With Windows, who knows?</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2009.03/temperature-and-fan-speed-control-on-the-asus-eee-pc/" title="Temperature and fan speed control on the Asus Eee PC (March 15, 2009)">Temperature and fan speed control on the Asus Eee PC</a> (4)</li>
	<li><a href="http://handyfloss.net/2008.07/making-isight-camera-work-in-ubuntu/" title="Making iSight camera work in Ubuntu (July 4, 2008)">Making iSight camera work in Ubuntu</a> (20)</li>
	<li><a href="http://handyfloss.net/2009.06/ubuntu-error-the-installer-needs-to-remove-operating-system-files/" title="Ubuntu error: the installer needs to remove operating system files (June 18, 2009)">Ubuntu error: the installer needs to remove operating system files</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2010.01/hardware-compatibility-is-better-with-windows-not/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>LWD &#8211; December 2009</title>
		<link>http://handyfloss.net/2009.12/lwd-december-2009/</link>
		<comments>http://handyfloss.net/2009.12/lwd-december-2009/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 14:44:47 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[boinc]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=902</guid>
		<description><![CDATA[This is a continuation post for my Linux World Domination project, started in this May 2008 post. You can read the previous post in the series here. In the following data T2D means &#8220;time to domination&#8221; (the expected time for Windows/Linux shares to cross, counting from the present date). DT2D means difference (increase/decrease) in T2D, [...]]]></description>
			<content:encoded><![CDATA[<p>This is a continuation post for my Linux World Domination project, started in <a href="/2008.05/how-much-left-for-gnulinux-world-domination/">this May 2008 post</a>. You can read the previous post in the series <a href="http://handyfloss.net/2009.09/ldw-september-2009/">here</a>.</p>
<p>In the following data <b>T2D</b> means &#8220;time to domination&#8221; (the expected time for Windows/Linux shares to cross, counting from the present date). <b>DT2D</b> means difference (increase/decrease) in T2D, with respect to last report. <b>CLP</b> means &#8220;current Linux Percent&#8221;, as given by last logged data, and <b>DD</b> means domination day (in YYYY-MM-DD format), and <b>DCLP</b> means &#8220;difference in CLP&#8221;, with respect to last logged data. I have dropped the &#8220;Confidence&#8221; column, for it gave little or no info.</p>
<p></p>
<div align="center">
<table width=80%>
<tr>
<td><b>Project</b></td>
<td><b>T2D</b></td>
<td><b>DT2D</b></td>
<td><b>DD</b></td>
<td><b>CLP</b></td>
<td><b>DCLP</b></td>
</tr>
<tr>
<td><a href="http://einstein.phys.uwm.edu/">Einstein</a></td>
<td><span class="stress">already crossed</a></td>
<td>-</td>
<td>September 2009</td>
<td>51.35</td>
<td>+4.24</td>
</tr>
<tr>
<td><a href="http://www.malariacontrol.net/">MalariaControl</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>11.95</td>
<td>-0.32</td>
</tr>
<tr>
<td><a href="http://boinc.fzk.de/poem/">POEM</a></td>
<td>83.4 months</td>
<td>-</td>
<td>2016-10-08</td>
<td>11.52</td>
<td>+0.69</td>
</tr>
<tr>
<td><a href="http://www.primegrid.com/">PrimeGrid</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>10.31</td>
<td>+0.46</td>
</tr>
<tr>
<td><a href="http://boinc.bakerlab.org/rosetta">Rosetta</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.60</td>
<td>+0.10</td>
</tr>
<tr>
<td><a href="http://qah.uni-muenster.de/">QMC</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.23</td>
<td>+0.15</td>
</tr>
<tr>
<td><a href="http://setiathome.berkeley.edu/">SETI</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.07</td>
<td>+0.05</td>
</tr>
<tr>
<td><a href="http://spin.fh-bielefeld.de/">Spinhenge</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>4.37</td>
<td>+0.15</td>
</tr>
</table>
</div>
<p>Except for the good news that Einstein@home has succumbed to the Linux hordes, the numbers (again) seem quite discouraging, but the data is what it is. All CLPs but MalariaControl have gone up (which goes down less than in previous report). The Linux tide seems unstoppable, however its forward speed is not necessarily high.</p>
<p>As promised, today I&#8217;m showing the plots for Rosetta@home, in next issue Spinhenge@home.</p>
<div align="center">
<a href="http://isilanes.org/pub/blog/lwd/2009.12.03.rosetta.nhosts.png"><img src="http://isilanes.org/pub/blog/lwd/2009.12.03.rosetta.nhosts.small.png"></a></p>
<p>Number of hosts percent evolution for Rosetta@home <i>(click to enlarge)</i></p>
</div>
<div align="center">
<a href="http://isilanes.org/pub/blog/lwd/2009.12.03.rosetta.credit.png"><img src="http://isilanes.org/pub/blog/lwd/2009.12.03.rosetta.credit.small.png"></a></p>
<p>Accumulated credit percent evolution for Rosetta@home <i>(click to enlarge)</i></p>
</div>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2008.10/lwd-october/" title="LWD &#8211; October (October 30, 2008)">LWD &#8211; October</a> (0)</li>
	<li><a href="http://handyfloss.net/2009.03/lwd-march-2009/" title="LWD &#8211; March 2009 (March 12, 2009)">LWD &#8211; March 2009</a> (0)</li>
	<li><a href="http://handyfloss.net/2009.06/lwd-june-2009/" title="LWD &#8211; June 2009 (June 2, 2009)">LWD &#8211; June 2009</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2009.12/lwd-december-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Trivial use of md5sum</title>
		<link>http://handyfloss.net/2009.11/trivial-use-of-md5sum/</link>
		<comments>http://handyfloss.net/2009.11/trivial-use-of-md5sum/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 13:52:50 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[opinion]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=886</guid>
		<description><![CDATA[I just made use of the md5sum command in a rather simple situation which could have been more troublesome to handle with other means. The following scenario highlights, IMHO, how command line greatly simplifies some tasks. I have a file file.txt, and a collection of files file.txt.N, where N = 1, 2, 3&#8230; I know [...]]]></description>
			<content:encoded><![CDATA[<p>I just made use of the <a href="http://en.wikipedia.org/wiki/md5sum">md5sum</a> command in a rather simple situation which could have been more troublesome to handle with other means. The following scenario highlights, IMHO, how <a href="http://en.wikipedia.org/wiki/command line">command line</a> greatly simplifies some tasks.</p>
<p>I have a file <tt>file.txt</tt>, and a collection of files <tt>file.txt.N</tt>, where N = 1, 2, 3&#8230; I know that the former is a copy of one of the latter, but I don&#8217;t know which. I could have run <a href="http://en.wikipedia.org/wiki/diff">diff</a> on all the possible matches, but I would have had to run it for every N until a match was found. However, md5sum comes to rescue. I can just run:</p>
<div class="codeblock">
% md5sum file.txt*
</div>
<p>And check which <tt>file.txt.N</tt> has a MD5 signature equal to <tt>file.txt</tt>, so that one would be the match. This solution is still a bit annoying, because I have to visually search matches for a long string. Not to worry! Unix is our friend once again. Recover the above command with a single press to the &#8220;up&#8221; arrow, then extend the command a tiny bit:</p>
<div class=" codeblock">
% md5sum file.txt* | sort
</div>
<p>Now, since the MD5 signatures are sorted, the match for our <tt>file.txt</tt> (if there is any), will appear right after the line for <tt>file.txt</tt>.</p>
<p>I challenge the reader to accomplish the same task as readily, comfortably and successfully in Windows or Mac, or in Linux without the command line.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2010.01/hardware-compatibility-is-better-with-windows-not/" title="Hardware compatibility is better with Windows&#8230; not (January 3, 2010)">Hardware compatibility is better with Windows&#8230; not</a> (10)</li>
	<li><a href="http://handyfloss.net/2011.01/desktop-environment-manipulation-from-the-command-line/" title="Desktop environment manipulation from the command line (January 9, 2011)">Desktop environment manipulation from the command line</a> (0)</li>
	<li><a href="http://handyfloss.net/2008.10/usable-compiz-fusion-zoom-to-window/" title="Usable Compiz Fusion: zoom to window (October 1, 2008)">Usable Compiz Fusion: zoom to window</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2009.11/trivial-use-of-md5sum/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>First impressions with Arch Linux</title>
		<link>http://handyfloss.net/2009.10/first-impressions-with-arch-linux/</link>
		<comments>http://handyfloss.net/2009.10/first-impressions-with-arch-linux/#comments</comments>
		<pubDate>Fri, 09 Oct 2009 11:19:29 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[64-bits]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[arch linux]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[x.org]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=856</guid>
		<description><![CDATA[I have been considering for some time trying some Linux distro that would be a little faster than Ubuntu. I made the switch from Debian to Ubuntu some time ago, and I must say that I am very pleased with it, despite it being a bit bloated and slow. Ubuntu is really user-friendly. This term [...]]]></description>
			<content:encoded><![CDATA[<p>I have been considering for some time trying some Linux distro that would be a little faster than <a href="http://en.wikipedia.org/wiki/Ubuntu (operating system)">Ubuntu</a>. I made the switch from <a href="http://en.wikipedia.org/wiki/Debian">Debian</a> to Ubuntu some time ago, and I must say that I am very pleased with it, despite it being a bit bloated and slow. Ubuntu is really user-friendly. This term is often despised among geeks, but it does have a huge value. Often times a distro will disguise poor dependency-handling, lack of package tuning and absence of wise defaults as  not having &#8220;fallen&#8221; for user-friendliness and &#8220;allowing the user do whatever she feels like&#8221;.</p>
<p>However comfortable Ubuntu might be, my inner geek wanted to get his hands a little bit dirtier with configurations, and obtain a more responsive OS in return. And that&#8217;s where <a href="http://en.wikipedia.org/wiki/Arch Linux">Arch Linux</a> fits in. Arch Linux is regarded as one of the fastest Linux distros, at least among the ones based on <a href="http://en.wikipedia.org/wiki/executable">binary</a> <a href="http://en.wikipedia.org/wiki/Software package (installation)">packages</a>, not <a href="http://en.wikipedia.org/wiki/source code">source code</a>. Is this fame deserved? Well, in my short experience, it seem to be.</p>
<p>First off, let us clarify what one means with a &#8220;faster&#8221; Linux distro. There are as I see it, broadly speaking, three things that can be faster or slower in the users&#8217; interaction with a computer. The first one, and very often cited one, is the <a href="http://en.wikipedia.org/wiki/booting">boot</a> (and shutdown) time. Any period of time between a user deciding to use the computer and being able to do so is wasted time (from the user&#8217;s point of view). Many computers stay on for long periods of time, but for a home user, short booting times are a must. A second speed-related item would be the startup time of applications. Booting would be a sub-section of this, if we consider the OS/<a href="http://en.wikipedia.org/wiki/kernel (computing)">kernel</a> as an &#8220;app&#8221;, but I refer here to user apps such as an e-mail client or text editor. Granted, most start within seconds at most, many below one second or apparently &#8220;instantly&#8221;, but some others are renowned for their slugginess (<a href="http://en.wikipedia.org/wiki/OpenOffice.org">OpenOffice.org</a>, <a href="http://en.wikipedia.org/wiki/Firefox">Firefox</a> and <a href="http://en.wikipedia.org/wiki/Amarok (software)">Amarok</a> come to mind). Even the not-very-slow apps that take a few seconds can become irritating if used with some frequency. The third speed-related item would be the execution of long-running CPU-intensive software, such as audio/video coding or scientific computation.</p>
<p>Of the three issues mentioned, it should be made clear that the third one (execution of CPU-intensive tasks) is seldom affected at all by the &#8220;speed&#8221; of the OS. Or it shouldn&#8217;t be.  Of course having the latest versions of the libraries used by the CPU-intensive software should make a difference, but I doubt that encoding a video with <a href="http://en.wikipedia.org/wiki/MEncoder">MEncoder</a> is any faster in <a href="http://en.wikipedia.org/wiki/Gentoo Linux">Gentoo</a> than Ubuntu (for the same version of mencoder and libraries). However, the first two (booting and start up of apps) <b>are</b> different from OS to OS.</p>
<p><b>Booting</b></p>
<p>I did some timings in Ubuntu and Arch, both in the same (dual boot) machine. I measured the time from <a href="http://en.wikipedia.org/wiki/GRUB">GRUB</a> to <a href="http://en.wikipedia.org/wiki/GNOME Display Manager">GDM</a>, and then the time from GDM to a working <a href="http://en.wikipedia.org/wiki/desktop environment">desktop environment</a> (<a href="http://en.wikipedia.org/wiki/GNOME">GNOME</a> in both). The exact data might not be that meaningful, as some details could be different from one installation to the other (different choice of firewall, or (minimally) different autostarted apps in the DE). But the big numbers are significant: where Ubuntu takes slightly below 1 minute to GDM, and around half a minute to GNOME, Arch takes below 20 seconds and 10 seconds, respectively.</p>
<p><b>App start up</b></p>
<p>Of the three applications mentioned, OpenOffice.org and Firefox start faster in Arch than in Ubuntu. I wrote down the numbers, but don&#8217;t have them now. Amarok, on the other hand, took equally long to start (some infamous 35 seconds) in both OSs. It is worth mentioning that all of them start up faster the second and successive times, and that the Ubuntu/Arch differences between second starts is correspondingly smaller (because both are fast). Still Arch is a bit faster (except for Amarok).</p>
<p><b>ABS, or custom compilation</b></p>
<p>But the benefits of Arch don&#8217;t end in a faster boot, or a more responsive desktop (which it has). Arch Linux makes it really easy to compile and install any custom package the user wants, and I decided to take advantage of it. With Debian/Ubuntu, you can download the source code of a package quite easily, but the compilation is more or less left to you, and the installation is different from that of a &#8220;official&#8221; package. With Arch, generating a package from the source is quite easy, and then installing it with <a href="http://en.wikipedia.org/wiki/Pacman (package manager)">Pacman</a> is trivial. For more info, refer to the Arch wiki entry for <a href="http://wiki.archlinux.org/index.php/ABS_-_The_Arch_Build_System">ABS</a>.</p>
<p>I first compiled MEncoder (inside the <tt>mplayer</tt> package), and found out that the compiled version made no difference with respect to the stock binary package. I should have known that, because I say so in this very post, don&#8217;t I? However, one always thinks that he can compile a package &#8220;better&#8221;, so I tried it (and failed to get any improvement).</p>
<p>On the other hand, when I recompiled Amarok, I <b>did</b> get a huge boost in speed. A simple custom compilation produced an Amarok that took only 15 seconds to start up, less than half of the vanilla binary distributed with Arch (I measured the 15 seconds even after rebooting, which rules out any &#8220;second time is faster&#8221; effect).</p>
<p><b>Is it hard to use?</b></p>
<p>Leaving the speed issue aside, one of the possible drawbacks of a geekier Linux distro is that it could be harder to use. Arch is, indeed, but not much. A seasoned Linux user should hardly find any difficulty to install and configure Arch. It is certainly not for beginners, but it is not super-hard either.</p>
<p>One of the few gripes I have with it regards the installation of a graphical environment. As it turns out, installing a DE such as GNOME does not trigger the installation of any <a href="http://en.wikipedia.org/wiki/X Window System">X Window System</a>, such as <a href="http://en.wikipedia.org/wiki/X.org Server">X.org Server</a>, as dependencies are set only for really vital things. Well, that&#8217;s not too bad, Arch is not assuming I want something until I tell it I do. Fine. Then, when I do install Xorg, the tools for configuring it are a bit lacking. I am so spoiled by the automagic configurations in Ubuntu, where you are presented a full-fledged desktop with almost no decision on your side, that I miss a magic script that will make X &#8220;just work&#8221;. Anyway, I can live with that. But some thing that made me feel like giving up was that after following all the instruction in the really nice Arch Wiki, I was unable to start X (it would start as a black screen, then freeze, and I could only get out by rebooting the computer). The problem was that I have a <a href="http://en.wikipedia.org/wiki/Nvidia">Nvidia</a> graphics card, and I needed the (proprietary) drivers. OK, of course I need them, but the default <tt>vesa</tt> driver should work as well!! In Ubuntu one can get a lower resolution, non-3D effect, desktop with the default vesa driver. Then the proprietary Nvidia drivers allow for more eye-candy and fanciness. But not in Arch. When I decided to skip the test with vesa, and download the proprietary drivers, the X server started without any problem.</p>
<p><b>Conclusions</b></p>
<p>I am quite happy with Arch so far. Yes, one has to work around some rough edges, but it is a nice experience as well, because one learns more than with other too user-friendly distros. I think Arch Linux is a very nice distro that is worth using, and I recommend it to any Linux user willing to learn and &#8220;get hands dirty&#8221;.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2008.07/making-isight-camera-work-in-ubuntu/" title="Making iSight camera work in Ubuntu (July 4, 2008)">Making iSight camera work in Ubuntu</a> (20)</li>
	<li><a href="http://handyfloss.net/2009.04/poor-intel-graphics-performance-in-ubuntu-jaunty-jackalope-and-a-fix-for-it/" title="Poor Intel graphics performance in Ubuntu Jaunty Jackalope, and a fix for it (April 29, 2009)">Poor Intel graphics performance in Ubuntu Jaunty Jackalope, and a fix for it</a> (8)</li>
	<li><a href="http://handyfloss.net/2008.07/latex-input-in-inkscape-046/" title="LaTeX input in Inkscape 0.46 (July 21, 2008)">LaTeX input in Inkscape 0.46</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2009.10/first-impressions-with-arch-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>No market for Linux games? The Koonsolo case</title>
		<link>http://handyfloss.net/2009.09/no-market-for-linux-games-the-koonsolo-case/</link>
		<comments>http://handyfloss.net/2009.09/no-market-for-linux-games-the-koonsolo-case/#comments</comments>
		<pubDate>Sat, 19 Sep 2009 17:56:45 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=852</guid>
		<description><![CDATA[I&#8217;ve read via Phoronix the case of the indie PC game producer Koonsolo, which sells a game for both Windows, Mac and Linux. The interesting thing is that, as you can read on Koonsolo&#8217;s blog, the Linux version is being sold in larger numbers than the Windows one! Apparently a 40% of the visitors or [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve read via <a href="http://www.phoronix.com/scan.php?page=news_item&#038;px=NzUzNQ">Phoronix</a> the case of the indie PC game producer <a href="http://www.koonsolo.com">Koonsolo</a>, which sells a game for both Windows, Mac and Linux. The interesting thing is that, as you can read on <a href="http://www.koonsolo.com/news/?p=33">Koonsolo&#8217;s blog</a>, the Linux version is being sold in larger numbers than the Windows one!</p>
<p>Apparently a 40% of the visitors or the Koonsolo site use Windows, vs less than 23% for Linux. However, despite the majority of visitors using Windows (there are even more Mac visitors than Linux ones), the Linux version sales amount to a 34% of the total sales, whereas Windows sales are only 23%. Visit the site for some more numbers and comments.</p>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2008.06/lwd-update/" title="LWD update (June 15, 2008)">LWD update</a> (0)</li>
	<li><a href="http://handyfloss.net/2008.10/lwd-october/" title="LWD &#8211; October (October 30, 2008)">LWD &#8211; October</a> (0)</li>
	<li><a href="http://handyfloss.net/2010.03/lwd-march-2010/" title="LWD &#8211; March 2010 (March 4, 2010)">LWD &#8211; March 2010</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2009.09/no-market-for-linux-games-the-koonsolo-case/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LDW &#8211; September 2009</title>
		<link>http://handyfloss.net/2009.09/ldw-september-2009/</link>
		<comments>http://handyfloss.net/2009.09/ldw-september-2009/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 08:48:57 +0000</pubDate>
		<dc:creator>isilanes</dc:creator>
				<category><![CDATA[Free software and related beasts]]></category>
		<category><![CDATA[about me]]></category>
		<category><![CDATA[boinc]]></category>
		<category><![CDATA[en]]></category>
		<category><![CDATA[FLOSS]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[stats]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://handyfloss.net/?p=845</guid>
		<description><![CDATA[This is a continuation post for my Linux World Domination project, started in this May 2008 post. You can read the previous post in the series here. In the following data T2D means &#8220;time to domination&#8221; (the expected time for Windows/Linux shares to cross, counting from the present date). DT2D means difference (increase/decrease) in T2D, [...]]]></description>
			<content:encoded><![CDATA[<p>This is a continuation post for my Linux World Domination project, started in <a href="/2008.05/how-much-left-for-gnulinux-world-domination/">this May 2008 post</a>. You can read the previous post in the series <a href="http://handyfloss.net/2009.06/lwd-june-2009/">here</a>.</p>
<p>In the following data <b>T2D</b> means &#8220;time to domination&#8221; (the expected time for Windows/Linux shares to cross, counting from the present date). <b>DT2D</b> means difference (increase/decrease) in T2D, with respect to last report. <b>CLP</b> means &#8220;current Linux Percent&#8221;, as given by last logged data, and <b>DD</b> means domination day (in YYYY-MM-DD format).</p>
<p></p>
<div align="center">
<table width=80%>
<tr>
<td><b>Project</b></td>
<td><b>T2D</b></td>
<td><b>DT2D</b></td>
<td><b>DD</b></td>
<td><b>CLP</b></td>
<td><b>Confidence %</b></td>
</tr>
<tr>
<td><a href="http://einstein.phys.uwm.edu/">Einstein</a></td>
<td>38.6 days</td>
<td>-55 days</td>
<td>2009-10-10</td>
<td>47.11 (+2.60)</td>
<td>16.1</td>
</tr>
<tr>
<td><a href="http://www.malariacontrol.net/">MalariaControl</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>12.27 (-0.37)</td>
<td>-</td>
</tr>
<tr>
<td><a href="http://boinc.fzk.de/poem/">POEM</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>10.83 (+0.17)</td>
<td>-</td>
</tr>
<tr>
<td><a href="http://www.primegrid.com/">PrimeGrid</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>9.85 (+0.24)</td>
<td>-</td>
</tr>
<tr>
<td><a href="http://boinc.bakerlab.org/rosetta">Rosetta</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.50 (+0.13)</td>
<td>-</td>
</tr>
<tr>
<td><a href="http://qah.uni-muenster.de/">QMC</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.07 (+0.15)</td>
<td>-</td>
</tr>
<tr>
<td><a href="http://setiathome.berkeley.edu/">SETI</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>8.02 (+0.02)</td>
<td>-</td>
</tr>
<tr>
<td><a href="http://spin.fh-bielefeld.de/">Spinhenge</a></td>
<td>>10 years</td>
<td>-</td>
<td>-</td>
<td>4.22 (+0.37)</td>
<td>-</td>
</tr>
</table>
</div>
<p>The numbers (again) seem quite discouraging, but the data is what it is. All CLPs but MalariaControl have gone up, with Spinhenge going up by almost a 0.4% in 3 months. The Linux tide seems unstoppable, however its forward speed is not necessarily high.</p>
<p>As promised, today I&#8217;m showing the plots for QMC@home, in next issue Rosetta@home.</p>
<div align="center">
<a href="http://isilanes.org/pub/blog/lwd/QMC_at_home_credit_2009.09.02_big.png"><img src="http://isilanes.org/pub/blog/lwd/QMC_at_home_credit_2009.09.02.png"></a></p>
<p>Number of hosts percent evolution for QMC@home <i>(click to enlarge)</i></p>
</div>
<div align="center">
<a href="http://isilanes.org/pub/blog/lwd/QMC_at_home_credit_2009.09.02_big.png"><img src="http://isilanes.org/pub/blog/lwd/QMC_at_home_credit_2009.09.02.png"></a></p>
<p>Accumulated credit percent evolution for QMC&#8221;home <i>(click to enlarge)</i></p>
</div>

	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://handyfloss.net/2008.10/lwd-october/" title="LWD &#8211; October (October 30, 2008)">LWD &#8211; October</a> (0)</li>
	<li><a href="http://handyfloss.net/2009.03/lwd-march-2009/" title="LWD &#8211; March 2009 (March 12, 2009)">LWD &#8211; March 2009</a> (0)</li>
	<li><a href="http://handyfloss.net/2009.06/lwd-june-2009/" title="LWD &#8211; June 2009 (June 2, 2009)">LWD &#8211; June 2009</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://handyfloss.net/2009.09/ldw-september-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

