<?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>Aqeel Zafar &#187; Linux</title>
	<atom:link href="http://aqeeliz.com/category/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://aqeeliz.com</link>
	<description>Personal blog of Aqeel Zafar</description>
	<lastBuildDate>Sat, 07 Jan 2012 13:21:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Setting Different Prompt for Different Konsoles</title>
		<link>http://aqeeliz.com/2011/04/setting-different-prompt-for-different-konsoles/</link>
		<comments>http://aqeeliz.com/2011/04/setting-different-prompt-for-different-konsoles/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 07:45:58 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[konsole]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=329</guid>
		<description><![CDATA[Once in a every while I get an itch to tweak my desktop, in my latest tweaking session, I ended up customizing my terminal (bash) prompt and wanting different prompts for different Konsoles (KDE terminal applcication) profiles. First one is &#8230; <a href="http://aqeeliz.com/2011/04/setting-different-prompt-for-different-konsoles/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Once in a every while I get an itch to tweak my desktop, in my latest tweaking session, I ended up customizing my terminal (bash) prompt and wanting different prompts for different Konsoles (KDE terminal applcication) profiles.</p>
<p>First one is easy, you can <a href="https://duckduckgo.com/?q=customize+bash+prompt&amp;u=aqeeliz">lots</a> of <a href="http://www.marksanborn.net/linux/adding-color-and-customize-the-bash-prompt-ps1/">posts</a> for that, you can even do it in <a href="http://osxdaily.com/2006/12/11/how-to-customize-your-terminal-prompt/">mac osx</a>, but problem is, changing value for PS1 in .bashrc, effects all terminal windows, and there is no obvious way to set-up different prompt for different profiles in Konsole. But after searching for a while, I finally figured out how to do it, thanks to #kde on freenode.net.</p>
<p>In <em>General</em> tab of Profile configuration there is a button to set <em>Environment</em> variables. These values are read before .bashrc, so setting PS1 here has no effect, so what we can do, is set another random variable here, and then in .bashrc check if the variable is set or not, in either case we can set the value of PS1 accordingly. For instance, I have set</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">AlternateKonsolePrompt=1</div></div>
<p>in <em>Environment</em> and here is the code from my .bashrc:</p>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp;</div></div>
<pre>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">PS1='[\u@\h \W]\$ '<br />
if [ -n &quot;$AlternateKonsolePrompt&quot; ]; then<br />
&nbsp; &nbsp; PS1='\w \$ '<br />
fi</div></div>
</pre>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&nbsp;</div></div>
<p>&nbsp;</p>
<p>Where the first PS1 is the default prompt, and the second one is for my profile.</p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2011/04/setting-different-prompt-for-different-konsoles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Docky &#8211; Dock Bar For Linux</title>
		<link>http://aqeeliz.com/2009/01/docky-dock-bar-for-linux/</link>
		<comments>http://aqeeliz.com/2009/01/docky-dock-bar-for-linux/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 12:31:15 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[docky]]></category>
		<category><![CDATA[gnome-do]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=234</guid>
		<description><![CDATA[After searching for a long time for a good, beautiful, easy to configure dock for Linux that can also work without compositing effects, I had finally given up, when I found out that Gnome-Do, my favorite application launcher, is going &#8230; <a href="http://aqeeliz.com/2009/01/docky-dock-bar-for-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After searching for a long time for a good, beautiful, easy to configure dock for Linux that can also work without compositing effects, I had finally given up, when I found out that <a href="http://do.davebsd.com">Gnome-Do</a>, my favorite application launcher, is going to feature a dock in it&#8217;s next release. Today, I downloaded and installed <a href="https://launchpad.net/~do-core/+archive">PPA packages</a> for Ubuntu and gave Gnome Do&#8217;s docky a try.</p>
<p><a href="http://aqeeliz.com/wp-content/uploads/2009/01/docky.png"><img class="aligncenter size-full wp-image-236" title="docky" src="http://aqeeliz.com/wp-content/uploads/2009/01/docky.png" alt="docky" width="636" height="131" /></a></p>
<p>Docky is basically a special theme of Gnome-do, to access it, you have to go in Gnome-Do Preferences -&gt; Appearance and change it&#8217;s Theme to docky. As soon as you select docky, you will notice a huge dock bar appear at the bottom of your screen. By default it shows your most used applications. If you don&#8217;t like it&#8217;s size, just take your mouse pointer to it&#8217;s vertical border and it will change into resize pointer, you can then drag it away from screen border to increase the size, and towards the screen border to decrease the size.</p>
<p>Adding and removing icons from dock is as easy as dragging an item on the dock or dragging it away, depending on you are adding or removing. Another way to add applications to dock is search for them using Gnome-Do and press the small plus sign below it. You can also right click and remove applications from it.</p>
<p>Docky also replaces usual task bar, though it is bit lacking in this front for now, but it is to be expected, as it&#8217;s still alpha quality. Currently, docky doesn&#8217;t provide a way to access different windows of same application, that is, even if you have 6 firefox windows open, it will show them as one.</p>
<p>Docky can use all plugins for Gnome-do, though there aren&#8217;t any docky specific plugins available yet (like start menu, time, systray etc.), but I am sure community will start contributing soon enough. If you are looking for a nice dock yourself, give it a try, though beware it&#8217;s still in it&#8217;s alpha quality so you might experience some crashes or unexpected behaviour, if that&#8217;s the case you should wait for it&#8217;s final release.</p>
<p>Read more about docky at it&#8217;s <a href="http://do.davebsd.com/wiki/index.php?title=Docky">gnome do wiki</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2009/01/docky-dock-bar-for-linux/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Edit File in OpenOffice.org</title>
		<link>http://aqeeliz.com/2008/11/edit-file-in-openofficeorg/</link>
		<comments>http://aqeeliz.com/2008/11/edit-file-in-openofficeorg/#comments</comments>
		<pubDate>Fri, 28 Nov 2008 07:22:26 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[openoffice]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=182</guid>
		<description><![CDATA[One of the great thing about Office software is, no matter how much you know about it, you can almost always find a feature you never knew existed. I am using OpenOffice.org for a very long time now (more than &#8230; <a href="http://aqeeliz.com/2008/11/edit-file-in-openofficeorg/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>One of the great thing about Office software is, no matter how much you know about it, you can almost always find a feature you never knew existed. I am using OpenOffice.org for a very long time now (more than couple of years), though as my usage for office applications is quite low, I can be considered an average user for these applications.</p>
<p>Yesterday, while preparing for my exam, I was reading my handouts in OpenOffice Writer, when I noticed an &#8220;Edit File&#8221; button in toolbar, which I had never noticed before (though according to the screenshots I can see on web, it has been present since always). The button is used to switch between Edit and Read-only mode. If you are only reading a document and don&#8217;t want to edit it, switching to Read-only mode makes the experience more pleasent by removing formatting toolbars and improving overall page view.</p>
<div id="attachment_185" class="wp-caption alignright" style="width: 310px"><a href="http://aqeeliz.com/wp-content/uploads/2008/11/ooo-read-only.png"><img class="size-medium wp-image-185" title="ooo-read-only" src="http://aqeeliz.com/wp-content/uploads/2008/11/ooo-read-only-300x250.png" alt="Read-only Mode" width="300" height="250" /></a><p class="wp-caption-text">Read-only Mode</p></div>
<div id="attachment_184" class="wp-caption alignleft" style="width: 310px"><a href="http://aqeeliz.com/wp-content/uploads/2008/11/ooo-edit.png"><img class="size-medium wp-image-184" title="ooo-edit" src="http://aqeeliz.com/wp-content/uploads/2008/11/ooo-edit-300x250.png" alt="" width="300" height="250" /></a><p class="wp-caption-text">Edit Mode</p></div>
<p>Edit file button can also be used to open a copy for editing, if you don&#8217;t have permissions to edit the file you are currently reading.</p>
<p>It&#8217;s not some huge feature, but if you read many documents / ebooks in OpenOffice.org, or want to edit a read-only file, it can be quite useful, and the fact that I (and few other people I know) didn&#8217;t know about such a simple feature made me write about it. It&#8217;s interesting how many people don&#8217;t know about most of the features present in such huge software. If you know any such feature which no one else seems to know, do share it with us! <img src='http://aqeeliz.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2008/11/edit-file-in-openofficeorg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Piwik + Adobe AIR = Open Source Desktop Web Analytics</title>
		<link>http://aqeeliz.com/2008/10/piwik-adobe-air-open-source-desktop-web-analytics/</link>
		<comments>http://aqeeliz.com/2008/10/piwik-adobe-air-open-source-desktop-web-analytics/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 06:58:48 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[piwik]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web analytics]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=163</guid>
		<description><![CDATA[My favourite web analytics software Piwik just got desktop integration. For those who haven&#8217;t heard of Piwik before, it&#8217;s open source web analytics software which you can host on your own server. It is still in beta, but I am &#8230; <a href="http://aqeeliz.com/2008/10/piwik-adobe-air-open-source-desktop-web-analytics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>My favourite web analytics software <a href="http://piwik.org/">Piwik</a> just got <a href="http://piwik.org/blog/2008/10/using-the-piwik-api-and-adobe-air-interesting-use-cases/">desktop integration</a>.</p>
<p>For those who haven&#8217;t heard of Piwik before, it&#8217;s open source web analytics software which you can host on your own server. It is still in beta, but I am using it for few months now and haven&#8217;t faced any problem. You can try it out using the <a href="http://piwik.org/demo">online demo on their site</a>.</p>
<p>According to Piwik blog, two desktop applications for Piwik are now available, made by piwik users. One of them, <a href="http://www.piwik-connector.com/en/">Piwik Connector</a> is a simple app that shows hourly visits on all your Piwik websites, it would be useful for people who track many sites and don&#8217;t want too much stats.</p>
<p>For power users, <a href="http://www.desktop-web-analytics.com/">Desktop Web Analytics</a> provides much more advanced view, it brings all piwik stats to your desktop. Both these software are still early in development, so, you might face couple of problems, for instance, I wasn&#8217;t even able to save my profile in Desktop Web Analytics, but the good thing is work is being done on it.</p>
<p>P.S: Forgot to mention, both these apps are developed in Adobe AIR, which means they are available on Linux, Mac &amp; Windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2008/10/piwik-adobe-air-open-source-desktop-web-analytics/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>TweetDeck &#8211; Reducing Twitter Information Overload</title>
		<link>http://aqeeliz.com/2008/10/tweetdeck-reducing-twitter-information-overload/</link>
		<comments>http://aqeeliz.com/2008/10/tweetdeck-reducing-twitter-information-overload/#comments</comments>
		<pubDate>Tue, 07 Oct 2008 06:14:42 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[adobe air]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=145</guid>
		<description><![CDATA[Yesterday I found out about new Adobe AIR Twitter client, TweetDeck, finally an application that makes it possible to cope up with information overload on twitter. TweetDeck has multi-column view, it&#8217;s first column display all latest tweets (like &#8220;home&#8221; on &#8230; <a href="http://aqeeliz.com/2008/10/tweetdeck-reducing-twitter-information-overload/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday I found out about new Adobe AIR Twitter client, <a href="http://www.tweetdeck.com/">TweetDeck</a>, finally an application that makes it possible to cope up with information overload on twitter.</p>
<p>TweetDeck has multi-column view, it&#8217;s first column display all latest tweets (like &#8220;home&#8221; on twitter.com). Other columns can contain replies, direct messages, groups (tweets from selected people), searches and latest <a href="http://www.twitscoop.com/">twitscoop</a>. Of course if you like traditional twitter clients, you can close these other columns, but then you will not be using it&#8217;s full potential.</p>
<p>TweetDeck also features a &#8220;timeframe&#8221; feature, which allows user to filter tweets by time since posted, from last 1 hour to 48 hours, this can be very useful in filtering already read tweets and eliminating noise. All tweets are stored on local database, which also allows user to browse them while offline, any tweet posted or DM posted in that time are posted when back online.</p>
<p>TweetDeck is currently a beta, and even though it&#8217;s version is 0.18, it&#8217;s very functional and I haven&#8217;t encountered any bug yet. So, if you, like me have been overwhelmed by too much information on twitter and want to ease the load, give TweetDeck a try.</p>
<p>Now all that is remaining is to find a good feed aggregator!</p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2008/10/tweetdeck-reducing-twitter-information-overload/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Urban Terror &#8211; First Person Shooter</title>
		<link>http://aqeeliz.com/2008/10/urban-terror-first-person-shooter/</link>
		<comments>http://aqeeliz.com/2008/10/urban-terror-first-person-shooter/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 17:50:42 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[first person shooters]]></category>
		<category><![CDATA[games]]></category>
		<category><![CDATA[urban terror]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=129</guid>
		<description><![CDATA[Since I have switched completely to linux, I am always on the look out for native linux games. A genre that is very easily available on linux is First Person Shooters. There are many good quality multiplayer FPS games available &#8230; <a href="http://aqeeliz.com/2008/10/urban-terror-first-person-shooter/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Since I have switched completely to linux, I am always on the look out for native linux games. A genre that is very easily available on linux is First Person Shooters. There are many good quality multiplayer FPS games available on linux, most of these are based on Quake 3 engine, resulting in very good quality even on little older machines.</p>
<p>Even though I used to think all these FPS games are similar to each, they offer very different game play from each other, so, I started the quest to try all of them out. Let&#8217;s start with my favorite (for now):</p>
<h3><a href="http://www.urbanterror.net/">Urban Terror</a>:</h3>
<p>Urban Terror is a modern reality based multiplayer FPS. According to their homepage:</p>
<p style="padding-left: 30px;"><span style="font-size: small;">Urban Terror</span><span style="font-size: small;"> can be described as a Hollywood tactical shooter; somewhat realism based, but the motto is &#8220;fun over realism&#8221;. This results in a very unique, enjoyable and addictive game.</span></p>
<p>In game, everyone carries knife and handgun (Beretta or Desert Eagle), other than that, you have 6 available inventory slots, 2 for weapons, 1 for grenades and 3 for other accessories (Kevlar vest, helmet, silencer, laser sight, med-pack, extra ammo etc.), out of these 6, you can only use 4 at one time, so, you should choose the weapons/accessories which suits your style of playing and current scenario. Health system also has a touch of reality to it, once you get shot that part of the body starts bleeding, and loses health until you (or your teammate) bandages it. Stamina depends on remaining health, so, if you are low on health, you might not be able to sprint much.</p>
<p style="text-align: center;"><a href="http://aqeeliz.com/wp-content/uploads/2008/10/urbanterror.jpg"><img class="size-medium wp-image-133 aligncenter" title="urbanterror" src="http://aqeeliz.com/wp-content/uploads/2008/10/urbanterror-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Urban Terror offers different game modes, including Bomb (Red team plants bomb at one of two pre-defined position, blue team has to defend those by either defusing bomb or killing all members of Red team) Free For All (FFA &#8211; Shoot everyone, the one with most frags win), Catch the Flag (CTF &#8211; Catch other teams flag and take it to your flag to score a point), Catch and Hold (C&amp;H &#8211; map has many flags, touch one to change it to your color, you get a point for every minute you hold a flag), Team Deathmatch (TDM &#8211; Kill member of other team, the team with more score wins) &amp; Team Survivor (TS &#8211; Same as TDM but once kill, you don&#8217;t re-spawn till the end of the round). You can read more about these in <a href="http://www.urbanterror.net/new_urt_manual/#Game_mode_information" target="_self">Urban Terror manual</a>.</p>
<p>Urban Terror is a standalone Quake III Arena mod, though if you already have Quake III Arena, you can just install it as it&#8217;s mod, it is available on Linux, Macintosh &amp; Windows. Image is taken from <a href="http://www.urbanterror.net/e107_plugins/autogallery/autogallery.php" target="_self">screenshots</a> section on <a href="http://www.urbanterror.net/" target="_self">UrbanTerror.net</a></p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2008/10/urban-terror-first-person-shooter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Atheros AR5007EG on Linux</title>
		<link>http://aqeeliz.com/2008/09/atheros-ar5007eg-on-linux/</link>
		<comments>http://aqeeliz.com/2008/09/atheros-ar5007eg-on-linux/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 15:47:42 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=108</guid>
		<description><![CDATA[Update 2008-09-26: Fixed the link to madwifi package. In my previous post about Sony Vaio&#8217;s hardware compatibility with Linux, I linked to ubuntuforums for a howto of installing Atheros AR5007EG wireless driver. Apparently it is not available any longer, so, &#8230; <a href="http://aqeeliz.com/2008/09/atheros-ar5007eg-on-linux/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><strong>Update 2008-09-26:</strong> Fixed the link to madwifi package.</p>
<p>In my previous post about <a href="http://aqeeliz.com/2008/06/02/linux-on-sony-vaio-vgn-nr220e/" target="_self">Sony Vaio&#8217;s hardware compatibility with Linux,</a> I linked to ubuntuforums for a howto of installing Atheros AR5007EG wireless driver. Apparently it is not available any longer, so, I am posting the steps that worked for me.</p>
<p><strong>Note:</strong> This howto is for 32bit systems, for 64bit, check this <a href="http://ubuntuforums.org/showthread.php?t=816780" target="_self">post on ubuntuforums</a>.</p>
<p>First configure the system for compiling madwifi driver (these steps are ubuntu specific).</p>
<ol>
<li>Make sure restricted drivers are disabled by unchecking atheros drivers from System -&gt; Administration -&gt; Hardware Drivers</li>
<li>Install necessary packages for compiling, if you don&#8217;t have them already. From terminal:<br />
<blockquote>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">sudo apt-get update &amp;amp;&amp;amp; sudo apt-get install build-essential</div></div>
</blockquote>
</li>
</ol>
<p>Now, to actual installation of the driver. These steps should work on any distro, just open the terminal and enter those commands.</p>
<ol>
<li>Get latest snapshot of madwifi from <a href="http://snapshots.madwifi.org">http://snapshot.madwifi.org</a><br />
<blockquote>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;span style=&quot;text-decoration: line-through;&quot;&gt;wget -c http://snapshots.madwifi.org/special/madwifi-ng-r3366+ar5007.tar.gz&lt;/span&gt;<br />
wget -c http://snapshots.madwifi.org/madwifi-hal-0.10.5.6-current.tar.gz</div></div>
</blockquote>
</li>
<li>Untar the downloaded file<br />
<blockquote>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">tar zxvf madwifi-hal-0.10.5.6-current.tar.gz</div></div>
</blockquote>
</li>
<li>cd into directory and compile the driver (directory name might be different for you)<br />
<blockquote>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">cd madwifi-hal-0.10.5.6-current<br />
make &amp;amp;&amp;amp; sudo make install</div></div>
</blockquote>
</li>
<li>Load the modules<br />
<blockquote>
<div class="codecolorer-container text twitlight" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">modprobe ath_pci</div></div>
</blockquote>
</li>
</ol>
<p>You should now be able to view and connect to wireless connections now. If it works fine add &#8220;ath_pci&#8221; (without quotes) in /etc/modules, so that you don&#8217;t have to manually load these files on every boot.</p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2008/09/atheros-ar5007eg-on-linux/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Linux File System &#8211; Part 2</title>
		<link>http://aqeeliz.com/2008/09/linux-file-system-part-2/</link>
		<comments>http://aqeeliz.com/2008/09/linux-file-system-part-2/#comments</comments>
		<pubDate>Sat, 13 Sep 2008 14:38:59 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[file systems]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=94</guid>
		<description><![CDATA[Let&#8217;s continue where I left my previous post on Linux file system, with information on different file systems commonly present in most distributions and small comparison between them. ext2: ext2 (or second extended file system) is the oldest file system &#8230; <a href="http://aqeeliz.com/2008/09/linux-file-system-part-2/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s continue where I left my previous post on <a title="Linux File System" href="http://aqeeliz.com/2008/09/01/linux-file-systems/">Linux file system</a>, with information on different file systems commonly present in most distributions and small comparison between them.</p>
<h3>ext2:</h3>
<p>ext2 (or second extended file system) is the oldest file system for Linux still in use, and until recently one of the most famous. It was created to overcome the limitations of original ext file system (first file system for Linux).</p>
<p>ext2 is not a journaling file system and is not used by desktop users these days, but it&#8217;s still one of the most compatible and tested file system for Linux present.</p>
<h3>ext3:</h3>
<p>ext3 is the successor of ext2 and allows in-place upgrade from ext2. Main difference between the two is addition of journaling in ext3. As ext3 is basically just ext2 with some additional features, it can also be mounted as ext2, though doing so removes the advantage of ext3 file system. In other words, ext3 is backward-compatible. It also provides great compatibility with other operating systems, like windows, that is, you can mount ext3 (and ext2) partitions in Windows using utility.</p>
<p>ext3 provides three different level of journaling:</p>
<ul>
<li>Journal</li>
<li>Ordered</li>
<li>Writeback</li>
</ul>
<p>With &#8220;journal&#8221; offering maximum journaling (both meta-data and user-data), and &#8220;writeback&#8221; offering minimal journaling (only meta-data). Default journaling level is &#8220;ordered&#8221;, which is meta-data only journaling but which makes sure that data is written to disk before committing to journal (a precaution not taken in &#8220;writeback&#8221;), which save from data-corruption.</p>
<h3>ReiserFS:</h3>
<p>ResiserFS is also a journaled file system, but unlike ext3 it provides only meta-data journaling. It was introduced before ext3 and is the first journaling file system for Linux, though ext3, JFS and XFS very soon followed.</p>
<p>Even though ReiserFS is much faster than ext3, it is sometimes not preferred over other file systems. One of that reason was given by SUSE, when they changed their default file system from ReiserFS to ext3. According to them, ReiserFS doesn&#8217;t scale very well on multiple core systems as the critical sections are executed on only one core at a time.</p>
<p>Work on it&#8217;s successor Reiser4 is going on, and it has been announced that no new features will be added in ReiserFS. And as Reiser4 won&#8217;t feature in-place upgrade from ReiserFS (meaning all data will be lost on partition when upgrading), it has also turned down some ReiserFS users.</p>
<h3><a title="XFS" href="http://oss.sgi.com/projects/xfs/" target="_self">XFS</a>:</h3>
<p>XFS is another journaling file system and like ReiserFS, it only supports meta-data journaling. It is one of the oldest journaling file system for UNIX, which was later ported to Linux.</p>
<p>On average XFS&#8217; performance is not much different from ReiserFS, though where ReiserFS&#8217; provides great speed when dealing with smaller files, XFS is much better with large files.</p>
<p>Like all other file systems, XFS has it&#8217;s own disadvantages too, deleting files is slower than other file systems, and creating/deleting directories also takes more time. XFS also has no un-delete utility, which makes it almost impossible to recover any data once it is deleted (there appears to be <a href="http://linuxwebdev.blogspot.com/2005/06/xfs-undelete-howto-how-to-undelete.html" target="_self">one way</a> to do it, if you are desperate enough). Also XFS file system can not be shrunk (it&#8217;s size can be increased though).</p>
<p>There is no utility to mount XFS file system under windows. There used to be crossmeta drivers that allowed read/write support in windows, but it isn&#8217;t available anymore, even when it was available, it was supposed to be quite buggy.</p>
<h3><a title="JFS" href="http://jfs.sourceforge.net/" target="_self">JFS</a>:</h3>
<p>JFS (Journaling File System) is one of the lesser known file system. Like XFS it has been around quite some and then later ported to linux. It offers meta-data journaling, similar to that of XFS and ext3&#8242;s &#8220;writeback&#8221;.</p>
<p>I haven&#8217;t tried JFS yet, but according to reviews and others I have checked with, it provides good speed and reliability. Also, it works efficiently even under high load, and doesn&#8217;t use too much CPU in these cases, which makes it preferred file system in cases when CPU efficiency is required, though it is not as widely supported by Linux distributions as the other file systems mentioned here.</p>
<p>I couldn&#8217;t find any utility or information to mount JFS under windows, most probably there isn&#8217;t one.</p>
<h3>Conclusion:</h3>
<p>All file systems have different advantages and disadvantages and is useful in particular scenario. ext2 is best to use when installing Linux on flash disk. ext3 provides better data recovery option than other file systems so, it&#8217;s preferred to use it for /boot or / (root). Either ext3 or ReiserFS can be used to share partition with windows installtion on same computer. XFS is good to use for large parition which contains large files, like movie collection, backup data etc. Whereas JFS can be used pretty much anywhere, preferablly on partition which contains both large and small files and when that system doesn&#8217;t dual-boot with windows.</p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2008/09/linux-file-system-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux File Systems</title>
		<link>http://aqeeliz.com/2008/09/linux-file-systems/</link>
		<comments>http://aqeeliz.com/2008/09/linux-file-systems/#comments</comments>
		<pubDate>Mon, 01 Sep 2008 08:07:37 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[file systems]]></category>
		<category><![CDATA[journaling]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=89</guid>
		<description><![CDATA[File system is a system to store and access the files (and directories) on any computer. Usually users don&#8217;t have to worry about which file system they are using, operating systems take care of it all. Though knowing their strength &#8230; <a href="http://aqeeliz.com/2008/09/linux-file-systems/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>File system is a system to store and access the files (and directories) on any computer. Usually users don&#8217;t have to worry about which file system they are using, operating systems take care of it all. Though knowing their strength and weaknesses can sometimes help one to choose better option depending on the scenario.</p>
<p>There are many file systems present, suitable for different needs and can be categorized in many different categories, though we aren&#8217;t going to discuss them all here (if you are interested, you can check the <a href="http://en.wikipedia.org/wiki/List_of_file_systems">list of all file system</a>). In most Linux distributions, there is option to choose from two to five different file systems, which can be classified in two general categories:</p>
<ul>
<li>Journaled (or journaling) File System</li>
<li>Non-journaled File System</li>
</ul>
<h3>Journaling File System:</h3>
<p>Journaling file systems makes a log (or journal) of all the changes made before they are written to disk. This is helpful when system crash or power failure may cause loss of some data, while the changes are still being written to disk. In such case, system compares the disk state with journal, and update the disk where required, resulting in data recovery.</p>
<p>Every file has two parts, data and meta data. Data (or user data) is everything present in the file, that is, in case of text file it will be all the text present in file, for music file, it will be the music etc. whereas, meta data is data about data, like when was file last accessed, modified or created. Title of the song and artist information for music file and author information stored by some office programs is also meta-data.</p>
<p>This brings us to a sub-category of journaled file system.</p>
<ul>
<li>Meta-data Journaling</li>
</ul>
<p>As the name implies, meta data journaling file systems only log the meta data of the file and not the user data. It provides better performance then complete journaling file system, but doesn&#8217;t provide full data recovery options.</p>
<h3>Non-journaled File System:</h3>
<p>Non-journaled file system are those which doesn&#8217;t provide journaling. Which means in case of system crash or power failure, there are chances of data getting corrupt. It also means data is written just once (as it doesn&#8217;t have to written to the journal) there are fewer read/write operations on disk compared to journaled file system, which makes it preferable to use on flash drives and other solid-state drives, which can increase their life span.</p>
<p>That&#8217;s all for now, in next post I will provide comparison of different file systems for linux.</p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2008/09/linux-file-systems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux on Acer Aspire 5720</title>
		<link>http://aqeeliz.com/2008/08/linux-on-acer-aspire-5720/</link>
		<comments>http://aqeeliz.com/2008/08/linux-on-acer-aspire-5720/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 04:41:42 +0000</pubDate>
		<dc:creator>Aqeel</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[acer aspire 5720]]></category>
		<category><![CDATA[notebook]]></category>

		<guid isPermaLink="false">http://aqeeliz.com/?p=70</guid>
		<description><![CDATA[Due to some personal problems, I had to swap my notebook (Sony VAIO) with my brother&#8217;s (Acer Aspire 5720, also known as TravelMate 5720), for a month. So, like any honorable linux geek, I didn&#8217;t waste any time and installed &#8230; <a href="http://aqeeliz.com/2008/08/linux-on-acer-aspire-5720/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Due to some personal problems, I had to swap my notebook (Sony VAIO) with my brother&#8217;s (<a href="http://global.acer.com/products/notebook/as5720.htm">Acer Aspire 5720</a>, also known as TravelMate 5720), for a month. So, like any honorable linux geek, I didn&#8217;t waste any time and installed linux &#8211; <a href="http://ubuntu.com">Ubuntu</a> 8.04 &#8211; on it.</p>
<h3>Hardware:</h3>
<ul>
<li><strong>VGA:</strong> Intel X3100</li>
<li><strong>Audio:</strong> Intel 82801H HDA (ICH8 Family), builtin microphone</li>
<li><strong>Modem:</strong> Conexant</li>
<li><strong>Ethernet: </strong>Broadcom NetLink BCM5787M Gigabit Ethernet</li>
<li><strong>Wireless:</strong> Intel PRO/Wireless 3945abg Network Connection</li>
<li><strong>Special Keys:</strong> FN keys, volume control, hotkeys (wireless, bluetooth &amp; two editable keys), euro sign, dollar sign</li>
<li><strong>Misc:</strong> Card Reader, Bluetooth, InfraRed</li>
</ul>
<h3>What Works:</h3>
<p>I really love it when everything just works, and with Aspire 5720, everything really does, well atleast all the important stuff anyway. VGA, audio, ethernet, FN keys, volume control, wireless, bluetooth and power saving options (hibernate and suspend) works out of the box.</p>
<h3>What Doesn&#8217;t Work:</h3>
<ul>
<li><strong>Modem:</strong> Unfortunately, soft-modems are still a weak point for linux, though, fewer and fewer people use dialup connections now, so, it&#8217;s not much of a problem. If you really want a driver, you can get it from <a href="http://linuxant.com">linuxant.com</a>, for a suitable price ofcourse.</li>
<li><strong>Programmable Hot keys:</strong> These hot keys don&#8217;t work out of the box, and I couldn&#8217;t find any way to make them work in my quick google search.</li>
</ul>
<h3>Couldn&#8217;t Try Completely:</h3>
<ul>
<li><strong>Wireless:</strong> Intel PRO/Wireless 3945abg is fully supported in linux, and according to many reports works out of the box in ubuntu but I wasn&#8217;t able to check that because my wireless router is out of order.</li>
<li><strong>InfraRed:</strong> I don&#8217;t have any infrared device, so, didn&#8217;t check it either.</li>
</ul>
<h3>Conclusion:</h3>
<p>I don&#8217;t have vast experience with notebooks, I have only tried a few, but out of these all Acer Aspire 5720 offers most hardware compatibility with linux. So, if you are looking for a nice laptop to use with linux, I would definately vote for this machine.</p>
]]></content:encoded>
			<wfw:commentRss>http://aqeeliz.com/2008/08/linux-on-acer-aspire-5720/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

