<?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; Software</title>
	<atom:link href="http://www.quicktweaks.com/category/linux/software/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>2</slash:comments>
		</item>
		<item>
		<title>Kick ass guide for installing Oracle on Ubuntu</title>
		<link>http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/</link>
		<comments>http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/#comments</comments>
		<pubDate>Wed, 07 Jan 2009 06:35:14 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Wallpapers]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Intrepid Ibex]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=256</guid>
		<description><![CDATA[Four steps for installing Oracle on Ubuntu. Steps by steps video


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 style="text-align: left;">One of the few complaints against any Linux OS &#8211; Difficult to install software which are not in the repository or in the standard .rpm/.deb format. Windows users enjoy double clicking an executable and then clicking NEXT button few times, Mac users just need to drag that .dmg file to the Application folder. Linux users feel themselves left out and find their own way playing with the Terminal, editing different system files, copying files from here to there and finally setting up some environment variables. Whew!</p>
<p><span id="more-256"></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>After switching to Ubuntu, I tried to install Oracle but no luck until I found <a title="Installing Oracle 11g on Ubuntu Intrepid by Augusto Bott" href="http://www.pythian.com/blogs/1355/installing-oracle-11gr1-on-ubuntu-810-intrepid-ibex" target="_blank">this guide from Augusto Bott</a> . He has really written an excellent guide on installing Oracle on different versions of Ubuntu. But again with this guide also the users need to open different files and edit them manually. It isn&#8217;t that much difficult but if you are like me who often needs to reinstall/upgrade Ubuntu for one reason or other, reading the whole guide and manually editing the system files is really time consuming and cumbersome. So, to save my time for future installation of Oracle database on my Ubuntu box, I wrote a couple of scripts (four scripts to be exact). Running these four scripts will install Oracle database and will give you a fresh database to start with. To facilitate visual-learners, I&#8217;ve also made two videos which have been embedded below. I will explain how to proceed briefly below:</p>
<p>1.<a title="Download installer scripts" href="http://dl.getdropbox.com/u/83257/oraInstaller.zip" target="_blank"> Download all four scripts</a>.and unzip them</p>
<p>2. Extract Oracle database downloaded from Oracle to a folder (such as in your home folder)</p>
<p>3. Open<em><strong> 2_OraInstaller.sh</strong></em> in a text editor and change the source/destination values. The default values assume that you have extracted the Oracle installer files in ~/oracle folder and you want to install Oracle db in /opt/oracle folder.</p>
<p>4. Open <em><strong>4_OraInstaller.sh</strong></em> in a text editor and change the name of your database instance (dbSID). The default is oraIntrepid.</p>
<p>5. Fire up the Terminal and make all the files executable:</p>
<p><em><strong>$chmod 755 ./1_OraInstaller.sh</strong></em></p>
<p><em><strong>$chmod 755 ./2_OraInstaller.sh</strong></em></p>
<p><em><strong>$chmod 755 ./3_OraInstaller.sh</strong></em></p>
<p><em><strong>$chmod 755 ./4_OraInstaller.sh</strong></em></p>
<p>6. Make sure you have at least 3gb free space where you want to install your Oracle DB</p>
<p>7. Execute: $<em><strong>./1_OraInstaller.sh</strong></em></p>
<p>You need to logoff and login once</p>
<p>8. Execute: $<em><strong>./2_OraInstaller.sh</strong></em></p>
<p>This will install Oracle in silent mode. Please be patient as it will take some time and be very sure that YOU ARE CONNECTED TO THE INTERNET!!!</p>
<p>9. Execute: $<em><strong>./3_OraInstaller.sh</strong></em></p>
<p>You need to restart you computer once at this point.</p>
<p>10. Execute: $./<em><strong>4</strong><strong>_OraInstaller.sh</strong></em></p>
<p>This will install Oracle database instance in silent mode. This will take about 15 mins so be very patient.</p>
<p>At this point your Oracle installation on your Ubuntu box is complete.</p>
<p>Here are two videos showing all the above steps:</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><a href="http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/"><em>Click here to view the embedded video.</em></a></p> <p><a href="http://www.quicktweaks.com/2009/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/"><em>Click here to view the embedded video.</em></a></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/01/07/kick-ass-guide-for-installing-oracle-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CODEWEAVERS WILL BE GIVING AWAY CROSSOVER FOR FREE FOR ONE DAY</title>
		<link>http://www.quicktweaks.com/2008/10/27/codeweavers-will-be-giving-away-crossover-for-free-for-one-day/</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/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>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/" 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/" 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>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/27/codeweavers-will-be-giving-away-crossover-for-free-for-one-day/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ubuntu 8.10 RC1 is here</title>
		<link>http://www.quicktweaks.com/2008/10/23/ubuntu-810-rc1-is-here/</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.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></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" 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/wp-content/uploads/2008/10/sc1-150x150.png" alt="" width="150" height="150" /></a></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/23/ubuntu-810-rc1-is-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three easy steps to carry Ubuntu 8.10 in a pen drive</title>
		<link>http://www.quicktweaks.com/2008/10/20/three-easy-steps-to-make-a-pen/</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/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>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;"><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><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/" 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/" 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;"><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/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/20/three-easy-steps-to-make-a-pen/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Welcome a New Theme in Ubuntu 8.10</title>
		<link>http://www.quicktweaks.com/2008/10/16/welcome-a-new-theme-in-ubuntu-810/</link>
		<comments>http://www.quicktweaks.com/2008/10/16/welcome-a-new-theme-in-ubuntu-810/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 16:24:34 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Desktop]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[feel&look]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[Wallpapers]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=202</guid>
		<description><![CDATA[A new theme "Dark Room" has been added to Ubuntu 8.10. Human Theme is still the default so you need a few more clicks to get it. As the name implies, the theme is dark and looks better than the default. Have a look:


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 style="text-align: left;">A new theme &#8220;Dark Room&#8221; has been added to Ubuntu 8.10. Human Theme is still the default so you need a few more clicks to get it. As the name implies, the theme is dark and looks better than the default. Have a look:</p>
<div class="mceTemp mceIEcenter" style="text-align: left;">
<dl id="attachment_203" class="wp-caption aligncenter" style="width: 510px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-203" title="Dark Theme Screenshot" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/screenshot-3.png" alt="Better than the default" width="500" height="260" /></dt>
<dd class="wp-caption-dd">Better than the default</dd>
</dl>
</div>


<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/16/welcome-a-new-theme-in-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mozilla released Firefox 3.1 Beta1. Try it now!</title>
		<link>http://www.quicktweaks.com/2008/10/14/mozilla-released-firefox-31-beta1-try-it-now/</link>
		<comments>http://www.quicktweaks.com/2008/10/14/mozilla-released-firefox-31-beta1-try-it-now/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 20:52:12 +0000</pubDate>
		<dc:creator>ashokgelal</dc:creator>
				<category><![CDATA[Installation]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.quicktweaks.com/?p=190</guid>
		<description><![CDATA[Mozilla just released Beta1 of Firefox 3.1 browser. They haven't yet made the official announcement though.
The noticeable features include Ctrl+Tab 3D browser, faster JavaScript performance, and Open a new tab button just like Internet Explorer 7. If you want to give a try, here is how to install it:


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 style="text-align: left;">Mozilla just released Beta1 of Firefox 3.1 browser. <span style="text-decoration: line-through;">They haven&#8217;t yet made the official announcement though.</span></p>
<p style="text-align: left;">The noticeable features include Ctrl+Tab 3D navigation browser, faster JavaScript performance, and <em>Open a New Tab </em>button just like Internet Explorer 7.</p>
<p style="text-align: left;"><span id="more-190"></span></p>
<p style="text-align: left;">
<div id="attachment_194" class="wp-caption aligncenter" style="width: 510px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/firefox_b1.png"><img class="size-full wp-image-194" title="firefox 3.1 beta1 ctrl+tab 3d" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/firefox_b1.png" alt="Ctrl+Tab 3D navigation browser is a welcome feature" width="500" height="312" /></a><p class="wp-caption-text">Ctrl+Tab 3D navigation browser is a welcome feature</p></div>
<p>If you want to give a try, here is how to install it in Linux:<br />
<script type="text/javascript"><!--
google_ad_client = "pub-0816309066023726";
/* qttext468x15, created 10/13/08 */
google_ad_slot = "2596799116";
google_ad_width = 468;
google_ad_height = 15;
// --></script><br />
<script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"></script></p>
<p><code>wget ftp://ftp.mozilla.org/pub/mozilla.org/firefox/releases/3.1b1/linux-i686/en-US/firefox-3.1b1.tar.bz2</code><strong><em>Update:</em></strong> From the <a title="What's new in Firefox 3.1b1" href="https://www.mozilla.com/en-US/firefox/3.1b1/releasenotes/#whatsnew" target="_blank">official <strong><em>What&#8217;s New</em></strong> page</a>:</p>
<blockquote>
<li>Web standards improvements in the Gecko layout engine</li>
<li>Added support for CSS 2.1 and CSS 3 properties</li>
<li>A new tab-switching shortcut that shows previews of the tab you&#8217;re switching to</li>
<li>Improved control over the Smart Location Bar using special characters to restrict your search</li>
<li>Support for new web technologies such as the &lt;video&gt; and &lt;audio&gt; elements, the W3C Geolocation API, JavaScript query selectors, web worker threads, SVG transforms and offline applications.</li>
</blockquote>
<p>Don&#8217;t forget to backup your profile so that you can restore if something goes wrong.</p>
<div id="attachment_193" class="wp-caption aligncenter" style="width: 392px"><a href="http://www.quicktweaks.com/wp-content/uploads/2008/10/firefox3.png"><img class="size-full wp-image-193" title="Firefox 3.1beta1 add new tab" src="http://www.quicktweaks.com/wp-content/uploads/2008/10/firefox3.png" alt="Open a new tab button" width="382" height="196" /></a><p class="wp-caption-text">Open a new tab button</p></div>
<p>$ tar -xvf firefox-3.1b1.tar.bz2</p>
<p>$ cd firefox</p>
<p>$ ./firefox</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/14/mozilla-released-firefox-31-beta1-try-it-now/feed/</wfw:commentRss>
		<slash:comments>3</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>
	</channel>
</rss>

<!-- Dynamic page generated in 1.068 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2009-12-01 08:22:40 -->
<!-- Compression = gzip -->