<?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>Ubuntu Guy</title>
	<atom:link href="http://ubuntuguy.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ubuntuguy.com</link>
	<description>Ubuntu tips and tricks from a random guy</description>
	<lastBuildDate>Tue, 03 Jan 2017 04:49:52 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Mounting disks without root permissions</title>
		<link>http://ubuntuguy.com/uncategorized/mounting-disks-without-root-permissions/</link>
		<comments>http://ubuntuguy.com/uncategorized/mounting-disks-without-root-permissions/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 13:55:45 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[Random stuff]]></category>
		<category><![CDATA[fat32]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[ntfs]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=73</guid>
		<description><![CDATA[A very common problem in a default Ubuntu installation &#8211; especially if you have windows disks in your pc &#8211; is that the system mounts disks with root permissions, which makes things a little harder. By harder I mean you can&#8217;t easily modify or delete files, etc. The solution is easy, we need to tell [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>A very common problem in a default Ubuntu installation &#8211; especially if you have windows disks in your pc &#8211; is that the system mounts disks with root permissions, which makes things a little harder. By harder I mean you can&#8217;t easily modify or delete files, etc.<br />
The solution is easy, we need to tell Ubuntu to mount the disk using the permissions of our user account. Here is how we can do it:</p>
<h3>Determine uid of my user</h3>
<p>First of all we need to know the uid (user ID) of our user. Open a terminal and give this command:</p>
<p><code>id -u $USER</code></p>
<p>This will output a number(usually this will be 1000). Keep this number and let&#8217;s go to the next step:</p>
<h3>Set fstab to mount the disk as the current user</h3>
<p>First of all open the /etc/fstab configuration file as root:</p>
<p><code>gksu gedit /etc/fstab</code></p>
<p>You will see something like that:</p>
<p><quote>UUID=3C1850B51850703E	/media/disk	vfat	defaults	0	0</quote></p>
<p>Change the defaults to this:</p>
<p><quote>UUID=3C1850B51850703E	/media/disk	vfat	user,uid=1000,utf8	0	0</quote></p>
<p>Where 1000 is your actual userID. We are done, now every time you login the disk will be accessible from your account. In case your disk is NTFS this wont work, but there is another solution which is actually the simpler one:</p>
<h3>Configuring through graphical interface</h3>
<p>Install ntfs-config by <a href="apt:ntfs-config">clicking here</a>, or by executing the above command:</p>
<p><code>sudo apt-get install ntfs-config</code></p>
<p>Then execute the program by executing:</p>
<p><code>gksu ntfs-config</code></p>
<p>Click on both the options, and you are done <img src="http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/uncategorized/mounting-disks-without-root-permissions/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to install Google Chrome (Chronium) in Ubuntu 9.10</title>
		<link>http://ubuntuguy.com/how-to/how-to-install-google-chrome-chronium-in-ubuntu-9-10/</link>
		<comments>http://ubuntuguy.com/how-to/how-to-install-google-chrome-chronium-in-ubuntu-9-10/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 13:00:22 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[chronium]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=69</guid>
		<description><![CDATA[Lately I had a few crashes in Firefox, plus the browser was really slow at some sites. Anyway Chrome for linux is stable at the moment, and even that it is a little buggy (still on beta) it worths a try. To be honest I&#8217;ve switched to Chronium(Chrome for linux) to all my pcs as [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Lately I had a few crashes in Firefox, plus the browser was really slow at some sites. Anyway Chrome for linux is stable at the moment, and even that it is a little buggy (still on beta) it worths a try. To be honest I&#8217;ve switched to Chronium(Chrome for linux) to all my pcs as it is super fast, and I use Firefox only when I need to use some plugin.</p>
<h3>Installing Google Chrome in Ubuntu</h3>
<p>The installation process is very simple. Open a terminal window (Applications->Accessories->Terminal) and do the above:</p>
<p>1. The first step is to update the sources list. Enter this command:</p>
<p><code>gksu gedit /etc/apt/sources.list</code></p>
<p>and add the above lines to the end of that file:</p>
<p><code><br />
#Google Chrome<br />
deb http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main<br />
deb-src http://ppa.launchpad.net/chromium-daily/ppa/ubuntu karmic main<br />
</code></p>
<p>2. Save the file and exit the program, and then add the GPG keys by running this command:</p>
<p><code>sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 0xfbef0d696de1c72ba5a835fe5a9bf3bb4e5e17b5</code></p>
<p>3. Now we need to update our system:</p>
<p><code>sudo apt-get update</code></p>
<p>4. For the end we need to install the Chrome browser:</p>
<p><code>sudo apt-get install chromium-browser</code></p>
<p>One thing that may look bad to you, is that Chrome uses its own blue theme which looks very ugly with Ubuntu&#8217;s earth colors. In case you want to change that, go to the options menu and select the GTK theme from the Personal Stuff tab.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/how-to/how-to-install-google-chrome-chronium-in-ubuntu-9-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to force ubuntu to check hard disks on startup</title>
		<link>http://ubuntuguy.com/how-to/how-to-force-ubuntu-to-check-hard-disks-on-startup/</link>
		<comments>http://ubuntuguy.com/how-to/how-to-force-ubuntu-to-check-hard-disks-on-startup/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 14:36:16 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[drivers]]></category>
		<category><![CDATA[e2fsck]]></category>
		<category><![CDATA[ext4]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=66</guid>
		<description><![CDATA[Today I have converted my laptop&#8217;s hard disk to ext4 and I wanted to perform a hard disk check just to be sure that everything was ok. As you may know there is a tool called e2fsck that checks hard disks for problems, but this will work best on an unmounted partition so I really [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Today I have converted my laptop&#8217;s hard disk to ext4 and I wanted to perform a hard disk check just to be sure that everything was ok.</p>
<p>As you may know there is a tool called e2fsck that checks hard disks for problems, but this will work best on an unmounted partition so I really wanted to force Ubuntu to check the disks on boot.</p>
<p>Anyway to do that there are two ways. The hard one that involves the use of the tune2fs command and the easy one which is this:</p>
<p><code>sudo touch /forcefsck</code></p>
<p>I know it is funny how easy are things some times <img src="http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p>For the record I performed a boot benchmark with ext3 and ext4 and the results are kind of funny. With ext3 file system and ext3 drivers (/etc/fstab) my Toshiba satellite laptop booted in 54 seconds. With ext3 file system and ext4 drivers it took 47 seconds and with ext4 drivers and file system 48 sec!</p>
<p>I know it sounds funny but &#8211; according to the documentation &#8211; converting your file system to ext4 wont affect the files already present in the disk, but only the files that are going to be written later. So I will have to wait for a kernel update in order to check it again <img src="http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/how-to/how-to-force-ubuntu-to-check-hard-disks-on-startup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;WARNING&#8221; &#8211; Linux commercial</title>
		<link>http://ubuntuguy.com/uncategorized/warning-linux-commercial/</link>
		<comments>http://ubuntuguy.com/uncategorized/warning-linux-commercial/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 20:21:23 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[Random stuff]]></category>
		<category><![CDATA[commercial]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=63</guid>
		<description><![CDATA[Ok I know this is a little bit old one but is one of the coolest linux related commercials I have ever seen. Enjoy gaziantep evden eve taşımacılık gaziantep evden eve taşımacılık]]></description>
				<content:encoded><![CDATA[<p>Ok I know this is a little bit old one but is one of the coolest linux related commercials I have ever seen. Enjoy <img src="http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/LAr3XbqUbjo&#038;hl=en&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/LAr3XbqUbjo&#038;hl=en&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object><br />
<span style="color: #ffffff;"><a title="gaziantep evden eve taşımacılık" href="http://gaziantepevdeneve.net/" rel="dofollow"><span style="color: #ffffff;">gaziantep evden eve taşımacılık</span></a></span><br />
<span style="color: #ffffff;"> <a title="gaziantep evden eve taşımacılık" href="http://gaziantep-evdeneve.com/ " rel="dofollow"><span style="color: #ffffff;">gaziantep evden eve taşımacılık</span></a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/uncategorized/warning-linux-commercial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The lazy way to LAMP</title>
		<link>http://ubuntuguy.com/how-to/the-lazy-way-to-lamp/</link>
		<comments>http://ubuntuguy.com/how-to/the-lazy-way-to-lamp/#comments</comments>
		<pubDate>Sat, 16 May 2009 10:49:46 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[LAMP]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=59</guid>
		<description><![CDATA[Most web developers need a LAMP development server to deploy and test their apps. With Ubuntu &#8211; and any other linux &#8211; that is very easy. So in Ubuntu you can install a LAMP server just by running this command: sudo apt-get install apache2 php5 libapache2-mod-php5 mysql-server libapache2-mod-auth-mysql php5-mysql phpmyadmin This way you have a [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Most web developers need a LAMP development server to deploy and test their apps. With Ubuntu &#8211; and any other linux &#8211; that is very easy. So in Ubuntu you can install a LAMP server just by running this command:</p>
<blockquote><p>sudo apt-get install apache2 php5 libapache2-mod-php5 mysql-server libapache2-mod-auth-mysql php5-mysql phpmyadmin</p></blockquote>
<p>This way you have a full working LAMP server. Now if you need additional php extensions just open the Synaptics package manager (System -&gt; Administration -&gt; Synaptics Manager) and search for &#8220;php&#8221;, this will give you all the available options.</p>
<h3>Configuration files</h3>
<p>In case you need to play with the configuration you can check the above paths that hold the configuration files for the servers we just installed:</p>
<blockquote><p>/etc/mysql/my.cnf</p>
<p>/etc/apache2/</p>
<p>/etc/php5/apache2/</p></blockquote>
<h3>Starting, stoping and restarting servers</h3>
<p>Our servers (apache and mysql) by default will start any time you boot so there is no need to start them. But when you change something in the configuration files you need to restart them in order to get the new directives. The way to do that is the following:</p>
<blockquote><p>sudo /etc/init.d/apache2 restart</p>
<p>sudo /etc/init.d/mysql restart</p></blockquote>
<p>In the above commands if you replace the &#8220;restart&#8221; with &#8220;stop&#8221; or &#8220;start&#8221; you can stop or start the server.</p>
<h3>Making the environment more friendly</h3>
<p>The Apache web server by default will run as www-data. This will lead you to many permission problems, and as this is your development machine, you don&#8217;t really care about security. The easiest way to work around this is by changing the user that Apache runs. Open the envvars configuration file:</p>
<blockquote><p>gksu gedit /etc/apache2/envvars</p></blockquote>
<p>And then replace the www-data (in the APACHE_RUN_USER and APACHE_RUN_GROUP directives)  with your username and group (usually it is the same)</p>
<p>Then you will need to give full access to your user for the doc root path. You can do that by executing this:</p>
<blockquote><p>sudo chown -R USER:GROUP /var/www/</p></blockquote>
<p>Again you should replace USER with your username and GROUP with the group that you belong to.</p>
<p>After that you need one more little adjustment to make phpmyadmin work with this new configuration. Execute this:</p>
<blockquote><p>gksu gedit  /var/lib/phpmyadmin/blowfish_secret.inc.php</p></blockquote>
<p>and copy the $cfg[&#8216;blowfish_secret&#8217;] = &#8216;&#8230;. line. You will need to paste it in the end of this file: /etc/phpmyadmin/config.inc.php</p>
<h3>Our LAMP server is ready!</h3>
<p>Now that you are ready you can start using your LAMP server. Visit http://localhost/ to visit it from your browser or visit http://localhost/phpmyadmin to administer the mySQL server.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/how-to/the-lazy-way-to-lamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The easiest way to try Ubuntu</title>
		<link>http://ubuntuguy.com/how-to/the-easiest-way-to-try-ubuntu/</link>
		<comments>http://ubuntuguy.com/how-to/the-easiest-way-to-try-ubuntu/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 13:31:11 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[installation]]></category>
		<category><![CDATA[live CD]]></category>
		<category><![CDATA[usbuntu]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=54</guid>
		<description><![CDATA[As Ubuntu is going more into mainstream, many people around the world want to try this great operating system, but not many of them actually want to install it on their hard drives just for a preview or they are just afraid of that as an inexperienced user could possibly harm a system by doing [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>As Ubuntu is going more into mainstream, many people around the world want to try this great operating system, but not many of them actually want to install it on their hard drives just for a preview or they are just afraid of that as an inexperienced user could possibly harm a system by doing so.</p>
<p>The linux community partially fixed that in the past when <a href="http://www.knoppix.org/">Knoppix</a> released as a live CD and of course this is something that now is available for every major linux distribution including Ubuntu. Trying linux with a live CD is cool but you can&#8217;t add new software or play with it as with a real environment (write data, etc.)</p>
<p>This can be fixed by using a live USB portable drive installation. This way you can store your data, and actually you can get your system wherever you go <img src="http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /> So let me introduce you to&#8230;</p>
<h3>uSbuntu live creator</h3>
<p><a href="http://www.slym.fr/?p=113">uSbuntu live creator</a> is a lightweight application created by <a href="http://www.slym.fr/">Slÿm</a>, a 24 years old French dude. This nice piece of software works under Windows (XP, 2003 and Vista) and creates bootable USB drives using an Ubuntu ISO image or a CD Rom. Alternatively uSbuntu can download an Ubuntu image for you.</p>
<div id="attachment_55" style="width: 452px" class="wp-caption aligncenter"><img class="size-full wp-image-55" title="usbuntu screenshot" src="http://ubuntuguy.com/wp-content/uploads/2009/03/usbuntu-screenshot.jpg" alt="usbuntu screenshot" width="442" height="723" />,<p class="wp-caption-text">usbuntu screenshot</p></div>
<p>After the installation, you just have to change the boot order in BIOS (usually F12 or Del during boot start) and then you can boot with your new Ubuntu installation. The speed of the installation depends on your drive and USB bus, and it can&#8217;t be as fast as a normal installation but it is sure that you will be able to check Ubuntu in a better way than a live CD. The only I think I couldn&#8217;t do till now with a live USB installation is to upgrade the kernel which is of course something that you wont need to do while you are testing the operating system <img src="http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p><a href="http://usbuntu.slym.fr/uSbuntu%20Live%20Creator.zip">You can download uSbuntu live creator from here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/how-to/the-easiest-way-to-try-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transmission, a lightweight bit torrent client for linux</title>
		<link>http://ubuntuguy.com/applications/transmission-a-lightweight-bit-torrent-client-for-linux/</link>
		<comments>http://ubuntuguy.com/applications/transmission-a-lightweight-bit-torrent-client-for-linux/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 00:48:23 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[bit torrent]]></category>
		<category><![CDATA[transmission]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=50</guid>
		<description><![CDATA[Transmission is a lightweight but yet very powerful bit torrent client that you can use with any operating system besides windows. The cool thing about transmission is that it is full of features (web interface, cli support, encryption support, global and per torrent limits, etc) while it uses minimal system resources &#8211; it is written [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.transmissionbt.com/">Transmission</a> is a lightweight but yet very powerful bit torrent client that you can use with any operating system besides windows. The cool thing about transmission is that it is full of features (web interface, cli support, encryption support, global and per torrent limits, etc) while it uses minimal system resources &#8211; it is written in C &#8211; and has a very easy to understand interface.</p>
<p>Since Hardy Heron <a href="http://torrentfreak.com/transmission-bittorrent-client-ubuntu-080130/">Transmission is the default bit torrent client</a> for Ubuntu, but at least in the Intrepid release the package is outdated as the 1.34 release is used. While I write this the 1.51 is the latest stable release which is included in the Jaunty Jackalope repositories.</p>
<h3>Keeping transmission to the latest stable version</h3>
<p>If you want to use the new features of Transmission in your pre Jaunty Ubuntu here is what you have to do. First of all we need to add the new repositories to your <strong>/etc/apt/sources.list</strong> file. This will tell Ubuntu to look for newer versions of software we have installed there too.</p>
<p>1) To do so we need to open a terminal (Applications-&gt; accesories-&gt; terminal) and give the above command:</p>
<blockquote><p>gksu gedit /etc/apt/sources.list</p></blockquote>
<p>2) Now add in the end of the text the above lines and save it:</p>
<blockquote><p><code>deb http://ppa.launchpad.net/transmissionbt/ubuntu intrepid main<br />
deb-src http://ppa.launchpad.net/transmissionbt/ubuntu intrepid main</code></p></blockquote>
<p>If you are using Hardy Heron replace intrepid with hardy, or if you are using 9.04 replace it with jaunty.</p>
<p>3) In the terminal give the above commands:</p>
<blockquote><p><code>gpg --keyserver keyserver.ubuntu.com --recv 976b5901365c5ca1<br />
gpg --export --armor 976b5901365c5ca1 | sudo apt-key add -</code></p></blockquote>
<p>4) We are almost done. Give this last set of commands in your terminal and your transmission will be upgraded to the latest stable release:</p>
<blockquote><p>sudo apt-get update &amp;&amp; sudo apt-get upgrade</p></blockquote>
<p>Now we are done. If you are asking yourself if that actually worths the effort, I can assure you that trasmission 1.51 is much better than the 1.34 that Ubuntu 8.10 has and I think that it is also much faster too.</p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/applications/transmission-a-lightweight-bit-torrent-client-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Link love Tuesday 2009-02-03</title>
		<link>http://ubuntuguy.com/uncategorized/link-love-tuesday-2009-02-03/</link>
		<comments>http://ubuntuguy.com/uncategorized/link-love-tuesday-2009-02-03/#comments</comments>
		<pubDate>Tue, 03 Feb 2009 16:11:10 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[Random stuff]]></category>
		<category><![CDATA[link series]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=43</guid>
		<description><![CDATA[Bellow are some cool articles we found on other blogs recently. Feel free to send us your faves so we can add them in the next link series. uSbuntu Live Creator &#8211; Create LiveUSBs from Windows using a GUI Linus Torvalds ditches KDE 4 for GNOME Ubuntu LoCo Teams: One Big Family 5 Ways To [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Bellow are some cool articles we found on other blogs recently. Feel free to send us your faves so we can add them in the next <a href="http://ubuntuguy.com/tag/link-series/">link series</a>.</p>
<ul>
<li><a href="http://www.ubuntugeek.com/usbuntu-live-creator-create-liveusbs-from-windows-using-a-gui.html">uSbuntu Live Creator &#8211; Create LiveUSBs from Windows using a GUI</a></li>
<li><a href="http://linuxhelp.blogspot.com/2009/01/linus-torvalds-ditches-kde-4-for-gnome.html">Linus Torvalds ditches KDE 4 for GNOME</a></li>
<li><a href="http://www.jonobacon.org/2009/02/03/ubuntu-loco-teams-one-big-family/">Ubuntu LoCo Teams: One Big Family</a></li>
<li><a href="http://onlyubuntu.blogspot.com/2008/12/5-ways-to-view-chm-files-in-ubuntu.html">5 Ways To View CHM Files in Ubuntu Linux</a></li>
<li><a href="http://joey.ubuntu-rocks.org/blog/2009/01/29/the-ubuntu-nokia-experiment/">The Ubuntu Nokia experiment</a></li>
<li><a href="http://hehe2.net/linux-general/ext4-filesystem-explained-in-plain-english/">Ext4 Filesystem Explained in Plain English</a></li>
<li><a href="http://theubucon.blogspot.com/2007/02/ubucon-is-covered-in-eweek.html">The Ubucon is Covered</a> in <a href="http://www.eweek.com/article2/0,1895,2098141,00.asp">eWeek</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/uncategorized/link-love-tuesday-2009-02-03/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Ubuntu idea</title>
		<link>http://ubuntuguy.com/opinion/the-ubuntu-idea/</link>
		<comments>http://ubuntuguy.com/opinion/the-ubuntu-idea/#comments</comments>
		<pubDate>Mon, 02 Feb 2009 10:17:21 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[Opinions]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=28</guid>
		<description><![CDATA[Ubuntu is a great operating system, but also it is a great idea/philosophy. With a few words Nelson Mandela tell us what is it about. Enjoy the video]]></description>
				<content:encoded><![CDATA[<p>Ubuntu is a great operating system, but also it is a great idea/philosophy. With a few words Nelson Mandela tell us what is it about. Enjoy the video <img src="http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/ODQ4WiDsEBQ&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/ODQ4WiDsEBQ&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/opinion/the-ubuntu-idea/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tilda an alternative terminal</title>
		<link>http://ubuntuguy.com/how-to/tilda-an-alternative-terminal/</link>
		<comments>http://ubuntuguy.com/how-to/tilda-an-alternative-terminal/#comments</comments>
		<pubDate>Sun, 01 Feb 2009 13:19:41 +0000</pubDate>
		<dc:creator><![CDATA[Nick]]></dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tilda]]></category>

		<guid isPermaLink="false">http://ubuntuguy.com/?p=16</guid>
		<description><![CDATA[Tilda is a small application that can be used instead of the classic terminal. Bellow are a few reasons that I prefer it from the classic terminal (Applications -&#62; Accessories -&#62; Terminal) It opens/closes just by pressing the F1 button. Stays always on top, so it is easy to use it with an open firefox. [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Tilda is a small application that can be used instead of the classic terminal. Bellow are a few reasons that I prefer it from the classic terminal (Applications -&gt; Accessories -&gt; Terminal)</p>
<ul>
<li>It opens/closes just by pressing the F1 button.</li>
<li>Stays always on top, so it is easy to use it with an open firefox. In other words it is great when you need to copy/paste from a tutorial you read.</li>
<li>It can be configured to be transparent and to have cool colours. I know this is not so important, but who doesn&#8217;t like the eye candy? <img src="http://ubuntuguy.com/wp-includes/images/smilies/icon_smile.gif" alt=":)" class="wp-smiley" /></li>
</ul>
<h3>How to install/configure Tilda</h3>
<p>Tilda appears in the main repositories so the installation is really simple. Just open a Terminal window and execute this:</p>
<blockquote><p>sudo apt-get install tilda</p></blockquote>
<p>You are done! Tilda now appears in your Applications-&gt;Accesories folder. Here are two things you can do to make it more usable:</p>
<h4>1. Adding Tilda to your session</h4>
<p>First of all we need Tilda to open each time we login. This way we will be able to hit F1 and get the terminal window. To do so, go to Sessions (System -&gt; Preferences -&gt; Sessions) and add a session:<br />
<span style="color: #ffffff;"><a title="gaziantep evden eve taşımacılık" href="http://gaziantepevdeneve.net/" rel="dofollow"><span style="color: #ffffff;">gaziantep evden eve taşımacılık</span></a></span><br />
<span style="color: #ffffff;"> <a title="gaziantep evden eve taşımacılık" href="http://gaziantep-evdeneve.com/ " rel="dofollow"><span style="color: #ffffff;">gaziantep evden eve taşımacılık</span></a></span><br />
<img class="aligncenter size-full wp-image-17" title="tilda" alt="tilda" src="http://ubuntuguy.com/wp-content/uploads/2009/02/tilda.png" width="372" height="205" />This way tilda will open each time we login to our Ubuntu window system. Now we need to tweak tilda a little.</p>
<h4>2. Playing around with Tilda settings</h4>
<p>Well here the only thing we actually want to do is to make Tilda open hidden. The first time you will open Tilda you will get the Config screen. If you don&#8217;t just right click on the Tilda window and go to Preferences. There you should click the &#8220;Start Tilda hidden&#8221; button. Other cool options are in the &#8220;Colors&#8221; tab and the &#8220;Enable Transparency&#8221; in the &#8220;Appearance&#8221; tab.</p>
<p>We are done. Hit F1 and check your new terminal. Here is a screenshot from my desktop with Tilda open:</p>
<p><a href="http://ubuntuguy.com/wp-content/uploads/2009/02/tilda-desktop.png"><img class="aligncenter size-medium wp-image-20" title="tilda-desktop" alt="tilda-desktop" src="http://ubuntuguy.com/wp-content/uploads/2009/02/tilda-desktop-300x240.png" width="300" height="240" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://ubuntuguy.com/how-to/tilda-an-alternative-terminal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
