    <?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>Yet Another Linux BlogYet Another Linux Blog &#187; Guest Editors</title>
	<atom:link href="http://linux-blog.org/category/guest-editors/feed/" rel="self" type="application/rss+xml" />
	<link>http://linux-blog.org</link>
	<description>Open Source, Open Blog</description>
	<lastBuildDate>Wed, 14 Mar 2012 23:18:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Chasing Your &#8216;Tail&#8217; With Linux</title>
		<link>http://linux-blog.org/chasing-your-tail-with-linux/</link>
		<comments>http://linux-blog.org/chasing-your-tail-with-linux/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 06:04:24 +0000</pubDate>
		<dc:creator>usama</dc:creator>
				<category><![CDATA[Guest Editors]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tail]]></category>
		<category><![CDATA[tips and tricks]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=1804</guid>
		<description><![CDATA[&#8216;GNU tail&#8217; is a small utility which prints (by default) the last 10 lines of any file. This an amazing piece of software not only allows you to see the last part of a file but also enables you to monitor a file’s changes without opening the file. &#8216;tail&#8217; can be used alone or can [...]]]></description>
			<content:encoded><![CDATA[<p>&#8216;GNU tail&#8217; is a small utility which prints (by default) the last 10 lines of any file. This an amazing piece of software not only allows you to see the last part of a file but also enables you to monitor a file’s changes without opening the file.</p>
<p>&#8216;tail&#8217; can be used alone or can be combined with other commands like &#8216;grep&#8217;, &#8216;ls&#8217; etc.</p>
<p>To use &#8216;tail&#8217;, let’s first create a text file. You can create the file by issuing following command in terminal;</p>
<pre class="brush: plain; title: ; notranslate">touch my_file</pre>
<p>Now open my_file with your favorite text editor (nano in my case) and write some lines. For this article, I have written the following 15 lines;</p>
<pre class="brush: plain; title: ; notranslate">this is the 1st line
this is the 2nd line
this is the 3rd line
this is the 4th line
this is the 5th line
this is the 6th line
this is the 7th line
this is the 8th line
this is the 9th line
this is the 10th line
this is the 11th line
this is the 12th line
this is the 13th line
this is the 14th line
this is the 15th line</pre>
<p>Now issue the following command in terminal;</p>
<pre class="brush: plain; title: ; notranslate">tail my_file</pre>
<p>It will print the last 10 lines which would be the “this is the 6th line” through “this is the 15th line”.</p>
<p>You can control the number of lines which &#8216;tail&#8217; will print. You can either increase or decrease the number of lines. For example, if you want &#8216;tail&#8217; to show only last 3 lines, you can do this by issuing the following command;</p>
<pre class="brush: plain; title: ; notranslate">tail -n 3 my_file</pre>
<p>Now it will print only last 3 lines. You can use any number of lines instead of 3. Or you can use a plus sign like;</p>
<pre class="brush: plain; title: ; notranslate">tail -n+7 my_file</pre>
<p>&#8216;tail&#8217; will start printing from 7th line to the end of the file.</p>
<p>You can view the desired file with respect to size. Issue the following command in terminal;</p>
<pre class="brush: plain; title: ; notranslate">tail -c 14 my_file</pre>
<p>And it will show the output of last 14 bytes. In my case, the output was;</p>
<p><em>the 15th line</em></p>
<p>&#8216;tail&#8217; not only displays the static output of a file but it can also monitor the file for changes. A &#8216;-f&#8217; option is used with &#8216;tail&#8217; and it starts acting like a monitoring tool which not only displays the last few lines but also constantly updates the output as the file changes. Here is a very popular example;</p>
<pre class="brush: plain; title: ; notranslate">tail -f /var/log/message</pre>
<p>&#8216;tail&#8217; will print the last 10 lines of &#8216;message&#8217; file. If you now plug-in you USB stick, you will notice that the change in &#8216;message&#8217; file will instantly be reported by &#8216;tail&#8217;. To release the cursor press Ctrl+c.</p>
<p>There are many other useful options which you can use with &#8216;tail&#8217; like;</p>
<pre class="brush: plain; title: ; notranslate">tail -q my_file        # never output headers</pre>
<pre class="brush: plain; title: ; notranslate">tail -v my_file        # always outputs headers</pre>
<p>You can combine &#8216;tail&#8217; with other utilities like &#8216;ls&#8217;, &#8216;grep&#8217;, &#8216;head&#8217; etc.</p>
<p>You can combine &#8216;tail&#8217; with &#8216;grep&#8217; to get lines with some specific &#8216;word&#8217;.</p>
<pre class="brush: plain; title: ; notranslate">tail -n 5 my_file | grep 14</pre>
<p>It will print only those lines out of last 5 which contains the word &#8217;14&#8242;. In my case the output was:</p>
<p><em>this is 14th line    # &#8217;14&#8242; will be highlighted</em></p>
<p>&#8216;tail&#8217; can also be combined with &#8216;ls&#8217; to get the list of last few files/folders. For example, if you issue the following command;</p>
<pre class="brush: plain; title: ; notranslate">ls -l | tail -n 2</pre>
<p>It will give a long listing of files/folders but will show the last 2 entries of the working directory.</p>
<p>These are just two examples of combining &#8216;tail&#8217; with other utilities. There are countless examples of combination of &#8216;tail&#8217; and other softwares.</p>
<p>&#8216;GNU tail&#8217; is a very handy tool. It can output any amount of data depending upon the options used. It makes the work of an ordinary user much easer and helps him/her find information in files more efficiently. To become an expert in Linux, this is a mandatory utility over which a user must have complete mastery.  Hopefully, this <a href="http://readalquran.org" onclick="return TrackClick('http%3A%2F%2Freadalquran.org','tutorial')" target="_blank">tutorial </a>gets you started chasing your tail!</p>
<p><a href="http://linux-blog.org/chasing-your-tail-with-linux/" rel="bookmark">Chasing Your &#8216;Tail&#8217; With Linux</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on January 27, 2011.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/chasing-your-tail-with-linux/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Using &#8216;Alias&#8217; in Linux</title>
		<link>http://linux-blog.org/using-alias-in-linux/</link>
		<comments>http://linux-blog.org/using-alias-in-linux/#comments</comments>
		<pubDate>Thu, 23 Dec 2010 14:42:50 +0000</pubDate>
		<dc:creator>usama</dc:creator>
				<category><![CDATA[Guest Editors]]></category>
		<category><![CDATA[Misc]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips and tricks]]></category>

		<guid isPermaLink="false">http://linux-blog.org/?p=1770</guid>
		<description><![CDATA[There comes a time in every Linux users&#8217; life when you will open the Terminal more often than not because you have realized that it is faster, more efficient and more powerful than GUI (Graphical User Interface).  You&#8217;ll have started to learn more and more commands and now feel more comfortable with command prompt.  The [...]]]></description>
			<content:encoded><![CDATA[<p>There comes a time in every Linux users&#8217; life when you will open the Terminal more often than not because you have  realized that it is faster, more efficient and more powerful than GUI  (Graphical User Interface).  You&#8217;ll have started to learn more and more  commands and now feel more comfortable with command prompt.  The command  prompt is all about commands – short commands as well as long commands.   If you are like me then you may not like to type the long commands (or  even small commands) <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You may be thinking about some way to avoid typing commands over and over. Enter the ‘alias&#8217;.</p>
<p>The  &#8216;alias&#8217; tool is a way to make the complicated things simple (and simple  things simpler). You can use &#8216;alias&#8217; instead of long (or even short)  commands.  Now let’s see how the &#8216;alias&#8217; works.</p>
<p>&#8216;alias&#8217; can make difficult and lengthy commands easy. The general format of &#8216;alias&#8217; is:</p>
<pre class="brush: plain; title: ; notranslate">alias Any_Word=”Command”</pre>
<p>It  means you linked an existing command to a (New) Word. This ‘Any_Word&#8217;  may contain anything – any alpha-numeric symbol, ‘Any_Word’ as well as ‘Command’ are interchangeable  and can be used for the same purpose.</p>
<h2>Simple Commands Made Simpler</h2>
<p>As an example, &#8216;ls -l&#8217;  is used for listing directory contents in &#8216;long  listing format&#8217;. This &#8216;ls -l&#8217; can be replaced with a simpler alias. You  can set the ‘alias’ for ‘ls –l’ as follows:</p>
<pre class="brush: plain; title: ; notranslate">alias ll=”ls –l”</pre>
<p>Now you just have to type ‘ll’ (without quotes) to get ‘long listing format’.</p>
<p>Or if you frequently misspell ‘ls’ as ‘sl’ and don’t want to install ‘sl’ package, then, you can use the following alias:</p>
<pre class="brush: plain; title: ; notranslate">alias sl=”ls”</pre>
<p>Now, whenever you type &#8216;sl&#8217; in terminal, it will give you same results as &#8216;ls&#8217;.</p>
<p>Now  consider even simpler example. To close a Terminal (or logout), you  have to type &#8216;exit&#8217; in Terminal. This &#8216;exit&#8217; command can be made even  simpler by using the following ‘alias’:</p>
<pre class="brush: plain; title: ; notranslate">alias x=&quot;exit&quot;</pre>
<p>Now, you only have to type &#8216;x&#8217; in Terminal to &#8216;exit&#8217;</p>
<p>Other examples of &#8216;alias&#8217; are:</p>
<pre class="brush: plain; title: ; notranslate">alias cp=&quot;cp -iv&quot;
#make copy operation interactive and verbose</pre>
<pre class="brush: plain; title: ; notranslate">alias rm=&quot;rm -iv&quot;
#make remove operation interactive and verbose</pre>
<pre class="brush: plain; title: ; notranslate">alias mv=&quot;mv -iv&quot;
#make move operation interactive and verbose</pre>
<h2>Make Package Management A Bit Simpler</h2>
<p>If you use Debian (or its derivatives) then you will be familiar with APT.  It is an excellent package manager.</p>
<p>In Ubuntu, to install software using APT, you have to use the following command:</p>
<pre class="brush: plain; title: ; notranslate">sudo apt-get install &lt;sofware_name&gt;</pre>
<p>It is a long command and consumes a lot of your time and energy <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>You can shorten this command by using &#8216;alias&#8217;.  Issue the following command in Terminal:</p>
<pre class="brush: plain; title: ; notranslate">alias Install=”sudo apt-get install”</pre>
<p>You can obviously use your own word instead of ‘Install’.</p>
<p>Now, you just have to type:</p>
<pre class="brush: plain; title: ; notranslate">Install &lt;software_name&gt;</pre>
<p>to install the (same) software. Simple, isn&#8217;t it?</p>
<p>You can simplify other aspects of APT. For example, you can use the following ‘alias’:</p>
<pre class="brush: plain; title: ; notranslate">alias Remove=”sudo apt-get remove”</pre>
<p>to uninstall a software.</p>
<p>Some other examples of attaching APT with &#8216;alias&#8217; are:</p>
<pre class="brush: plain; title: ; notranslate">alias Update=”sudo apt-get update”</pre>
<pre class="brush: plain; title: ; notranslate">alias Upgrade=”sudo apt-get upgrade”</pre>
<pre class="brush: plain; title: ; notranslate">alias Search=”apt-cache search”</pre>
<pre class="brush: plain; title: ; notranslate">alias Autoremove=”sudo apt-get autoremove”</pre>
<pre class="brush: plain; title: ; notranslate">alias Autoclean=”sudo apt-get autoclean”</pre>
<pre class="brush: plain; title: ; notranslate">alias Purge=”sudo apt-get remove –purge”</pre>
<p>and so on&#8230;</p>
<h2>A Very Interesting ‘alias’ For A Difficult Keyboard Button</h2>
<p>On  some keyboards, the dot (.) button is at very difficult position and if  you have to use it more than once, it becomes even more difficult.  That’s why ‘cd ..’ is the command which I mistype the most.  This  complication can be easily removed by using following ‘alias’ (you  can use any other word instead of a dot):</p>
<pre class="brush: plain; title: ; notranslate">alias .=”cd ..”</pre>
<pre class="brush: plain; title: ; notranslate">alias ..=”cd ../..”</pre>
<pre class="brush: plain; title: ; notranslate">alias ...=”cd ../../..”</pre>
<pre class="brush: plain; title: ; notranslate">alias ....=”cd ../../../..”</pre>
<h2>Using Internet From Terminal</h2>
<p>If you regularly use <a href="http://lynx.isc.org/" onclick="return TrackClick('http%3A%2F%2Flynx.isc.org%2F','lynx')">lynx</a> to browse the internet in terminal then you have to type long urls with  lynx to visit the web pages.  You can simplify these long urls by using  ‘alias’:</p>
<pre class="brush: plain; title: ; notranslate">alias Google=”lynx http://www.google.com/”</pre>
<pre class="brush: plain; title: ; notranslate">alias Yahoo=”lynx http://www.yahoo.com/”</pre>
<pre class="brush: plain; title: ; notranslate">alias yalb =”lynx http://linux-blog.org/”</pre>
<p>and so on&#8230;</p>
<p>Now just type Google, Yahoo or yalb to visit the respective web sites.</p>
<h2>Simple &#8216;alias&#8217; For More Complicated Commands</h2>
<p>Long  commands are not only difficult to remember but also take more time to  type; when you have to use them on daily basis, you become frustrated  when typing them again and again and again&#8230; So, &#8216;alias&#8217; are more  suitable for long and complicated commands.</p>
<p>Let&#8217;s consider an example.</p>
<p>To find the top 10 largest files in your system, you can set the following ‘alias’:</p>
<pre class="brush: plain; title: ; notranslate">alias top10files=”find . -type f -exec ls -sh {} \; | sort -n -r | head -10”</pre>
<p>You  can even mix different commands with ‘alias’.  For instance, if you  regularly use &#8216;tail&#8217; and direct its output to file to later view that  file, you can set a very simple ‘alias’ to do this cumbersome operation  in 1 word:</p>
<pre class="brush: plain; title: ; notranslate">alias Tail=”tail /var/log/messages &gt; hello.txt;cat hello.txt”</pre>
<p>Now just enter &#8216;Tail&#8217; and viola! All is done at once.</p>
<p>You can use any file with tail and direct its output and you can even use &#8216;nano&#8217; or &#8216;vi&#8217; to view/edit its output.</p>
<p>Here’s another example&#8230; ‘alias’ to connect to a remote server:</p>
<pre class="brush: plain; title: ; notranslate">alias any_name=”ssh &lt;remote_server_address&gt; -l &lt;username&gt; -p &lt;port&gt;”</pre>
<p>You can even create ‘alias’ for your bash scripts, like:</p>
<pre class="brush: plain; title: ; notranslate">alias clc=”sh /home/user/myscripts/calc.sh”</pre>
<p>Now that you have set a few different ‘alias’  you might want to check that which &#8216;alias&#8217; are set on your system.  To do that, just issue the following command:</p>
<pre class="brush: plain; title: ; notranslate">alias</pre>
<p>and it will list all the set ‘alias’ you have.</p>
<p>To remove an ‘alias’, just issue the &#8216;unalias&#8217; command, like:</p>
<pre class="brush: plain; title: ; notranslate">unalias Google</pre>
<p>and now typing Google in terminal will do nothing (as it was set with lynx).</p>
<p>To remove all the &#8216;alias&#8217;, issue the following command and all the ‘alias’ are gone:</p>
<pre class="brush: plain; title: ; notranslate">unalias –a</pre>
<p>We  have discussed the way of setting the ‘alias’ for different kinds of  commands.  But setting ‘alias’ in this way be temporary.  When you reboot  you PC, all the ‘alias’ which you have set will be gone.  This does not  mean that you have to set all the ‘alias’ every time you boot your PC.  If you have set an ‘alias’ and you liked it so much that you want it to  permanently reside in you PC, just add this alias in ‘.bashrc’ file in  you home directory. For example, if you want ‘alias’:</p>
<p>Install &lt;software_name&gt;</p>
<p>to permanently reside in your PC then user your favorite text editor and add the following line in your ‘~/.bashrc’ file:</p>
<pre class="brush: plain; title: ; notranslate">alias Install=”sudo apt-get install”</pre>
<p>Now  this ‘alias’ will not vanish into thin air when you reboot your PC. Only  those ‘alias’  which are listed in ‘~/.bashrc’ file will be permanent.</p>
<p>This <a href="http://readalquran.org" onclick="return TrackClick('http%3A%2F%2Freadalquran.org','guide')" target="_blank"> guide </a>is just a preview about ‘alias’.  It is just about basic ways of  using ‘alias’ to make your life simpler.  ‘GNU  alias’ is a tool which can simplify your life immensely.  But  unfortunately this tool is not given the attention it deserves.  In  short, it is such a powerful tool that if you give it proper time, it  can make you forget typing <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://linux-blog.org/using-alias-in-linux/" rel="bookmark">Using &#8216;Alias&#8217; in Linux</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on December 23, 2010.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/using-alias-in-linux/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>New Linux with an Old Laptop:  Fedora Core 4</title>
		<link>http://linux-blog.org/new-linux-with-an-old-laptop-fedora-core-4/</link>
		<comments>http://linux-blog.org/new-linux-with-an-old-laptop-fedora-core-4/#comments</comments>
		<pubDate>Mon, 24 Oct 2005 13:07:45 +0000</pubDate>
		<dc:creator>Apostasy</dc:creator>
				<category><![CDATA[Guest Editors]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Old Computers]]></category>

		<guid isPermaLink="false">http://linux-blog.org/word/new-linux-with-an-old-laptop-fedora-core-4/</guid>
		<description><![CDATA[Guest Editor Apostasy has decided to take a look at current distributions and how they perform and install on an older laptop. This article is the first in a series of many that will look at distributions such as Suse 10, Fedora Core 5, Mandriva, and other desktop-centric distributions. The Hardware Compaq Armada E500 Laptop [...]]]></description>
			<content:encoded><![CDATA[<hr />Guest Editor Apostasy has decided to take a look at current distributions and how they perform and install on an older laptop.  This article is the first in a series of many that will look at distributions such as Suse 10, Fedora Core 5, Mandriva, and other desktop-centric distributions.</p>
<hr /><strong><span style="text-decoration: underline;">The Hardware</span></strong><a href="http://linux-blog.org/uploads/Reviews/desktopfedora4.png" onclick="return TrackClick('http%3A%2F%2Flinux-blog.org%2Fuploads%2FReviews%2Fdesktopfedora4.png','')"><img style="border: 0px none ; padding-right: 5px; padding-left: 5px; float: right;" src="http://linux-blog.org/uploads/Reviews/desktopfedora4.Thumbs.png" alt="" width="110" height="83" /></a></p>
<ul>
<li>Compaq Armada E500 Laptop</li>
<li>700MHz Intel Pentium III</li>
<li>256MB PC133 SDRAM</li>
<li>ATi Rage Mobility</li>
<li>Intel Ethernet Pro 100</li>
<li>Toshiba 10GB Hard Disk</li>
<li>Netgear WG511 Wireless PCMCIA Card</li>
</ul>
<p><span style="text-decoration: underline;"><strong>Installation</strong></span></p>
<p>I chose to use a network install via HTTP. This went quite smoothly, initially via a text interface for configuring the network and entering the address to install from, then a graphical interface for partitioning and package selection. Right from the start Fedora looks like a professional O/S, it’s not fluffy and cute, but it is very pleasant to look at. Partitioning was handled automatically by Disk Druid, no problems at this stage.</p>
<p><span id="more-103"></span></p>
<p>Fedora offers 4 options for package configuration; Personal Desktop, Server, Workstation and Custom. I chose a custom install as I wanted to install KDE 3.4 as well as the default GNOME desktop. I didn’t feel that package selection was a good as my usual distro (Mandriva). When selecting packages in Mandriva (or previously Mandrake) removing a package in one category meant the package would not be installed and that any other packages that were no longer needed would also not be installed. With Fedora it would appear that packages may appear under more than one category and therefore may be installed if you remove them from your selection in one category and not in another. This doesn’t bother me too much, but if you really wanted to make sure a package was not installed then you may find this frustrating.</p>
<p>All my hardware was detected fine bar two items. The first I’m not too worried about as only the latest version of Mandriva has allowed me to use it, and that’s the wireless network card. Mandriva offers the option to use NDISWrapper during the install, but more about that in another review <img src='http://linux-blog.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  The second item was the monitor, but this was resolved simply by choosing a generic monitor capable of 1024&#215;768 (before doing this I could only select 800&#215;600). Once again, this really didn’t bother me and I don’t believe it would have caused anyone adept enough to attempt an O/S installation any problems.</p>
<p><span style="text-decoration: underline;"><strong>First Boot and Beyond</strong></span></p>
<p>Fedora Core 4 has a very nice graphical boot display, it’s not a necessity but it’s certainly a nice touch. The GDM theme is very pleasant and professional looking. Logging in takes a while, but that would probably be improved by running it on something a bit quicker!</p>
<p>The GNOME desktop is pleasant, easy on the eye and uncluttered. I’m usually a KDE user but I like the idea of using two bars. The bottom bar shows open programs, a view desktop button and the Workspace Switcher. The top bar has the menus, shortcuts, clock, volume control and battery monitor. There’s also an Up2date button that monitors available updates. So far, there’s none available so it’s not a feature I’ve been able to test.</p>
<p><a href="../../uploads/Reviews/appsmenufedora4.png"><img style="border: 0px none; padding-right: 5px; padding-left: 5px; float: left;" src="../../uploads/Reviews/appsmenufedora4.Thumbs.png" alt="" width="110" height="83" /></a>The menu structure is good, I like a menu that’s not cluttered and Fedora have managed to organise everything into only 6 headings. OpenOffice.org, Firefox and Evolution are all available as shortcuts on the top bar, I can’t imagine these aren’t the most commonly used applications for many people and they’re always removable if necessary. Also available on the top bar is a Desktop menu where you can change desktop settings, lock the screen or log out. I’m not sure if it’s a GNOME desktop thing or it’s something Fedora have added themselves, but there’s also a Places menu. This allows easy network browsing and access to your own files and mounted network shares.</p>
<p>The network is all set up and ready to go, I can get my email and surf the web without <a href="../../uploads/Reviews/placesmenu.png"><img style="border: 0px none; padding-right: 5px; padding-left: 5px; float: right;" src="../../uploads/Reviews/placesmenu.Thumbs.png" alt="" width="110" height="83" /></a>having to configure anything else (other than my account settings of course). I’ve heard plenty about Fedora’s lack of multi-media capabilities out-of-the-box, I don’t see it as a big problem as you only have to add them once. Flash and Java are easy enough to install for anyone familiar with Linux and certainly doesn&#8217;t take long; very few distros install these by default so I don’t see it as something to complain about. Not being able to play MP3s is a little unusual, but only required installing plugins for whichever application you prefer. Once this is done it’s on a par with other distributions.</p>
<p>Fedora happily mounted my USB flash drive and put a helpful icon on the desktop, this was done consistently and without user intervention. It also did this for CD’s so I was happy with the desktops’ behaviour as far as removable media goes.</p>
<p>All in all I’m very pleased with this latest incarnation of Fedora but I think what it really lacks is a Mandriva or SUSE style central configuration tool. I’m very fond of being able to control everything from one place rather than having to hunt through menus for various applications to configure different parts of the system.<br />
Next Up: SUSE 10.0</p>
<p><span style="font-size: medium;"><strong>Apostasy</strong></span></p>
<p><em>Linux-Blog Editors Note</em>: Fedora Core 5 is due out February 2006. We&#8217;ll have Apostasy take another look at things then and see if Fedora Core has improved any for him.</p>
<p><a href="http://linux-blog.org/new-linux-with-an-old-laptop-fedora-core-4/" rel="bookmark">New Linux with an Old Laptop:  Fedora Core 4</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on October 24, 2005.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/new-linux-with-an-old-laptop-fedora-core-4/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Enlightenment 17 Review</title>
		<link>http://linux-blog.org/enlightenment-17-review/</link>
		<comments>http://linux-blog.org/enlightenment-17-review/#comments</comments>
		<pubDate>Mon, 22 Aug 2005 20:45:00 +0000</pubDate>
		<dc:creator>misunderstruck</dc:creator>
				<category><![CDATA[Guest Editors]]></category>
		<category><![CDATA[Reviews]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[desktop]]></category>
		<category><![CDATA[e17]]></category>
		<category><![CDATA[enlightenment]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[window manager]]></category>

		<guid isPermaLink="false">http://linux-blog.org/word/enlightenment-17-review/</guid>
		<description><![CDATA[My first Linux experiences came through Knoppix and Mandrake, which send you to the KDE desktop by default. I used KDE at first, but I wanted to experiment with other less Windowsesque environments. The first one I installed was Enlightenment 16, which I must confess I had first heard of in Neal Stephenson&#8217;s essay &#8220;In [...]]]></description>
			<content:encoded><![CDATA[<p><script type="text/javascript"><!--
google_ad_client = "pub-3982453702542240";
/* 468x15, created 6/24/09 */
google_ad_slot = "6181047080";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<p style="margin-bottom: 0in;">My first Linux experiences came through <a title="Knoppix Homepage" href="http://www.knoppix.org/" onclick="return TrackClick('http%3A%2F%2Fwww.knoppix.org%2F','Knoppix+Homepage')" target="_blank">Knoppix</a> and <a title="Mandrake now Mandriva Linux" href="http://mandriva.com/" onclick="return TrackClick('http%3A%2F%2Fmandriva.com%2F','Mandrake+now+Mandriva+Linux')" target="_blank">Mandrake</a>, which send you to the KDE desktop by default. I used KDE at first, but I wanted to experiment with other less Windowsesque environments. The first one I installed was Enlightenment 16, which I must confess I had first heard of in Neal Stephenson&#8217;s essay &#8220;<a title="The Article" href="http://www.cryptonomicon.com/beginning.html" onclick="return TrackClick('http%3A%2F%2Fwww.cryptonomicon.com%2Fbeginning.html','The+Article')" target="_blank">In The Beginning There Was the Command Line</a>.” In that essay he said Enlightenment &#8220;may be the hippest single technology product I have ever seen&#8221; and that &#8220;it looks amazingly cool.&#8221; Since these sentiments were written in 1999, plenty of rivals have emerged for the title of “hippest tech.”</p>
<p style="margin-bottom: 0in;">Once I had <a title="Enlightenment Homepage" href="http://www.enlightenment.org/" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','www.enlightenment.org')" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','DR17+on+Enlightenment.org')" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','Enlightenment+Homepage')" target="_blank">Enlightenment</a> installed on my laptop there was no going back. I tried out a few other window managers, but the efficiency of E16 was hard to beat. My only complaints were that Enlightenment seemed a bit short on conveniences such as launchers, so I ended up running GNOME stripped down to one panel and the main menu with E16 as the window manager. Meanwhile, I read the descriptions of the new &#8220;desktop shell&#8221; that the Enlightenment crew was working on, dubbed <a title="DR17 on Enlightenment.org" href="http://www.enlightenment.org/" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','www.enlightenment.org')" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','DR17+on+Enlightenment.org')" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','Enlightenment+Homepage')" target="_blank">Enlightenment DR17</a> (or E17, as I&#8217;ll refer to it from here on) and thought it sounded like exactly what I wanted.</p>
<p style="margin-bottom: 0in;"><a href="http://linux-blog.org/uploads/desktoptreebg.png" onclick="return TrackClick('http%3A%2F%2Flinux-blog.org%2Fuploads%2Fdesktoptreebg.png','')"><img style="border: 0px none ; padding-right: 5px; padding-left: 5px; float: left;" src="http://linux-blog.org/uploads/desktoptreebg.Thumbs.png" border="0" alt="" hspace="0" width="110" height="83" align="right" /></a>I should mention that &#8220;window manager&#8221; isn&#8217;t quite the right term for E17. The developers call it a desktop shell, intending it to fill in the space between a simple window manager like the original Enlightenment and a full-featured desktop environment like GNOME. In other words, they were setting out to create a desktop not unlike my own E16/GNOME hybrid. In this respect it does not disappoint.</p>
<p>In creating E17 the Enlightenment crew have created a set of shared libraries (the Enlightenment Foundation Libraries) with the goal of building a complete set of applications to<a href="http://linux-blog.org/uploads/e17sky.png" onclick="return TrackClick('http%3A%2F%2Flinux-blog.org%2Fuploads%2Fe17sky.png','')"><img style="border: 0px none ; padding-right: 5px; padding-left: 5px; float: left;" src="http://linux-blog.org/uploads/e17sky.Thumbs.png" alt="" width="110" height="83" /></a> create an integrated environment where all files and programs are readily available that remains fast and non-resource-intensive. Essentially, E17 breaks down a desktop environment into its essential components (window manager, file manager, launcher, main menu, etc.) and offers them as a completely customizable package, where the user chooses which elements to use at any time.</p>
<p><strong><span style="text-decoration: underline;">Early Impressions</span></strong></p>
<p style="margin-bottom: 0in;"><a href="http://linux-blog.org/uploads/desktopmilktheme.png" onclick="return TrackClick('http%3A%2F%2Flinux-blog.org%2Fuploads%2Fdesktopmilktheme.png','')"><img style="border: 0px none ; padding-right: 5px; padding-left: 5px; float: right;" src="http://linux-blog.org/uploads/desktopmilktheme.Thumbs.png" border="0" alt="" hspace="0" width="110" height="83" /></a>When I started using E17 back in early May, I had already been a regular user of E16 for a while. My first impressions were that E17 sported some neat features, but configuring the menus (by making all those damn eapp files, E17&#8242;s special icon format &#8212; read on for more details) was a hassle, plus E17 was missing many of the small features, such as edge-flipping or icon boxes, that I liked in E16. But I stuck</p>
<div class="serendipity_imageComment_left" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="http://linux-blog.org/uploads/exige.png" onclick="return TrackClick('http%3A%2F%2Flinux-blog.org%2Fuploads%2Fexige.png','')"><img src="http://linux-blog.org/uploads/exige.Thumbs.png" alt="" width="110" height="44" /></a></div>
<div class="serendipity_imageComment_txt">run command</div>
</div>
<p>with it, updating it on a regular basis and reading the continually updated user guide at <a title="Get-E.org - E17 user resources" href="http://www.get-e.org/" onclick="return TrackClick('http%3A%2F%2Fwww.get-e.org%2F','Get-E.org+-+E17+user+resources')">Get-E.org</a>, and usability has steadily increased. Also, a number of the features I had been missing were added (like</p>
<div class="serendipity_imageComment_right" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="http://linux-blog.org/uploads/winlist.png" onclick="return TrackClick('http%3A%2F%2Flinux-blog.org%2Fuploads%2Fwinlist.png','')"><img src="http://linux-blog.org/uploads/winlist.Thumbs.png" alt="" width="110" height="91" /></a></div>
<div class="serendipity_imageComment_txt">window list</div>
</div>
<p>edge-flipping) or had been there all along (turns out there is an icon box module called ibox, which is disabled by default). A graphical eap creator and other additions like a run command, alt-tab window switching (complete with a well designed display) and, for those who use sloppy or mouse focus, automatic placement of the cursor in the newly selected window have improved general usability.<br />
<span id="more-99"></span></p>
<p><span style="text-decoration: underline;"><strong>Peeves</strong></span></p>
<p>One functional feature of E16 I still miss is using middle-clicks to shade windows. I made an attempt at setting this mouse binding in E17, though what happened was middle-clicking anywhere in the window (as opposed to directly on the titlebar) would shade it, which is problematic when, say, browsing in Firefox and trying to open links in new tabs by middle clicking.</p>
<p>Naturally I wasn&#8217;t expecting everything to work perfectly &#8212; even the splash screen advises &#8220;This is development code &#8212; be warned!&#8221; But to paraphrase someone from another forum, E17 is more stable than your average development window manager.</p>
<p>One early issue I had was Firefox behaving strangely with sloppy focus, the default setting. The titlebar would flash in time with my typing, I would lose all of my Firefox-specific keyboard shortcuts, and there would be no auto completion in the URL bar. Perhaps one of the many &#8220;minor bugfixes&#8221; one reads about in CVS logs took care of it. Another recently remedied problem was the inability to open menus in applications run under WINE. Another curious effect with WINE programs is that any Windows apps opened with WINE (or CrossOver) have the same window-class, which is how Enlightenment chooses what eap icon it uses to represent the app in the taskbar, pager, and window list. While you can set up different eaps with unique icons for each application (useful for the menu), they will all appear with the same icon in the pager (not so useful). Annoying, though likely not a deal breaker for most users.</p>
<p>Other minor annoyances:</p>
<ul>
<li>no easy configuration of module appearance</li>
<li>click-to-raise only works on titlebar under mouse/sloppy focus, while click-to-focus works anywhere in the window.</li>
</ul>
<p><strong><span style="text-decoration: underline;">Good Things</span></strong></p>
<div class="serendipity_imageComment_left" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/evidenceshelf.png"><img src="../../uploads/evidenceshelf.Thumbs.png" alt="" width="110" height="83" /></a></div>
<div class="serendipity_imageComment_txt">Evidence in icon view with shelf displayed</div>
</div>
<p>I remember someone writing that one of the biggest considerations in your choice of an OS or window manager was answering the question, &#8220;Does this help you get your work done?&#8221; For a short time last month I switched back to Fluxbox, as I found minor things like focus issues distracting while trying to work. But while writing this review, I&#8217;ve found that those minor issues are either fixed or there are workarounds, and E17 has become my standard desktop again. I recently loaded up E16 on the home computer and was struck by how inelegant it is compared to E17.<br />
And so I have stayed with the new Enlightenment. Bugs are fixed, people are creating new themes and icon sets, the <a title="E17 User Guide" href="http://www0.get-e.org/E17_User_Guide/English/_pages/2.1.html" onclick="return TrackClick('http%3A%2F%2Fwww0.get-e.org%2FE17_User_Guide%2FEnglish%2F_pages%2F2.1.html','E17+User+Guide')" target="_blank">user guide at Get-E</a> is becoming ever more detailed, and of course, since this is Linux, there are plenty of opportunities for users to join in and make the damn thing better still.</p>
<p style="margin-bottom: 0in;"><span style="text-decoration: underline;"><strong>Installation</strong></span></p>
<p>As far as installation goes, you can manually configure, compile, and install following the directions at <a href="http://enlightenment.freedesktop.org/" onclick="return TrackClick('http%3A%2F%2Fenlightenment.freedesktop.org%2F','Enlightenment.freedesktop.org')">Enlightenment.freedesktop.org</a>, or you can avail yourself of a few less labor intensive options. Packages are available for <a title="E17 packages for Debian" href="http://shadoi.soulmachine.net/" onclick="return TrackClick('http%3A%2F%2Fshadoi.soulmachine.net%2F','E17+packages+for+Debian')">Debian</a>, rpms for <a title="E17 rpm repository" href="http://sps.nus.edu.sg/%7Edidierbe" onclick="return TrackClick('http%3A%2F%2Fsps.nus.edu.sg%2F%257Edidierbe','E17+rpm+repository')">Fedora</a>, and ebuilds (both snapshots and CVS) in portage for Gentoo. More information on installation can be found <a title="Get-E installation help" href="http://www.get-e.org/User_Guide/English/_pages/2.html" onclick="return TrackClick('http%3A%2F%2Fwww.get-e.org%2FUser_Guide%2FEnglish%2F_pages%2F2.html','Get-E+installation+help')">here</a>. I use both the Fedora rpms and Gentoo ebuilds (from CVS). At the rate E17 is updated, last month&#8217;s version is already rustic. I tend to update it every other week. Thus far, I have had no upgrades leave me with an unstable or unusable E17.</p>
<p><span style="text-decoration: underline;"><strong>The Strange and Wondrous World of the EAP</strong></span></p>
<p>The only major hurdle facing a new user of E17 is the creation of eap files, which are essentially small files consisting of an icon plus basic information about a program,</p>
<div class="serendipity_imageComment_right" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/ibar.png"><img src="../../uploads/ibar.Thumbs.png" alt="" width="110" height="7" /></a></div>
<div class="serendipity_imageComment_txt">The ibar launcher</div>
</div>
<p>including its name and executable. In a desktop environment like GNOME, you create launchers on the panel by choosing an icon and entering the program&#8217;s name and executable in the launcher</p>
<div class="serendipity_imageComment_left" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/eapedit.png"><img src="../../uploads/eapedit.Thumbs.png" alt="" width="110" height="108" /></a></div>
<div class="serendipity_imageComment_txt">eap editor</div>
</div>
<p>Fortunately, it is easily done with an included script or using a guicreation tool. Creating an eap is a similar process, but newly created eaps are stored for Enlightenment to use in the menus, launchers, icon boxes, taskbars, and pagers. Though a few eaps</p>
<div class="serendipity_imageComment_right" style="width: 78px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/entangle.png"><img src="../../uploads/entangle.Thumbs.png" alt="" width="78" height="110" /></a></div>
<div class="serendipity_imageComment_txt">menu editor</div>
</div>
<p>are included in the basic installation, you will want to create more. included in the e_utils package. Ideally, you should only have to build a set of eaps once, plus a number of prebuilt eap collections are available online at <a href="http://www4.get-e.org/" onclick="return TrackClick('http%3A%2F%2Fwww4.get-e.org%2F','www.get-e.org')" target="_blank">www.get-e.org</a>. You then organize menus and launchers by editing text files or using the graphical tool Entangle.</p>
<div class="serendipity_imageComment_left" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/emblem.png"><img src="../../uploads/emblem.Thumbs.png" alt="" width="110" height="77" /></a></div>
<div class="serendipity_imageComment_txt">background chooser</div>
</div>
<p><script type="text/javascript"><!--
google_ad_client = "pub-3982453702542240";
/* 468x15, created 6/24/09 */
google_ad_slot = "6181047080";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script><br />
Additional configuration is done with the main menu , the background chooser Emblem or the command line tool enlightenment_remote, which is by far the most powerful of the configuration tools available in E17. With it you can set backgrounds, themes, focus policy, virtual desktops, modules,<a href="../../uploads/mainmenu.png"><img style="border: 0px none; padding-right: 5px; padding-left: 5px; float: right;" src="../../uploads/mainmenu.Thumbs.png" alt="" width="59" height="110" /></a> mouse button bindings, key bindings, fonts, menu display speeds, edge-flipping, and more. Graphical tools for key bindings, background creation, and general configuration are all on the TODO list, along with items like desktop icons, tabbed windows, and other monitor modules, so there are plenty of opportunities for coders looking to get involved.</p>
<p>Themes and backgrounds also have their own unique file format that allows a file to include multiple images and scripts, which makes some fun effects possible, such as title bar animation during focus changes, light effects in backgrounds and full-screen animations. A number of themes and backgrounds are available at <a title="E17 themes" href="http://www.get-e.org/Themes/E17/index.html" onclick="return TrackClick('http%3A%2F%2Fwww.get-e.org%2FThemes%2FE17%2Findex.html','E17+themes')">www.get-e.org</a>. Static backgrounds can be generated from any normal image file.</p>
<p>The following is a short flash video demonstrating a few of the animated backgrounds available, as well as one of the desktop switching animations.<br />
(<a href="../../flash/backgrounds.html" target="_blank">Go Watch the Background Video!</a>)</p>
<p><a href="../../uploads/confupgrade.png"><img style="border: 0px none; padding-right: 5px; padding-left: 5px; float: left;" src="../../uploads/confupgrade.Thumbs.png" alt="" width="110" height="72" /></a>The one nasty little surprise that often awaits a user after an upgrade that is your configuration is reset. What this means is that your module, theme, background, and key binding settings are all lost, though these can be easily restored by writing a simple script. Also, as development progresses, E has become better at remembering some settings (menus, weather url, module placement, startup programs, etc.), which makes for less work to restore your desktop. Eap files, menus, and launcher configurations are not affected by updates.</p>
<p><span style="text-decoration: underline;"><strong>Modules</strong></span></p>
<p>A central feature of the E17 desktop is the collection of modules which can be added or removed as the user wishes, allowing Enlightenment to be as light or heavy as one desires. Currently there are 16 official modules available, ranging from the useful (pager, launch bar) to the informative (cpu/memory monitor, weather) to eye candy (dropshadow, flame, snow). Discovering the modules was a bit of an adventure, as there was no obvious way to list all available choices, only the loaded ones. (By the way, you can find all the available modules &#8211; in Gentoo anyway &#8211; by looking in /usr/lib/enlightenment/modules/ and /usr/lib/enlightenment/modules_extra/)</p>
<p>The following three flash videos show off the various modules in use:</p>
<ul>
<li><a title="Basic modules" href="../../flash/modules.html" target="_blank">Basic modules</a></li>
<li><a title="Flame module" href="../../flash/flame.html" target="_blank">Flame</a></li>
<li><a href="../../flash/snow.html" target="_blank">Snow</a></li>
</ul>
<p><span style="text-decoration: underline;"><strong>Evidence</strong></span></p>
<div class="serendipity_imageComment_left" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/evidenceicon.png"><img src="../../uploads/evidenceicon.Thumbs.png" alt="" width="110" height="76" /></a></div>
<div class="serendipity_imageComment_txt">icon view</div>
</div>
<p>Another new EFL application, though not actually a part of E17, but deserving of</p>
<div class="serendipity_imageComment_right" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/evidencebrowser.png"><img src="../../uploads/evidencebrowser.Thumbs.png" alt="" width="110" height="73" /></a></div>
<div class="serendipity_imageComment_txt">browser view</div>
</div>
<p>special mention is Evidence, essentially an graphical file browser, though a bit more flexible than say, Nautilus. It offers a choice of views (icon, browser, or tree), customizable context menus, and a command shell. The context menu includes options for various file types, such as opening image files in Entice (the E17 image viewer) or editing ID3 tags on mp3 files. Also, you can use the shelf (a frame at the bottom of the main window) to store often used files or application launchers. Evidence can also be used to draw the desktop.</p>
<div class="serendipity_imageComment_left" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/evidencetree.png"><img src="../../uploads/evidencetree.Thumbs.png" alt="" width="110" height="73" /></a></div>
<div class="serendipity_imageComment_txt">tree view</div>
</div>
<p>Personally, this is one of my favorite new applications, even though I have yet to</p>
<div class="serendipity_imageComment_right" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/evidencecommand.png"><img src="../../uploads/evidencecommand.Thumbs.png" alt="" width="110" height="81" /></a></div>
<div class="serendipity_imageComment_txt">command shell</div>
</div>
<p>master half of what it can do. The command shell combined with the icon view gives me what feels like the best of both the terminal (powerful commands like cp and mv) and graphical file managers (excellent visual organization). There are little tricks to be learned (like using the full path of a file name in shell commands &#8212; tab completion can be used for this), and occasional bugs (like the vanishing configuration window), but considering that Evidence has become</p>
<div class="serendipity_imageComment_right" style="width: 92px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/mp3tag.png"><img src="../../uploads/mp3tag.Thumbs.png" alt="" width="92" height="110" /></a></div>
<div class="serendipity_imageComment_txt">editing mp3 tags</div>
</div>
<p>remarkably more stable and functional in the past month alone, I foresee this become my full time file manager.<br />
You can use Evidence in any window manager. Visit the <a href="http://evidence.sourceforge.net/" onclick="return TrackClick('http%3A%2F%2Fevidence.sourceforge.net%2F','Evidence+home+page')">Evidence home page</a> for more information.</p>
<p><span style="text-decoration: underline;"><strong>Engage and Other Applications</strong></span></p>
<p>Possibly the most popular of the new EFL applications, or at least the one asked about most frequently on various forums, Engage is a combination app launch bar, taskbar, and system tray similar to the dock in Mac&#8217;s OS X. Engage is available in two different forms: a standalone form which can be used with any window manager or a module form for use with E17. The standalone version is a bit more robust and configurable than the module form, but I have been using Engage in place of the iBar launcher recently without any troubles, and having the system tray available was quite useful in creating the Wink movies for this review.</p>
<div class="serendipity_imageComment_left" style="width: 110px;">
<div class="serendipity_imageComment_img"><a href="../../uploads/entice2.png"><img src="../../uploads/entice2.Thumbs.png" alt="" width="110" height="76" /></a></div>
<div class="serendipity_imageComment_txt">Entice</div>
</div>
<p>A number of other applications are being developed as well. Equate is a simple, themeable calculator, Entice is an excellent image viewer that allows for zooming and slide shows, Elation is a bare-bones media player, and Eclair is a music player with playlist support, similar to XMMS. Though these new EFL apps are worth keeping an eye on as development progresses, Entice is the only one I use on a regular basis.</p>
<p>On the whole, I am very happy with the new Enlightenment. On their homepage (<a href="http://www.enlightenment.org/" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','www.enlightenment.org')" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','DR17+on+Enlightenment.org')" onclick="return TrackClick('http%3A%2F%2Fwww.enlightenment.org%2F','Enlightenment+Homepage')">www.enlightenment.org</a>), the Enlightenment team states &#8220;We believe your desktop should not be an eyesore. It should be functional AND beautiful.&#8221; They are doing well on both fronts.</p>
<p><span style="font-size: large;">Misunderstruck</span><br />
<script type="text/javascript"><!--
google_ad_client = "pub-3982453702542240";
/* 468x15, created 6/24/09 */
google_ad_slot = "6181047080";
google_ad_width = 468;
google_ad_height = 15;
//-->
</script><br />
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></p>
<p><a href="http://linux-blog.org/enlightenment-17-review/" rel="bookmark">Enlightenment 17 Review</a> originally appeared on <a href="http://linux-blog.org">Yet Another Linux Blog</a> on August 22, 2005.</p>
]]></content:encoded>
			<wfw:commentRss>http://linux-blog.org/enlightenment-17-review/feed/</wfw:commentRss>
		<slash:comments>54</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Database Caching 15/40 queries in 0.440 seconds using disk: basic
Object Caching 745/748 objects using disk: basic

Served from: linux-blog.org @ 2012-05-22 20:48:24 -->
