<?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>Make Tech Easier&#187; Ubuntu</title>
	<atom:link href="http://maketecheasier.com/tag/ubuntu/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Sun, 12 Feb 2012 15:58:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Change Your Terminal Hostname in Ubuntu [Quick Tips]</title>
		<link>http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27</link>
		<comments>http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27#comments</comments>
		<pubDate>Fri, 27 Jan 2012 23:00:35 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[hostname]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=44953</guid>
		<description><![CDATA[Usually when you install Ubuntu, it will ask you for your username and assign a hostname to you, such as damien@damien-laptop. This is also what you will see in your terminal. If you don&#8217;t like the hostname shown in the terminal, or for some reason that you want to change the hostname, here&#8217;re the exact [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27&amp;title=How+to+Change+Your+Terminal+Hostname+in+Ubuntu+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27">How to Change Your Terminal Hostname in Ubuntu [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-terminal-hostname.png" alt="ubuntu-terminal-hostname" title="ubuntu-terminal-hostname" class="alignleft size-full wp-image-44958" />Usually when you install Ubuntu, it will ask you for your username and assign a hostname to you, such as <em>damien@damien-laptop</em>. This is also what you will see in your terminal. If you don&#8217;t like the hostname shown in the terminal, or for some reason that you want to change the hostname, here&#8217;re the exact steps in Ubuntu. It is very easy. Just follow along and you will be done in a minute.<br />
<span id="more-44953"></span><br />
1. First, open a terminal and type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gksu gedit <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span><span style="color: #c20cb9; font-weight: bold;">hostname</span></pre></div></div>

<p>You should see a line stating your current hostname. For eg. <em>damien-desktop</em></p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-hostname.png" alt="ubuntu-hostname" title="ubuntu-hostname" class="aligncenter size-full wp-image-44954" /></p>
<p>2. Change the hostname to something you desired. Save and close the file.</p>
<p>3. Back in your terminal, type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gksu gedit <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>hosts</pre></div></div>

<p>4. Change the line:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">127.0.1.1	damien-desktop</pre></div></div>

<p>to</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">127.0.1.1	your-new-hostname</pre></div></div>

<p><img src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-host.png" alt="ubuntu-host" title="ubuntu-host" class="aligncenter size-full wp-image-44956" /></p>
<p>Save and close the file. </p>
<p>Restart the computer. Your new hostname should appear in the terminal now.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27&amp;title=How+to+Change+Your+Terminal+Hostname+in+Ubuntu+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27">How to Change Your Terminal Hostname in Ubuntu [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/change-terminal-hostname-in-ubuntu/2012/01/27/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Install a Preview of Ubuntu TV</title>
		<link>http://maketecheasier.com/install-ubuntu-tv/2012/01/18</link>
		<comments>http://maketecheasier.com/install-ubuntu-tv/2012/01/18#comments</comments>
		<pubDate>Wed, 18 Jan 2012 15:58:09 +0000</pubDate>
		<dc:creator>Tavis J. Hampton</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[tv]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=44231</guid>
		<description><![CDATA[At CES, Canonical announced its latest major project that it is calling Ubuntu TV &#8220;TV for human beings&#8221;. Much of the Ubuntu TV interface will be based on the groundwork that has already been established with the development of Unity, Canonical’s revolutionary, and sometimes polarizing, desktop environment. In keeping with tradition, Ubuntu TV is free [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/install-ubuntu-tv/2012/01/18" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18&amp;title=How+to+Install+a+Preview+of+Ubuntu+TV&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/install-ubuntu-tv/2012/01/18">How to Install a Preview of Ubuntu TV</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-44232" title="ubuntu-tv-featured" src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-tv-featured.jpg" alt="Ubuntu TV featured videos" width="600" height="222" /></p>
<p>At CES, Canonical announced its latest major project that it is calling Ubuntu TV &#8220;TV for human beings&#8221;. Much of the Ubuntu TV interface will be based on the groundwork that has already been established with the development of Unity, Canonical’s revolutionary, and sometimes polarizing, desktop environment.</p>
<p>In keeping with tradition, Ubuntu TV is free and open source. Therefore, you can install it now, while keeping in mind that it is still under heavy development. If you have the time and wherewithal, you can try installing it from source. If not, there is also a PPA available with binary packages.<br />
<span id="more-44231"></span></p>
<h2>PPA Install</h2>
<p>Before proceeding, I want to reiterate that this is not a fully-functional version of Ubuntu TV. It is a development build and should be viewed as such. It will, however, give you an idea of how the interface looks and functions on a basic level. This install will essentially take over your Unity 2D install, so if you do not want to risk contamination, you should try using a virtual machine instead.</p>
<p>1. If you have the YouTube video lens for Unity installed, you will need to remove it to avoid conflicts:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> remove lens-video</pre></div></div>

<p>2 Install Ubuntu TV using the PPA provided by <a href="http://www.webupd8.org/">Alin Andrei</a> of WebUpd8:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:nilarimogard<span style="color: #000000; font-weight: bold;">/</span>test3
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> dist-upgrade
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> unity-lens-video</pre></div></div>

<p>Make sure you do not skip the “dist-upgrade” step, as it will likely not function properly without it.</p>
<p>3. In this step, you will tell Ubuntu TV to generate thumbnails of your current videos. You can safely assume that this task will be automated in later versions. You will need to copy your videos to <em>/home/username/Videos/unity/local/featured</em> before proceeding.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>unity-lens-video<span style="color: #000000; font-weight: bold;">/</span>create_tmb.sh ~<span style="color: #000000; font-weight: bold;">/</span>Videos<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p><strong>Note</strong>: I was not able to get video thumbnails to work correctly. Hopefully, you will have better success.</p>
<p>4. If you are not already logged in to your normal desktop (either Unity or Gnome), do so, and run this command from a terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gsettings <span style="color: #000000; font-weight: bold;">set</span> com.canonical.Unity2d form-factor tv</pre></div></div>

<p>5. Kill off your current desktop features.</p>
<p>If you are running Unity 2D:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">killall</span> unity-2d-<span style="color: #7a0874; font-weight: bold;">&#123;</span>panel,places,launcher,spread<span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">killall</span> unity-2d-<span style="color: #7a0874; font-weight: bold;">&#123;</span>panel,places,launcher,spread<span style="color: #7a0874; font-weight: bold;">&#125;</span></pre></div></div>

<p>If you are running Unity 3D or Gnome Shell:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">metacity <span style="color: #660033;">--replace</span> <span style="color: #000000; font-weight: bold;">&amp;</span></pre></div></div>

<p>6. Start Ubuntu TV:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">unity-2d-shell <span style="color: #660033;">-opengl</span></pre></div></div>

<p><img class="aligncenter size-full wp-image-44233" title="ubuntu-tv-sintel-playback" src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-tv-sintel-playback.jpg" alt="Ubuntu TV playing Sintel" width="600" height="362" /></p>
<p>You will now notice that Ubuntu TV has taken over your entire screen. When you are finished with it, you can end it by Alt-Tabbing back to your terminal and then pressing Ctrl+C. To get your desktop back, type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">unity <span style="color: #660033;">--replace</span></pre></div></div>

<p>or</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gnome-shell <span style="color: #660033;">--replace</span></pre></div></div>

<p>Once you are finished getting a taste of Ubuntu TV, run the following commands to get rid of it and get Unity 2D back:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> ppa-purge
<span style="color: #c20cb9; font-weight: bold;">sudo</span> ppa-purge ppa:nilarimogard<span style="color: #000000; font-weight: bold;">/</span>test3
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> remove unity-lens-video</pre></div></div>

<h2>What Works</h2>
<p>From my test of Ubuntu TV, video playback seems to work with multiple codecs (probably any codecs currently installed on my system). It has a very nice pause, skip, and browse feature built into the video player. When you select a video to watch, it will give you the option to view trailer, rent, or buy. Only the &#8220;view trailer&#8221; button will work for your current videos.</p>
<p><img class="aligncenter size-full wp-image-44234" title="ubuntu-tv-sintel-playback-skip" src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-tv-sintel-playback-skip.jpg" alt="Ubuntu TV skipping through Sintel" width="600" height="375" /></p>
<p>The search feature works as expected and was fast on my aging laptop.</p>
<p>The TV function shows a generic UK broadcast schedule that appears to be just for show. As far as I know, there are no specifics on how the TV integration will work.</p>
<p><img class="aligncenter size-full wp-image-44235" title="ubuntu-tv-schedule" src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-tv-schedule.jpg" alt="Ubuntu TV broadcast TV schedule" width="600" height="375" /></p>
<p>The YouTube feature did not work at all on my installation, so it is something that will probably come later. Because Ubuntu TV is extensible, the potential for other &#8220;apps&#8221; to be added is pretty much limitless.</p>
<p>If you want to compile Ubuntu TV from source, you can find instructions on the <a href="https://wiki.ubuntu.com/UbuntuTV/Contributing" target="_blank">Ubuntu Wiki</a>. It does not look terribly complicated and should be easy for intermediate users familiar with compiling programs. For more information about Ubuntu TV in general, see the <a href="http://www.ubuntu.com/tv" target="_blank">Ubuntu TV website</a>.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/install-ubuntu-tv/2012/01/18" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18&amp;title=How+to+Install+a+Preview+of+Ubuntu+TV&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/install-ubuntu-tv/2012/01/18" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/install-ubuntu-tv/2012/01/18">How to Install a Preview of Ubuntu TV</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/install-ubuntu-tv/2012/01/18/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Dual Boot Asus Transformer With Ubuntu</title>
		<link>http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09</link>
		<comments>http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09#comments</comments>
		<pubDate>Mon, 09 Jan 2012 23:00:50 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[dual boot]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=43948</guid>
		<description><![CDATA[I got myself a Asus Transformer tablet in June 2011 and since then, I have been looking for an easy way to install Ubuntu on it. The form factor, the keyboard dock and the hardware spec of Asus transformer make it just right for a portable computer. However, back then, getting Ubuntu on board the [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09&amp;title=How+to+Dual+Boot+Asus+Transformer+With+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09">How to Dual Boot Asus Transformer With Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2012/01/dualboot-android-ubuntu.png" alt="dualboot-android-ubuntu" title="dualboot-android-ubuntu" width="200" height="150" class="alignleft size-full wp-image-44051" />I got myself a <a href="http://maketecheasier.com/asus-eee-pad-transformer-hands-on-review/2011/07/11" title="Asus Eee Pad Transformer Hands-on Review">Asus Transformer tablet</a> in June 2011 and since then, I have been looking for an easy way to install Ubuntu on it. The form factor, the keyboard dock and the hardware spec of Asus transformer make it just right for a portable computer. However, back then, getting Ubuntu on board the device is not easy and requires lot of hacking and scripting. </p>
<p>Recently, I re-checked the XDA-Developers forum again and found that someone has created a super-easy way to create a dualboot system. I tried it and it works! Here&#8217;s what I did:.<br />
<span id="more-43948"></span><br />
<strong>Disclaimer</strong>: This tutorial will format your tablet hard disk and wipe out all your data. It could also brick your tablet. It would definitely void your warranty. MakeTechEasier will not be held responsible for any damage, data loss, fire or death of a loved one resulting from using this mod for your device.</p>
<p><strong>Note</strong>:<br />
1. This tutorial is based on Linux/Ubuntu. If you are running Windows, this tutorial is not for you.</p>
<p>2. This tutorial only works for Asus Transformer with SBKv1. If your device is running SBKv2. This tutorial is not for you. Here&#8217;s how to check if your device is running SBKv1 or SBKv2.</p>
<ul>
<li>Download <a href="http://forum.xda-developers.com/showthread.php?t=1290503" target="_blank">sbkcheck.tar</a></li>
<li>Extract the tar file. Open a terminal and <code>cd</code> to the sbkcheck folder</li>
<li><a name="apxmode"></a>Put your Asus Transformer to APX mode. To do that, first power off the device. Power on the device again. When you see the Asus EeePad splash screen, press the &#8220;Power + Vol up&#8221; buttons. When the screen goes black, and remain black, you are in APX mode. Once it is in APX mode, connect the device, via USB to your computer</li>
<li>Back in the terminal, run the command: </li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> .<span style="color: #000000; font-weight: bold;">/</span>sbkcheck</pre></div></div>

<p><img src="http://imagecdn.maketecheasier.com/2012/01/dualboot-sbkcheck.png" alt="dualboot-sbkcheck" title="dualboot-sbkcheck" width="473" height="208" class="aligncenter size-full wp-image-44040" /></p>
<p>It should return a message whether your device is running SBKv1 or SBKv2. As a general guide, if you bought your Asus Transformer after Aug 2011, most probably it is running SBKv2.</p>
<p>3. The Asus Transformer mentioned in this article is the 1st gen Asus Transformer, not the quad-core Transformer Prime.</p>
<h2>Backing up your data</h2>
<p>There are a few ways to backup your data. You can either:</p>
<p>1. download a file manager app from market. Use the file manager to transfer important files to the external SD card.</p>
<p>2. Sync your emails, contacts, calendar, files with Google and Dropbox. Even if your device is wiped, your data is still intact in the cloud.</p>
<p>2. For app backup, use <a href="https://market.android.com/details?id=com.keramidas.TitaniumBackup" target="_blank">Titanium Backup</a> or <a href="https://market.android.com/details?id=com.keramidas.TitaniumBackupPro" target="_blank">Titanium Backup Pro</a> if you wish to backup to Dropbox. You will need to <a href="http://forum.xda-developers.com/showthread.php?t=1366743" target="_blank">root your device</a> first (depending on your firmware, rooting your Asus Transformer is only a 1-click process).</p>
<p>Now that you have verify the SBK version and backed up your data, here the exact steps to create a dual-boot system:</p>
<p>1. Download <a href="http://lilstevie.geek.nz/ports/OLiFE-Prime-Edition.tar.gz" target="_blank" rel="nofollow">OLiFE Prime</a>. </p>
<p>2. Extract the file (<strong>DO NOT</strong> extract the files on a windows type filesystem such as NTFS or FAT or you will run into problems. Do it all inside your linux partition). </p>
<p>3. Open a terminal and <code>cd</code> to the OLiFE directory. Run</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sh</span> OLiFE.sh</pre></div></div>

<p><img src="http://imagecdn.maketecheasier.com/2012/01/dualboot-olife-agreement.png" alt="dualboot-olife-agreement" title="dualboot-olife-agreement" width="528" height="272" class="aligncenter size-full wp-image-44041" /></p>
<p>You will see an agreement page. Read it carefully. Once done, type &#8220;understood&#8221; and press Enter.</p>
<p>4. In the next screen, press &#8217;2&#8242; to select the flash device option</p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/dualboot-select-flash-device.png" alt="dualboot-select-flash-device" title="dualboot-select-flash-device" width="390" height="243" class="aligncenter size-full wp-image-44042" /></p>
<p>5. Now, it will show you the different option to flash the device. Regardless what your intention is, choose &#8217;1&#8242; to dualboot.</p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/dualboot-select-boot-option.png" alt="dualboot-select-boot-option" title="dualboot-select-boot-option" width="376" height="210" class="aligncenter size-full wp-image-44043" /></p>
<p>6. Choose &#8217;1&#8242; to select the Android as the default OS. Ubuntu as the default doesn&#8217;t work.</p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/dualboot-default-os.png" alt="dualboot-default-os" title="dualboot-default-os" width="313" height="164" class="aligncenter size-full wp-image-44044" /></p>
<p>7. Put your device in <a href="#apxmode">APX mode</a> and connect it to the computer via USB. The script will now format your device, partition the hard drive and copy the ubuntu and Android img over. This will take a long time, so go grab yourself a coffee and relax.</p>
<p>8. Once it is done, your device will restart and boot into your Android OS.</p>
<h2>Installing Ubuntu</h2>
<p>Now that the Ubuntu.img is copied over to your device, it is time to install it. </p>
<p>1. Power off your device. Press &#8220;Power + Volume Down&#8221; button until the splash screen comes alive. At the top, you should see a message asking you to press the &#8220;Volume Up&#8221; button. Release the &#8220;Power + Volume Down&#8221; button and press &#8220;Volume Up&#8221; button. This will boot into the Ubuntu installer (this is also the way to boot into Ubuntu in the future).</p>
<p>2. Once you reach the Ubuntu main screen, proceed on to install Ubuntu (make sure your device is connected to the keyboard dock). </p>
<p>If you don&#8217;t have the keyboard dock, connect it to the computer via USB again. On your Linux computer, in the terminal, run the command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sh</span> OLiFE.sh</pre></div></div>

<p>This time, press &#8217;5&#8242; to select the &#8220;Onscreen keyboard&#8221;. You should now see the onscreen keyboard appear on your Ubuntu screen. </p>
<p>3. Proceed with the Ubuntu installation. If everything goes well, you should have a dual OS tablet now. </p>
<h2>Post install configuration</h2>
<p>Everything works out of the box for Ubuntu on Asus Transformer, however, the Unity desktop is taking up a lot of resources, causing the system to run <em>very</em> slowly. What I did is to open the Ubuntu Software Center and install <a href="http://maketecheasier.com/taking-lxde-for-a-test-drive/2009/04/22" title="Taking LXDE For a Test Drive">LXDE</a> &#8211; a lightweight desktop manager. Once I switched to LXDE, everything runs smoothly and quickly.</p>
<p><strong>Inject bluetooth firmware</strong></p>
<p>The bluetooth firmware is not included in the Ubuntu installer due to licensing issue. Here&#8217;s how you can get bluetooth working on Ubuntu.</p>
<p>Connect the device to your computer again and run the OLiFE script. This time, press &#8217;4&#8242; to select &#8220;Inject Firmware&#8221;.</p>
<p>Press &#8217;1&#8242; to select the Default Install.</p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/dualboot-bluetooth-firmware.png" alt="dualboot-bluetooth-firmware" title="dualboot-bluetooth-firmware" width="385" height="162" class="aligncenter size-full wp-image-44046" /></p>
<p>When prompted which firmware to inject, select either one will do. </p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/dualboot-inject-bluetooth.png" alt="dualboot-inject-bluetooth" title="dualboot-inject-bluetooth" width="557" height="216" class="aligncenter size-full wp-image-44047" /></p>
<p>That&#8217;s it. Enjoy!</p>
<p>Reference: <a href="http://forum.xda-developers.com/wiki/ASUS_Eee_Pad_Transformer/How_to_install_Ubuntu" target="_blank">XDA-Developers Wiki</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09&amp;title=How+to+Dual+Boot+Asus+Transformer+With+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09">How to Dual Boot Asus Transformer With Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/dual-boot-asus-transformer-with-ubuntu/2012/01/09/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing &#8220;username is not in the sudoers file. This incident will be reported&#8221; Error In Ubuntu</title>
		<link>http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03</link>
		<comments>http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03#comments</comments>
		<pubDate>Tue, 03 Jan 2012 23:00:53 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[shell prompt]]></category>
		<category><![CDATA[sudo]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=43715</guid>
		<description><![CDATA[By default, in Ubuntu, the first user account you created during the installation process is also the administrator of the system. Using this user account, he/she is able to perform administrative tasks with the &#8220;sudo&#8221; command. If you are not aware, &#8220;sudo&#8221; refers to Super User Do and all users in this group are geared [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03&amp;title=Fixing+%26%238220%3Busername+is+not+in+the+sudoers+file.+This+incident+will+be+reported%26%238221%3B+Error+In+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03">Fixing &#8220;username is not in the sudoers file. This incident will be reported&#8221; Error In Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-sudoers-list.png" alt="ubuntu-sudoers-list" title="ubuntu-sudoers-list" width="602" height="140" class="alignleft size-full wp-image-43725" />
<div class="clear"></div>
<p>By default, in Ubuntu, the first user account you created during the installation process is also the administrator of the system. Using this user account, he/she is able to perform administrative tasks with the &#8220;<em>sudo</em>&#8221; command. If you are not aware, &#8220;sudo&#8221; refers to Super User Do and all users in this group are geared with administrative rights to manage the system. However, if you accidentally removed yourself from this &#8220;sudo&#8221; group, you will not be able to do anything. Instead, the only thing you will see is:</p>
<p><code>damien is not in the sudoers file. This incident will be reported</code><br />
<span id="more-43715"></span></p>
<h2>How I removed myself from the sudo group</h2>
<p>For my case, while adding myself to another group, I used the command</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">usermod <span style="color: #660033;">-G</span> nogroup damien</pre></div></div>

<p>without using the &#8216;<code>-a</code>&#8216; parameter and this cause myself to be removed from the sudo group. While I still can use the computer (as a standard user), I am no longer able to update the system, nor install/remove applications.</p>
<p>If you are in the same situation like me, here&#8217;s the fix:</p>
<p>1. Reboot the computer. If Ubuntu is your primary and the only operating system in your computer, press the &#8220;Shift&#8221; button when it is booting up. This should make the Grub screen show up on your monitor. On the Grub screen, press the down button to the Recovery mode and press Enter.</p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-grub-screen.png" alt="ubuntu-grub-screen" title="ubuntu-grub-screen" width="601" height="209" class="aligncenter size-full wp-image-43716" /></p>
<p>2. On the next screen, select &#8220;Check all file system (will exit read only mode)&#8221;. </p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-select-fsck.png" alt="ubuntu-select-fsck" title="ubuntu-select-fsck" width="601" height="257" class="aligncenter size-full wp-image-43718" /></p>
<p>When you see the message &#8220;<em>Finished, press Enter</em>&#8220;, press Enter.</p>
<p>3. Next, select &#8220;Drop to root shell prompt&#8221;.</p>
<p><img src="http://imagecdn.maketecheasier.com/2012/01/ubuntu-select-shell-prompt.png" alt="ubuntu-select-shell-prompt" title="ubuntu-select-shell-prompt" width="576" height="223" class="aligncenter size-full wp-image-43717" /></p>
<p>4. You will now be at the command line. Type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">usermod <span style="color: #660033;">-a</span> <span style="color: #660033;">-G</span> admin username</pre></div></div>

<p>Replace the <em>username</em> with your own login name.</p>
<p>5. That&#8217;s it. Now type &#8220;<code>exit</code>&#8221; and select &#8220;Resume normal boot&#8221;.</p>
<h2>Follow these steps only if you have messed up the /etc/sudoers file</h2>
<p>The above steps assume that your /etc/sudoers file is still intact. If you have mishandled the /etc/sudoers file and cause it to be corrupted. Here is what you need to do:</p>
<p>1. Do the above steps until Step 3.</p>
<p>2. At the command line, type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">cp</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>sudoers <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>sudoers.backup
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">nano</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>sudoers</pre></div></div>

<p>Enter the following lines to the file</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># This file MUST be edited with the 'visudo' command as root.</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># Please consider adding local content in /etc/sudoers.d/ instead of</span>
<span style="color: #666666; font-style: italic;"># directly modifying this file.</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #666666; font-style: italic;"># See the man page for details on how to write a sudoers file.</span>
<span style="color: #666666; font-style: italic;">#</span>
Defaults        env_reset
&nbsp;
<span style="color: #666666; font-style: italic;"># Host alias specification</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># User alias specification</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># Cmnd alias specification</span>
&nbsp;
<span style="color: #666666; font-style: italic;"># User privilege specification</span>
root    <span style="color: #007800;">ALL</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span>ALL:ALL<span style="color: #7a0874; font-weight: bold;">&#41;</span> ALL
&nbsp;
<span style="color: #666666; font-style: italic;"># Members of the admin group may gain root privileges</span>
<span style="color: #000000; font-weight: bold;">%</span>admin <span style="color: #007800;">ALL</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span>ALL<span style="color: #7a0874; font-weight: bold;">&#41;</span> ALL
&nbsp;
<span style="color: #666666; font-style: italic;"># Allow members of group sudo to execute any command</span>
<span style="color: #000000; font-weight: bold;">%</span><span style="color: #c20cb9; font-weight: bold;">sudo</span>   <span style="color: #007800;">ALL</span>=<span style="color: #7a0874; font-weight: bold;">&#40;</span>ALL:ALL<span style="color: #7a0874; font-weight: bold;">&#41;</span> ALL
&nbsp;
<span style="color: #666666; font-style: italic;">#includedir /etc/sudoers.d</span></pre></div></div>

<p>Press &#8220;Ctrl + o&#8221; to save the file and &#8220;Ctrl + x&#8221; to exit.</p>
<p>3. Next, set the file permission of the sudoers file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">chmod</span> <span style="color: #000000;">440</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>sudoers</pre></div></div>

<p>4. Lastly, add yourself to the sudo group:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">usermod <span style="color: #660033;">-a</span> <span style="color: #660033;">-G</span> admin damien</pre></div></div>

<p>5. <code>exit</code> the shell prompt and resume normal boot. </p>
<p>You should be able to perform administrative task again.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03&amp;title=Fixing+%26%238220%3Busername+is+not+in+the+sudoers+file.+This+incident+will+be+reported%26%238221%3B+Error+In+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03">Fixing &#8220;username is not in the sudoers file. This incident will be reported&#8221; Error In Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/fixing-sudo-error-in-ubuntu/2012/01/03/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Listen to Cloud Music With Nuvola Player [Ubuntu]</title>
		<link>http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23</link>
		<comments>http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23#comments</comments>
		<pubDate>Fri, 23 Dec 2011 23:00:55 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[music player]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=43311</guid>
		<description><![CDATA[I seldom review music player app because most of them are the same. Some are lightweight, some are heavy with tons of features, but generally, most of their functionalities are the same. However, when I come across Nuvola Player, a music player that supports Google Music, Groovesharks and several other cloud services, it immediately catches [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23&amp;title=Listen+to+Cloud+Music+With+Nuvola+Player+%5BUbuntu%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23">Listen to Cloud Music With Nuvola Player [Ubuntu]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/nuvolaplayer-logo.jpg" alt="nuvolaplayer-logo" title="nuvolaplayer-logo" width="150" height="146" class="alignleft size-full wp-image-43322" />I seldom review music player app because most of them are the same. Some are lightweight, some are heavy with tons of features, but generally, most of their functionalities are the same. However, when I come across Nuvola Player, a music player that supports Google Music, Groovesharks and several other cloud services, it immediately catches my attention.<br />
<span id="more-43311"></span><br />
Nuvola Player is indeed a different kind of music player. Instead of playing music directly from your computer, it is a wrapper for various cloud music services, so you can play cloud music directly on your desktop, without having to visit the site on your browser. At the moment, it supports only 4 cloud music services, namely Hype Machine, Grooveshark, 8tracks and Google Music. It previously only supports Google Music and has recently upgraded to include 3 other services, so it is likely possible that we will see more cloud services added in the future.</p>
<p>To install:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:nuvola-player-builders<span style="color: #000000; font-weight: bold;">/</span>beta
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> nuvolaplayer</pre></div></div>

<p>This is what you will see on the first run:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nuvolaplayer-main.png" alt="nuvolaplayer-main" title="nuvolaplayer-main" width="600" height="382" class="aligncenter size-full wp-image-43313" /></p>
<p>Being a <a href="http://maketecheasier.com/9-useful-tools-to-get-the-best-experience-out-of-grooveshark/2011/02/16" title="9 Useful Tools to Get The Best Experience Out Of GrooveShark">Grooveshark</a> fan, the first service that I clicked on is, of course, Grooveshark. This is what you will see. You can perform a search and add songs to your playlist. Everything is just what you see in the browser.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nuvolaplayer-grooveshark.jpg" alt="nuvolaplayer-grooveshark" title="nuvolaplayer-grooveshark" width="600" height="456" class="aligncenter size-full wp-image-43314" /></p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nuvolaplayer-grooveshark-playing.png" alt="nuvolaplayer-grooveshark-playing" title="nuvolaplayer-grooveshark-playing" width="600" height="379" class="aligncenter size-full wp-image-43315" /></p>
<p>The same goes for Google Music, Hype Machine and 8 Tracks.</p>
<p><strong>Note</strong>: Although Google Music is only for US citizens, with a simple US-based VPN connection, you (those who do not reside in US) should be able to activate Google Music service with your Google account. Once the service is activated, you won&#8217;t need a VPN to access your music anymore.</p>
<h2>System tray icon with Player Control</h2>
<p>Nuvola Player also comes with an app-indicator (or system tray icon) with the ability to control your music. You can Pause/Play the current song and go Next/Previous song in the playlist. There is even a Thumb Up/Thumb Down button.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nuvolaplayer-appindicator.png" alt="nuvolaplayer-appindicator" title="nuvolaplayer-appindicator" width="203" height="212" class="aligncenter size-full wp-image-43321" /></p>
<h2>Conlcusion</h2>
<p>Nuvola Player is basically a browser wrapper that contains links to various cloud services. There is nothing new that you can&#8217;t do on your normal browser, but the convenience of having several cloud music services at your fingertips and the ability to run separately as a native app make it a winner.</p>
<p>What do you think? Is this kind of music player suitable for you? Or you prefer the good old Rhythmbox and Amarok? </p>
<p><a href="http://projects.fenryxo.cz/Nuvola_Player/Main_page/" target="_blank">Nuvola Player</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23&amp;title=Listen+to+Cloud+Music+With+Nuvola+Player+%5BUbuntu%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23">Listen to Cloud Music With Nuvola Player [Ubuntu]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/listen-to-cloud-music-with-nuvola-player-ubuntu/2011/12/23/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tweak Your Ubuntu Unity Desktop With MyUnity</title>
		<link>http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22</link>
		<comments>http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22#comments</comments>
		<pubDate>Thu, 22 Dec 2011 23:00:13 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[unity]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=43221</guid>
		<description><![CDATA[One of the reasons that many hated the Unity desktop in Ubuntu is because there is a lack of customization option. People switched from Windows/Mac to Linux is mainly because Linux offers them an environment where they can customize everything to their liking. When Canonical reduced your ability to do what you want with your [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22&amp;title=Tweak+Your+Ubuntu+Unity+Desktop+With+MyUnity&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22">Tweak Your Ubuntu Unity Desktop With MyUnity</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/myunity-logo.jpg" alt="myunity-logo" title="myunity-logo" width="200" height="81" class="alignleft size-full wp-image-43236" />One of the reasons that many hated the Unity desktop in Ubuntu is because there is a lack of customization option. People switched from Windows/Mac to Linux is mainly because Linux offers them an environment where they can customize everything to their liking. When Canonical reduced your ability to do what you want with <em>your</em> desktop, many people start to grunt about it and some even switched to Linux Mint. </p>
<p><a href="https://launchpad.net/~myunity/+archive/ppa" target="_blank">MyUnity</a> is a tweaking tool for the Unity desktop that allows you to tweak and customize <em>your</em> Unity desktop to your liking. While it doesn&#8217;t cover every possible tweaks under the sun, it does make the Unity desktop more customizable and easier to use.<br />
<span id="more-43221"></span><br />
To install:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:myunity<span style="color: #000000; font-weight: bold;">/</span>ppa
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> myunity</pre></div></div>

<p>Once you have installed it, go to your Dash, type &#8220;myunity&#8221; and run the &#8220;My Unity&#8221; app.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/myunity-main.png" alt="myunity-main" title="myunity-main" style="max-width:100%;" class="aligncenter size-full wp-image-43224" /></p>
<p>There are few sections that you can customize, namely the Launcher, Dash, Panel, Desktop and Font. </p>
<p>In the Launcher section, you can configure the size of the app icon, the display of the launcher (whether to autohide or fade) and whether to show devices icon on the launcher.</p>
<p>In the Dash section, you can set the display of Dash to blur, smart or off and change the display size to suit desktop or netbook. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/myunity-dash.png" alt="myunity-dash" title="myunity-dash" style="max-width:100%;" class="aligncenter size-full wp-image-43229" /></p>
<p>For the Desktop configuration, you can select whether to show the Home, Networking, Device and Trash icon on the desktop.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/myunity-desktop.png" alt="myunity-desktop" title="myunity-desktop" style="max-width:100%;" width="637" height="528" class="aligncenter size-full wp-image-43230" /></p>
<p>Lastly, at the Font section, you can customize the font for each part of the system. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/myunity-font.png" alt="myunity-font" title="myunity-font" width="640" height="528" class="aligncenter size-full wp-image-43232" style="max-width:100%;" /></p>
<h2>Conclusion</h2>
<p>What MyUnity has done right is to put all the various configuration options together in one interface so the end-users don&#8217;t have to hunt high and low to change that particular setting. MyUnity will be integrated into the Ubuntu 12.04 repository, so you can easily install it without adding a PPA. My guess is that this will become one of the &#8220;must-install&#8221; app when Ubuntu 12.04 releases.  What do you think?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22&amp;title=Tweak+Your+Ubuntu+Unity+Desktop+With+MyUnity&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22">Tweak Your Ubuntu Unity Desktop With MyUnity</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/tweak-ubuntu-unity-desktop-with-myunity/2011/12/22/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Remote Control Ubuntu From An Android Tablet</title>
		<link>http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20</link>
		<comments>http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20#comments</comments>
		<pubDate>Wed, 21 Dec 2011 00:58:57 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[remote control]]></category>
		<category><![CDATA[remote desktop]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=43086</guid>
		<description><![CDATA[Few days ago, Laura discussed how you can use the Splashtop app to access your Windows/Mac remotely from an iOS device. The bad thing is, it only works on Windows and Mac (though the app is available for Android too). If you are using Linux, or more specifically, Ubuntu, the remote desktop client is already [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20&amp;title=How+to+Remote+Control+Ubuntu+From+An+Android+Tablet&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20">How to Remote Control Ubuntu From An Android Tablet</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/android-vnc-logo.png" alt="android-vnc-logo" title="android-vnc-logo" width="150" height="160" class="alignleft size-full wp-image-43097" />Few days ago, Laura discussed how you can use the Splashtop app to <a href="http://maketecheasier.com/work-remotely-on-windows-mac-from-ios-devices/2011/12/15" title="Work Remotely On Windows/Mac From Your iOS Devices">access your Windows/Mac remotely from an iOS device</a>. The bad thing is, it only works on Windows and Mac (though the app is available for Android too). If you are using Linux, or more specifically, Ubuntu, the remote desktop client is already installed by default and you can easily turn it on to allow remote access from another device. Here&#8217;s how it works.<br />
<span id="more-43086"></span><br />
In Ubuntu, open the &#8220;Desktop Sharing&#8221; app. Check the box &#8220;Allow other users to view your desktop&#8221;. Make sure you check the box &#8220;Allow other users to control your desktop&#8221; as well.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/ubuntu-allow-desktop-sharing-.png" alt="ubuntu-allow-desktop-sharing" title="ubuntu-allow-desktop-sharing" width="526" height="432" class="aligncenter size-full wp-image-43088" /></p>
<p>For security sake, it is best to set a password so others can&#8217;t access your desktop easily. </p>
<p>That&#8217;s all you need to do for your Ubuntu.</p>
<h2>Configuring remote access in Android tablet</h2>
<p>There are several apps in the market that allow you to connect to a remote device, but the one that I found to be working best is Wyse PocketCloud RDP/VNC. It is free, fast and easily configurable. </p>
<p>In your Android tablet,</p>
<p>1. Download and install <a href="https://market.android.com/details?id=com.wyse.pocketcloudfree" target="_blank">Wyse PocketCloud RDP/VNC</a> (market link)</p>
<p>2. Run the app. Select the &#8220;Add Connection&#8221; link at the top right corner.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/android-vnc-add-connection.png" alt="android-vnc-add-connection" title="android-vnc-add-connection" width="600" height="375" class="aligncenter size-full wp-image-43090" /></p>
<p>3. Select the Manual Connection, follow by &#8220;VNC&#8221;.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/android-vnc-manual-connection.png" alt="android-vnc-manual-connection" title="android-vnc-manual-connection" width="598" height="433" class="aligncenter size-full wp-image-43091" /></p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/android-select-vnc.png" alt="android-select-vnc" title="android-select-vnc" width="597" height="316" class="aligncenter size-full wp-image-43092" /></p>
<p>4. At the configuration window, choose &#8220;Windows&#8221; under the Operating System dropdown (it will work for Mac as well). Give the connection a nickname. The most important part is the Host address. This is where you enter the IP address of your Ubuntu machine. If your Android tablet is on the same WiFi network as your Ubuntu machine, all you have to do is to enter the local IP (192.168.x.x) of your Ubuntu machine. However, if both are not connected in the same network and your Ubuntu machine is using a dynamic IP, you may want to <a href="http://maketecheasier.com/setup-remote-access-for-computer-with-dynamic-ip/2011/03/07" title="How to Setup Remote Access For Computer With Dynamic IP Address">configure it with a dynamic DNS</a>. Lastly, tap &#8220;Save&#8221;.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/android-vnc-configuration.png" alt="android-vnc-configuration" title="android-vnc-configuration" width="476" height="582" class="aligncenter size-full wp-image-43093" /></p>
<p>5. Back to the main screen, tap the big &#8220;Connect&#8221; button. If everything is set up properly, you should be connected to your remote machine in less than a minute. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/android-vnc-connected.png" alt="android-vnc-connected" title="android-vnc-connected" width="600" height="375" class="aligncenter size-full wp-image-43095" /></p>
<p>Wyse PocketCloud even comes with a mouse icon that you can use to simulate left and right click of the mouse and also the keyboard so you can type on the screen. </p>
<p>To exit, simply press the Back button and it will prompt you if you want to exit the session.  </p>
<h2>Conclusion</h2>
<p>As can be seen, it is very easy to connect remotely to your Ubuntu machine. There is no need to install additional software on your Ubuntu. In addition, even on a slow network, the remote connection on the Android tablet works well too.</p>
<p>What other apps do you use to connect remote to your desktop?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20&amp;title=How+to+Remote+Control+Ubuntu+From+An+Android+Tablet&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20">How to Remote Control Ubuntu From An Android Tablet</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/remote-control-ubuntu-from-android-tablet/2011/12/20/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Nautilus Actions Extra Adds Plenty Of Useful Options to Your Context Menu [Ubuntu Nautilus]</title>
		<link>http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19</link>
		<comments>http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19#comments</comments>
		<pubDate>Mon, 19 Dec 2011 23:00:58 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[context]]></category>
		<category><![CDATA[context menu tools]]></category>
		<category><![CDATA[nautilus]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=43021</guid>
		<description><![CDATA[Being the default file manager in Gnome and Ubuntu, Nautilus has done its job well. You can add bookmarks to your frequently used folders, view folders in tabs, connect to a remote server, right-click to extract zipped files, synchronize with Ubuntu One and many other useful stuff. However, sometimes you may find that it is [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19&amp;title=Nautilus+Actions+Extra+Adds+Plenty+Of+Useful+Options+to+Your+Context+Menu+%5BUbuntu+Nautilus%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19">Nautilus Actions Extra Adds Plenty Of Useful Options to Your Context Menu [Ubuntu Nautilus]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/nautilus-action-extra.png" alt="nautilus-action-extra" title="nautilus-action-extra" width="225" height="206" class="alignleft size-full wp-image-43047" />Being the default file manager in Gnome and Ubuntu, Nautilus has done its job well. You can add bookmarks to your frequently used folders, view folders in tabs, connect to a remote server, right-click to extract zipped files, synchronize with Ubuntu One and many other useful stuff. However, sometimes you may find that it is a a bit lacking in some areas, like the ability to open folder in terminal, run file as administrators, mount ISO file etc. This is where Nautilus Action Extra comes into action.</p>
<p>Nautilus Action Extra is an action script for Nautilus that adds plenty of useful options to the context menu (the window that pop up when you right-click your mouse). Once installed, you will get feature like &#8220;Open file in terminal&#8221;, &#8220;open file as administrator&#8221;, &#8220;repair filename&#8221;, &#8220;check sum&#8221; and many other advanced options easily accessible from the context menu.<br />
<span id="more-43021"></span><br />
To install, open a terminal and type the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:dr3mro<span style="color: #000000; font-weight: bold;">/</span>nautilus-actions-extra
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> nautilus-actions-extra
nautilus <span style="color: #660033;">-q</span></pre></div></div>

<p>Now, right click on any file/folder and you will see the following:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nautilus-action-extra-main.png" alt="nautilus-action-extra-main" title="nautilus-action-extra-main" width="430" height="682" class="aligncenter size-full wp-image-43026" /></p>
<p>Some of the options are different, depending on whether you righ-click on a file or folder. For a folder, the &#8220;Open in Terminal&#8221; option will be visible and when selected, a terminal will open with the file path pointing to the folder location. For a file, you will see &#8220;Gedit&#8221; instead. When expanded, you have a choice to select whether to edit the file as normal user or with root permission.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nautilus-action-extra-file-gedit.png" alt="nautilus-action-extra-file-gedit" title="nautilus-action-extra-file-gedit" width="452" height="172" class="aligncenter size-full wp-image-43027" /></p>
<p>For image files, you will also see the option to &#8220;Resize image&#8221; and &#8220;Rotate image&#8221;. This is particularly handy when you are managing your photo gallery. What is even better is the Multimedia section that allows you to &#8220;upload to ImageShack.us&#8221;, &#8220;convert to GIF&#8221;, &#8220;JPG&#8221;, &#8220;PNG&#8221; or &#8220;optimize it for web use&#8221;. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nautilus-action-extra-multimedia.png" alt="nautilus-action-extra-multimedia" title="nautilus-action-extra-multimedia" width="488" height="159" class="aligncenter size-full wp-image-43030" /></p>
<p>Some other built-in features include PyRenamer, a  script that allows you to mass rename files.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nautilus-action-extra-pyrenamer.png" alt="nautilus-action-extra-pyrenamer" title="nautilus-action-extra-pyrenamer" width="600" height="482" class="aligncenter size-full wp-image-43031" /></p>
<p>That is not all about Nautilus Action Extra. If you are a control freak who love to customize every single bit of an application, you can also run the following command to access the backend configuration menu of Nautilus Action Extra.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gksu nautilus-actions-config-tool</pre></div></div>

<p>Here is what you will see:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/nautilus-action-extra-config.png" alt="nautilus-action-extra-config" title="nautilus-action-extra-config" width="600" height="338" class="aligncenter size-full wp-image-43032" /></p>
<p>From here, you can configure what show up in the context menu and/or change the commands or behavior associated with each action.</p>
<h2>Conclusion</h2>
<p>Nautilus Action Extra is definitely a powerful and useful addon for Nautilus. While you may not have use for most of the actions, having a few useful features at your fingertips is enough to improve your productivity and make your life better. What do you think? </p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19&amp;title=Nautilus+Actions+Extra+Adds+Plenty+Of+Useful+Options+to+Your+Context+Menu+%5BUbuntu+Nautilus%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19">Nautilus Actions Extra Adds Plenty Of Useful Options to Your Context Menu [Ubuntu Nautilus]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/nautilus-actions-extra-adds-useful-options-to-context-menu/2011/12/19/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to Fix Ubuntu Update Errors</title>
		<link>http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16</link>
		<comments>http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16#comments</comments>
		<pubDate>Fri, 16 Dec 2011 23:00:18 +0000</pubDate>
		<dc:creator>Abhishek Prakash</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=42529</guid>
		<description><![CDATA[It happens quite often that we encounter errors while trying to run an update in Ubuntu. There are several type of errors and in this post we will see how to solve some of the most common errors encountered during update of packages in Ubuntu. Error 1: E:Encountered a section with no Package: header, E: [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16&amp;title=How+to+Fix+Ubuntu+Update+Errors&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16">How to Fix Ubuntu Update Errors</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/ubuntu-logo.png" alt="ubuntu-logo" title="ubuntu-logo" width="150" height="155" class="alignleft size-full wp-image-42877" />It happens quite often that we encounter errors while trying to run an update in Ubuntu. There are several type of errors and in this post we will see how to solve some of the most common errors encountered during update of packages in Ubuntu.<br />
<span id="more-42529"></span></p>
<h2>Error 1: E:Encountered a section with no Package: header, E: Problem with MergeList</h2>
<p>Sometimes running the updates in the Update Manger results in the following error:</p>
<blockquote><p>Could not initialize the package information.<br />
An unresolvable problem occurred while initializing the package information.<br />
Please report this bug against the ‘update-manager’ package and include the following error message:<br />
‘E:Encountered a section with no Package: header, E: Problem with MergeList /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_natty_main_binary-amd64_Packages, E:The package lists or status file could not be parsed or opened.’</p></blockquote>
<p>A similar error occurs while running the apt-get update command in terminal:</p>
<blockquote><p>Reading package lists… Error!<br />
E: Encountered a section with no Package: header<br />
E: Problem with MergeList /var/lib/apt/lists/archive.ubuntu.com_ubuntu_dists_natty_main_binary-amd64_Packages<br />
E: The package lists or status file could not be parsed or opened.</p></blockquote>
<p>There is a one shot solution to the above errors. Open the terminal and run the following commands in the given order:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>lists<span style="color: #000000; font-weight: bold;">/*</span> 
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> clean 
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>Hope that solves the above mentioned problems. Now lets move on to another type of error.</p>
<h2>Error 2:E: Could not get lock /var/lib/dpkg/lock – open (11: Resource temporarily unavailable)</h2>
<p>A very common error while installing an application or updating a package is following:</p>
<blockquote><p>E: Could not get lock /var/lib/dpkg/lock – open (11: Resource temporarily unavailable)<br />
E: Unable to lock the administration directory (/var/lib/dpkg/), is another process using it?</p></blockquote>
<p>The reason is quite obvious from the error itself &#8220;another process using it&#8221;. Which means another process is already using the mentioned directory (necessary for the application to be installed) through Synaptic Package Manager, Update Manger, terminal or Ubuntu Software Center.</p>
<p>The idea would be to look for another application which is being installed or update it. Wait for it to finish the installation or cancel it. If you cannot see the application then try running this command in the terminal to solve this error:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>lists<span style="color: #000000; font-weight: bold;">/</span>lock</pre></div></div>

<h2>Error 3: The action would require the installation of packages from not authenticated sources</h2>
<p>I faced a strange situation today when I ran the Update Manager in Ubuntu. It showed me a number of updates to be installed and when I clicked on Install Updates it showed me the following error:</p>
<blockquote><p>The action would require the installation of packages from not authenticated sources</p></blockquote>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/ubuntu-require-untrusted-packages.png" alt="ubuntu-require-untrusted-packages" title="ubuntu-require-untrusted-packages" width="600" height="205" class="aligncenter size-full wp-image-42872" /><br />
There could be several reason for this error:</p>
<ul>
<li>Software is restricted by copyright or legal issues</li>
<li>The Software is from Canonical Partner and has not been added to Source List</li>
<li>The application has been installed form its source code</li>
<li>Missing public key of the application</li>
</ul>
<p>If you do not know which is the root cause of error, then follow the instructions for each of them and then you can find it out. Lets see how to tackle these problem one by one:</p>
<h3>(i) Software is restricted by copyright or legal issues</h3>
<p>Run the Update Manager. And go to Settings as shown in the pic below:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/ubuntu-update-manger-settings.png" alt="ubuntu-update-manger-settings" title="ubuntu-update-manger-settings" width="599" height="633" class="aligncenter size-full wp-image-42873" /></p>
<p>Now here, go to the Ubuntu Software tab and make sure that <strong>Software is restricted by copyright or legal issues</strong> field is checked. Close the settings and install updates now.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/ubuntu-synaptic-multiverse.png" alt="ubuntu-synaptic-multiverse" title="ubuntu-synaptic-multiverse" width="498" height="457" class="aligncenter size-full wp-image-42874" /></p>
<h3>(ii) The Software is from Canonical Partner and has not been added to Source List</h3>
<p>In the Update Manager Settings, go to Ubuntu Software tab and include the Source Code for updates like in the pic below:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/ubuntu-synaptic-canonical-settings.png" alt="ubuntu-synaptic-canonical-settings" title="ubuntu-synaptic-canonical-settings" width="495" height="461" class="aligncenter size-full wp-image-42875" /></p>
<h3>(iii) The application has been installed form its source code</h3>
<p>In the Update Manger Settings, go to Ubuntu Software tab and check the Source Code option:</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/ubuntu-synaptic-source.png" alt="ubuntu-synaptic-source" title="ubuntu-synaptic-source" width="493" height="454" class="aligncenter size-full wp-image-42876" /></p>
<h3>(iv) Missing public key of the application</h3>
<p>Open the terminal (Ctrl+Alt+T) and run the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>Now wait till it finishes and see if you see something like this:</p>
<blockquote><p>
W: GPG error: http:/something.something Release: The following signatures couldn&#8217;t be verified because the public key is not available: NO_PUBKEY XXXXXXXXXXXXXXXX
</p></blockquote>
<p>Note down the numbers you see after NO_PUBKEY. This error is because the application&#8217;s public key has not been added. To solve the error use the following command in the terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> adv <span style="color: #660033;">--recv-key</span> <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com XXXXXXXXXXXXXXXX</pre></div></div>

<p>After adding the missing public key run the following command (again):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update</pre></div></div>

<p>I hope it helps solve your problem. Do provide us your feedback and if you are facing errors other than this do let us know. Comments section is all yours. Enjoy :)</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16&amp;title=How+to+Fix+Ubuntu+Update+Errors&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16">How to Fix Ubuntu Update Errors</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/fix-ubuntu-update-errors/2011/12/16/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How to Manage Your Recent Files (Files Logging) In Ubuntu</title>
		<link>http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14</link>
		<comments>http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14#comments</comments>
		<pubDate>Thu, 15 Dec 2011 00:58:27 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[file logging]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[zeitgeist]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=42642</guid>
		<description><![CDATA[The Zeitgeist Engine is a service that logs the users’s activities and events (files opened, websites visites, conversations hold with other people, etc.) and makes relevant information available to other applications. In the recent releases of Ubuntu, the Zeitgeist engine was installed by default, and that is why you are starting to see &#8220;Recent Files&#8221; [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14&amp;title=How+to+Manage+Your+Recent+Files+%28Files+Logging%29+In+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14">How to Manage Your Recent Files (Files Logging) In Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/12/activity-log-manager-recently-used.jpg" alt="activity-log-manager-recently-used" title="activity-log-manager-recently-used" width="200" height="172" class="alignleft size-full wp-image-42772" />The Zeitgeist Engine is a service that logs the users’s activities and events (files opened, websites visites, conversations hold with other people, etc.) and makes relevant information available to other applications. In the recent releases of Ubuntu, the Zeitgeist engine was installed by default, and that is why you are starting to see &#8220;Recent Files&#8221; showing up in your Nautilus file manager and other applications. </p>
<p>Let&#8217;s say that you are using a household computer and you love to watch late night movie (aka. porn) on it, the last thing you want your family members to see is the name of the movie showing up on the &#8220;Recent Files&#8221; list every time they open the Nautilus file manager.<br />
<span id="more-42642"></span></p>
<h2>Activity Log Manager Comes to the Rescue</h2>
<p>The Activity Log Manager is one useful app that controls the behavior of Zeitgeist. You can use it to delete all your file logging history and configure it to log only certain applications or files. </p>
<p>To install:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> activity-log-manager</pre></div></div>

<p>This is what you see on first run:</p>
<p> <img src="http://imagecdn.maketecheasier.com/2011/12/activity-log-manager-main.png" alt="activity-log-manager-main" title="activity-log-manager-main" width="600" height="430" class="aligncenter size-full wp-image-42756" /></p>
<p>There are three tabs: History, Applications and Files. In the History tab, you can delete file log for the past 15 minutes, or up to past week, or if you want, define your own time range.</p>
<p> <img src="http://imagecdn.maketecheasier.com/2011/12/activity-log-manager-delete-history.png" alt="activity-log-manager-delete-history" title="activity-log-manager-delete-history" width="574" height="307" class="aligncenter size-full wp-image-42760" /></p>
<p>The Application tab is where you can blacklist Application and prevent logging of any activity on these applications. So if you are using VLC to watch movie, you can add VLC into this tab.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/activity-log-manager-blacklist-apps.png" alt="activity-log-manager-blacklist-apps" title="activity-log-manager-blacklist-apps" width="602" height="428" class="aligncenter size-full wp-image-42761" /></p>
<p>To make it even better, you can blacklist specific file types and folders. In this case, you probably want to select the video format and videos directory in order to keep your &#8220;track&#8221; clean.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/activity-log-manager-blacklist-folders.png" alt="activity-log-manager-blacklist-folders" title="activity-log-manager-blacklist-folders" width="600" height="425" class="aligncenter size-full wp-image-42766" /></p>
<h2>Turning it off</h2>
<p>For those who prefer to turn the file logging off completely rather than configuring each individual item, you can simply click the &#8220;Tick&#8221; button at the right bottom corner. The default is &#8220;Logging Active&#8221;. Give it a click and you will see the &#8220;Logging Stopped&#8221; text. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/12/activity-log-manager-logging-stopped.png" alt="activity-log-manager-logging-stopped" title="activity-log-manager-logging-stopped" width="278" height="104" class="aligncenter size-full wp-image-42768" /></p>
<h2>Conclusion</h2>
<p>(Recent) File logging is definitely a useful way to help you retrieve your files faster and improve your productivity. However, extensive file logging can also be an intrusion of your privacy, especially if you are using a shared computer. Being able to control what to log and what not to log is definitely a good way to protect your privacy without compromising your productivity.</p>
<p>What do you think?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14&amp;title=How+to+Manage+Your+Recent+Files+%28Files+Logging%29+In+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14">How to Manage Your Recent Files (Files Logging) In Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/manage-files-logging-in-ubuntu/2011/12/14/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create Custom Wallpaper Slideshow in Ubuntu</title>
		<link>http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29</link>
		<comments>http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29#comments</comments>
		<pubDate>Tue, 29 Nov 2011 23:00:21 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[wallpaper]]></category>
		<category><![CDATA[Wallpaper Changer]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=41980</guid>
		<description><![CDATA[If you are using the Gnome desktop and have played with the wallpaper (Appearance) settings, you will discover that there is an inbuilt slideshow feature that you can use to change the wallpaper at regular interval. While this is a useful feature, it is rather limited since it can only rotate among the default wallpapers [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29&amp;title=How+to+Create+Custom+Wallpaper+Slideshow+in+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29">How to Create Custom Wallpaper Slideshow in Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/11/crebs-main.jpg" alt="crebs-main" title="crebs-main" width="200" height="172" class="alignleft size-full wp-image-41991" />If you are using the Gnome desktop and have played with the wallpaper (Appearance) settings, you will discover that there is an inbuilt slideshow feature that you can use to change the wallpaper at regular interval. While this is a useful feature, it is rather limited since it can only rotate among the default wallpapers and not your custom collection of wallpapers. For those who wish to create your own slideshow and don&#8217;t want to have a third-party wallpaper changing app running in the background, here&#8217;s how you can do it in Ubuntu.<br />
<span id="more-41980"></span><br />
By editing the xml template in the &#8220;/usr/share/backgrounds/contest&#8221; directory, you can create a slideshow with your own wallpapers. However, this is a tedious and troublesome task, especially if you have hundreds or thousands of wallpapers in your collection. A faster way is to use crebs.</p>
<h2>Installation</h2>
<p>There is a PPA for crebs, but it is only available for Ubuntu Natty and below. </p>
<p>In Ubuntu Natty,</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:crebs<span style="color: #000000; font-weight: bold;">/</span>ppa
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> crebs</pre></div></div>

<p>For Ubuntu Oneiric 11.10, the PPA will still work, but you will need to add it manually to the sources.list.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">nano</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list</pre></div></div>

<p>Add the following two lines to the end of the file</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>crebs<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu natty main 
deb-src http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>crebs<span style="color: #000000; font-weight: bold;">/</span>ppa<span style="color: #000000; font-weight: bold;">/</span>ubuntu natty main</pre></div></div>

<p>Save (Ctrl + O) and exit (Ctrl + X) the file. Next, in your terminal,</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> adv <span style="color: #660033;">--keyserver</span> keyserver.ubuntu.com <span style="color: #660033;">--recv-keys</span> EF0A4C44
 <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> crebs</pre></div></div>

<h2>Creating custom slideshow</h2>
<p>Run the crebs (Create Background Slideshow) app.</p>
<p>Click the &#8220;+&#8221; button to add wallpapers. You can select multiple wallpapers.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/11/crebs-add-wallpapers.png" alt="crebs-add-wallpapers" title="crebs-add-wallpapers" width="507" height="493" class="aligncenter size-full wp-image-41986" /></p>
<p>Rearrange (using the &lt; and &gt; buttons) the wallpapers to the order you want them to display. </p>
<p>Once you are done with the images, you can click on the Slideshow tab to configure the length of the slideshow.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/11/crebs-transition-timing.png" alt="crebs-transition-timing" title="crebs-transition-timing" width="518" height="497" class="aligncenter size-full wp-image-41987" /></p>
<p>Lastly, enter a name for your slideshow and click the &#8220;Tick&#8221; button to save. </p>
<h2>Activating the slideshow</h2>
<p>Even after you have saved the file, it won&#8217;t appear in the Appearance section. We have to configure the setting manually.</p>
<p>In your terminal, type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #007800;">GSETTINGS_BACKEND</span>=dconf gsettings <span style="color: #000000; font-weight: bold;">set</span> org.gnome.desktop.background picture-uri <span style="color: #ff0000;">&quot;file://<span style="color: #007800;">$HOME</span>/.crebs/my-wonderful-slideshow.xml&quot;</span></pre></div></div>

<p>Replace &#8220;<em>my-wonderful-slideshow</em>&#8221; with the name of the slideshow that you have saved earlier. </p>
<p>Done. </p>
<p><strong>Note</strong>:<br />
1. The custom slideshow xml file is saved in the /home/username/.crebs folder.</p>
<p>2. An alternative is to use third-party wallpaper changing app, like <a href="http://maketecheasier.com/desktop-drapes-another-gnome-wallpaper-changer/2008/07/29" title="Desktop Drapes: Another GNOME Wallpaper Changer">Drape</a>, <a href="http://maketecheasier.com/wallch-set-live-earth-as-your-desktop-wallpaper/2011/01/21" title="Wallch Set Live Earth As Your Desktop Wallpaper">Wallch</a> etc.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29&amp;title=How+to+Create+Custom+Wallpaper+Slideshow+in+Ubuntu&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29">How to Create Custom Wallpaper Slideshow in Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/create-custom-wallpaper-slideshow-in-ubuntu/2011/11/29/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Setup A Ubuntu Web Server On A Remote Host</title>
		<link>http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28</link>
		<comments>http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28#comments</comments>
		<pubDate>Mon, 28 Nov 2011 23:00:34 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[remote host]]></category>
		<category><![CDATA[setting up a web server]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web server]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=41928</guid>
		<description><![CDATA[Setting up your own web server can be a fun thing, simply because you can customize the things you want and optimize it to perform at the highest level. Previously, we have shown you how to install a LAMP server in your Ubuntu machine, but that is using a GUI and it won&#8217;t work if [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28&amp;title=How+to+Setup+A+Ubuntu+Web+Server+On+A+Remote+Host&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28">How to Setup A Ubuntu Web Server On A Remote Host</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/11/ubuntu-logo.png" alt="ubuntu-logo" title="ubuntu-logo" width="200" height="202" class="alignleft size-full wp-image-41945" />Setting up your own web server can be a fun thing, simply because you can customize the things you want and optimize it to perform at the highest level. Previously, we have shown you how to <a href="http://maketecheasier.com/setting-up-a-lamp-server-in-ubuntu-hardy-heron/2008/08/06" title="Setting Up a LAMP Server In Ubuntu Hardy Heron">install a LAMP server in your Ubuntu</a> machine, but that is using a GUI and it won&#8217;t work if you are administering a remote host. Here&#8217;s how you can setup a Ubuntu web server on a remote host.<br />
<span id="more-41928"></span><br />
<strong>Note</strong>: Before we start, we have to assume that:</p>
<p>1. You already have SSH access to your remote host. For security sake, you might want to <a href="http://maketecheasier.com/generate-public-private-ssh-key/2011/11/10" title="How to Generate A Public/Private SSH Key [Linux]">setup a public/private SSH key</a> to secure your SSH connection.  </p>
<p>2. The remote host is in a fresh state. No additional software have been installed or any other user has been created. </p>
<h2>Get Started</h2>
<p>1. Open a terminal (if you are using Windows, use <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" title="Putty" target="_blank">Putty</a>) and SSH to your remote host. </p>
<p>2. The first thing to do is to update your remote host so that it is running the latest version of all software.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> upgrade</pre></div></div>

<p>3. If you are logging in as the root user, it is best to change the default password for the root user and also create a new user account. It is not a good practice to log in as the root user. Once the new user account is created, you will administer the remote host with this account.</p>
<p>Change the password for the root user.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">passwd</span></pre></div></div>

<p>Create new user account.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">adduser username   <span style="color: #666666; font-style: italic;">#replace &quot;username&quot; with your own your user name.</span></pre></div></div>

<p>It will prompt you to enter your user password and info.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/11/ubuntu-adduser1.png" alt="ubuntu-adduser" title="ubuntu-adduser" width="585" height="358" class="aligncenter size-full wp-image-41938" /></p>
<p>Add the new user to the &#8220;sudo&#8221; group.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">adduser username <span style="color: #c20cb9; font-weight: bold;">sudo</span></pre></div></div>

<p>Once this is done, you will need to exit the current SSH session and re-login with the new user account. </p>
<p>4. Install LAMP Server. There is no Synaptic or Ubuntu Software Center here, so we have to install everything via the terminal. While you can install a whole bunch of files here, an easier way is to use the <em>tasksel</em> package.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> tasksel
<span style="color: #c20cb9; font-weight: bold;">sudo</span> tasksel <span style="color: #c20cb9; font-weight: bold;">install</span> lamp-server</pre></div></div>

<p>During the installation, it will prompt you a few questions. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/11/ubuntu-tasksel-installation.png" alt="ubuntu-tasksel-installation" title="ubuntu-tasksel-installation" width="600" height="344" class="aligncenter size-full wp-image-41939" /></p>
<p>Once the installation is done, go to your web browser and type in the domain name (or IP address) associated with the remote host. If you see the &#8220;It Works&#8221; screen, you are on track.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/11/ubuntu-apache-works.png" alt="ubuntu-apache-works" title="ubuntu-apache-works" width="586" height="186" class="aligncenter size-full wp-image-41941" /></p>
<p>9. Secure MySQL</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">mysql_secure_installation</pre></div></div>

<p>It will prompt you a few questions:</p>
<ul>
<li><em>Change the root password?</em> &#8211; If you have set a secure password previously, you can safely type &#8216;n&#8217;.</li>
<li><em>Remove anonymous users?</em> &#8211; Type &#8216;y&#8217;.</li>
<li><em>Disallow root login remotely?</em> &#8211; Type &#8216;y&#8217;.</li>
<li><em>Remove test database and access to it?</em> &#8211; Type &#8216;y&#8217;.</li>
<li><em>Reload privilege table now?</em> &#8211; Type &#8216;y&#8217;.</li>
</ul>
<p>That&#8217;s it. You have successfully setup a web server in the remote host.</p>
<h2>Optional Stuff</h2>
<p>Here are some optional stuff you can install/do:</p>
<h3>1. phpMyAdmin</h3>
<p>PhpMyAdmin is a frontend GUI that allows you to configure and setup database easily. Since it is accessible via web interface, many people feel that it is unsecured and could be the loophole for hackers to brute-force into your database. </p>
<p>Here&#8217;s how to install:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> phpmyadmin</pre></div></div>

<p>Open a browser and go to <em>http://your-ip-address/phpmyadmin</em>. If you see the phpMyAdmin page, your installation is successfully. If not, you will have to add an extra line to the Apache conf file.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">nano</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apache2<span style="color: #000000; font-weight: bold;">/</span>apache2.conf</pre></div></div>

<p>Add the following line to the end of the file.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Include <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>phpmyadmin<span style="color: #000000; font-weight: bold;">/</span>apache.conf</pre></div></div>

<p>Save (Ctrl + O) and exit (Ctrl + X). </p>
<p>Restart Apache</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>init.d<span style="color: #000000; font-weight: bold;">/</span>apache2 restart</pre></div></div>

<h3>2. Configure Apache</h3>
<p>There are tons of things that you can do with Apache. I won&#8217;t discuss the detail here. Check out this <a href="http://maketecheasier.com/install-and-configure-apache-in-ubuntu/2011/03/09" title="install-and-configure-apache-in-ubuntu">Apache tutorial</a> for the instruction.</p>
<h3>3. Install FTP server</h3>
<p>If you need to access your remote host via FTP, you will need to install a FTP server. There are several FTP software that you can use. Here, we will be using <em>vsftp</em>.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> vsftpd</pre></div></div>

<p>Don&#8217;t forget to add the current user to ftp group.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> adduser username <span style="color: #c20cb9; font-weight: bold;">ftp</span></pre></div></div>

<h3>4. Install Webmin</h3>
<p><a href="http://maketecheasier.com/how-to-manage-unix-linux-systems-using-webmin/2008/12/18" title="How To Manage Unix &#038; Linux Systems Using Webmin">Webmin</a> is a free web-based control panel for administrators to manage their servers without having to go into the command line.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">nano</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>apt<span style="color: #000000; font-weight: bold;">/</span>sources.list</pre></div></div>

<p>Add the following to the end of the file:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">deb http:<span style="color: #000000; font-weight: bold;">//</span>download.webmin.com<span style="color: #000000; font-weight: bold;">/</span>download<span style="color: #000000; font-weight: bold;">/</span>repository sarge contrib
deb http:<span style="color: #000000; font-weight: bold;">//</span>webmin.mirror.somersettechsolutions.co.uk<span style="color: #000000; font-weight: bold;">/</span>repository sarge contrib</pre></div></div>

<p>Import the GPG key:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">wget</span> http:<span style="color: #000000; font-weight: bold;">//</span>www.webmin.com<span style="color: #000000; font-weight: bold;">/</span>jcameron-key.asc
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-key</span> add jcameron-key.asc</pre></div></div>

<p>Install webmin:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> webmin</pre></div></div>

<p><img src="http://imagecdn.maketecheasier.com/2011/11/ubuntu-webmin.png" alt="ubuntu-webmin" title="ubuntu-webmin" width="546" height="190" class="aligncenter size-full wp-image-41943" /></p>
<p>Once installed, you can access webmin in your browser at the URL <em>https://your-ip-address:10000/</em>.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28&amp;title=How+to+Setup+A+Ubuntu+Web+Server+On+A+Remote+Host&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28">How to Setup A Ubuntu Web Server On A Remote Host</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/how-to-setup-a-ubuntu-web-server-on-a-remote-host/2011/11/28/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Give Any KDE Desktop An Ubuntu Makeover</title>
		<link>http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23</link>
		<comments>http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23#comments</comments>
		<pubDate>Thu, 24 Nov 2011 00:58:40 +0000</pubDate>
		<dc:creator>Tavis J. Hampton</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ambiance]]></category>
		<category><![CDATA[appearance]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[qtcurve]]></category>
		<category><![CDATA[System Settings]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[widgets]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=41654</guid>
		<description><![CDATA[Although some might consider it blasphemous, the default KDE desktop is not a style everyone automatically likes. If it were, KDE-Look.org would not be filled with desktop themes, window manager themes, and more. KDE is all about customization, and the ability to make it look however you want is part of that. I have spoken [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23&amp;title=How+to+Give+Any+KDE+Desktop+An+Ubuntu+Makeover&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23">How to Give Any KDE Desktop An Ubuntu Makeover</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/11/kde-kfaenza-button.jpg" alt="kde-kfaenza-button" title="kde-kfaenza-button" width="128" height="128" class="alignleft size-full wp-image-41679" />Although some might consider it blasphemous, the default KDE desktop is not a style everyone automatically likes. If it were, KDE-Look.org would not be filled with desktop themes, window manager themes, and more. KDE is all about customization, and the ability to make it look however you want is part of that.</p>
<p>I have spoken to many people who dislike KDE solely based on its default appearance, the Air/Oyxgen set of styles and themes. Some have even argued that it looks too much like Windows (although evidence strongly suggests that Windows 7 mimicked KDE, rather than the other way around). What those people may not realize is that you can make KDE look as much like Gnome or any other desktop environment as you want.<br />
<span id="more-41654"></span><br />
The customizations in this guide are just examples. They will not give an exact Unity or Gnome appearance, as most people change those defaults anyway. Instead, this example will use some of the common customizations that Ubuntu and Gnome users often apply.</p>
<p><img class="aligncenter size-full wp-image-41656" title="kde-ambiance-desktop" src="http://imagecdn.maketecheasier.com/2011/11/kde-ambiance-desktop-nq8.jpg" alt="KDE desktop with Ambiance theme" width="600" height="376" /></p>
<h2>The Desktop Theme</h2>
<p><a href="http://kde-look.org/">KDE-Look</a> has a plethora of desktop themes you can use. To change your theme, do the following:</p>
<ol>
<li>Open &#8220;System Settings&#8221; from the kickoff menu (or press Alt+F2 and type it)</li>
<li>Click &#8220;Workspace Appearance&#8221;</li>
<li>Click &#8220;Desktop Theme&#8221; on the left-hand pane</li>
<li>Click &#8220;Get New Themes&#8221; at the bottom</li>
<li>Choose whatever theme you want and click &#8220;Install&#8221;. For this example, I have chosen the &#8220;Ambiance&#8221; theme.</li>
<li>Click &#8220;Apply&#8221;</li>
</ol>
<p><img class="aligncenter size-full wp-image-41657" title="kde-ambiance-desktop-theme" src="http://imagecdn.maketecheasier.com/2011/11/kde-ambiance-desktop-theme-nq8.png" alt="KDE Ambiance theme selection" width="600" height="362" /></p>
<h2>The Window Decoration</h2>
<p>Since you are already in Workspace settings, now is a good time to change the window decoration.</p>
<ol>
<li>Click &#8220;Window Decorations&#8221; from the left-hand pane.</li>
<li>Click &#8220;Get New Decorations&#8221;</li>
<li>Following the same example, search for Ambiance Aurorae and click &#8220;Install&#8221;</li>
<li>Choose the decoration theme and click &#8220;Apply&#8221;.</li>
</ol>
<p>If you want to really be like Ubuntu/Mac OS X, you can move the window buttons to the left side:</p>
<ol>
<li>Click &#8220;Configure Buttons&#8221;</li>
<li>Check the box labeled &#8220;Use custom title bar button positions&#8221;</li>
<li>Simply drag each button type to the left in the order that you want them.</li>
</ol>
<h2>Application Appearance</h2>
<p>Getting the application appearance you want is a little more tricky. That is because KDE does not currently offer users the ability to install new styles from within System Settings. Therefore, before you choose a style, you will need to make sure the one you want is installed. You have two options: 1. You can install the actual GTK style that you want and use it, or 2. Find an actual KDE or Qtcurve style that matches the one you want.</p>
<p>If you decide to go with the Qtcurve option, you can download something like <a href="http://kde-look.org/content/show.php/Ambiance-like?content=126975">Ambiance-like</a>. Download it and extract it to the folder of your choice. To install it, do the following:</p>
<ol>
<li>Open &#8220;System Settings&#8221;</li>
<li>Click &#8220;Application Appearance&#8221;</li>
<li>Choose Qtcurve and click &#8220;Configure&#8221; (If you do not have Qtcurve installed, it is probably in your distribution’s software repository)</li>
<li>In the &#8220;Presets&#8221; section, choose &#8220;Import&#8221;</li>
<li>Find the Ambiance-like theme (Ambiance-like.qtcurve) and then click &#8220;OK&#8221;</li>
<li>Click &#8220;Apply&#8221;</li>
<li>Click the &#8220;Colors&#8221; button in the left-hand panel</li>
<li>Choose &#8220;Import Scheme&#8221;</li>
<li>Locate the Ambiance colors (Ambiance-like.colors) and click &#8220;OK&#8221;</li>
<li>Click &#8220;Apply&#8221;</li>
</ol>
<p>Alternatively, you can use the <a href="http://kde-look.org/content/show.php/Ambiance?content=123960">Ambiance color scheme</a> from KDE-Look.</p>
<h2>Panel and Launcher</h2>
<p>In most distributions, the KDE panel is at the bottom and is rather large. To move it to the top:</p>
<ol>
<li>Right click on the panel and click &#8220;Unlock widgets&#8221;</li>
<li>Click the cashew button on the far right</li>
<li>Click and hold the &#8220;Screen Edge&#8221; button and drag the panel to the top.</li>
<li>Click and hold the &#8220;Height&#8221; button to make it the size you want</li>
</ol>
<p>KDE can use a global menu that works for KDE, Qt, and GTK apps. To use it:</p>
<ol>
<li>Click the cashew again and click &#8220;Add widgets&#8221;</li>
<li>Choose &#8220;Window Menubar&#8221; and drag it to the panel</li>
</ol>
<p>You have a couple of options for launchers. You can either use a KDE-native launcher like <a href="http://kde-look.org/content/show.php/Daisy?content=102077">Daisy</a> or <a href="http://kde-look.org/content/show.php?content=99737">Fancy Tasks</a>, or you can use a separate launcher program like <a href="http://wiki.go-docky.com/index.php?title=Welcome_to_the_Docky_wiki">Docky</a> (mono-based but very reliable), <a href="https://launchpad.net/plank">Plank</a> (fast, light-weight next-gen Docky), <a href="http://wiki.awn-project.org/index.php?title=Main_Page">AWN</a> (robust and powerful), or <a href="http://glx-dock.org/">Cairo Dock</a> (all about options).</p>
<h2>Icons</h2>
<p><img class="aligncenter size-full wp-image-41658" title="kde-faenza-icons-theme" src="http://imagecdn.maketecheasier.com/2011/11/kde-ambiance-icons-theme-nq8.png" alt="KFaenza icon theme" width="600" height="378" /></p>
<p>KDE uses a slightly different icon theme system from Gnome and Ubuntu. Therefore, it may not be the best idea to use those themes directly, but they will still work. The alternative is that you can find one specifically modified for KDE. Faenza-Cupertino is a very popular iconset for Ubuntu users, and KFaenza is an excellent KDE version.</p>
<p>To install it:</p>
<ol>
<li>Open &#8220;System Settings&#8221;</li>
<li>Click &#8220;Application Appearance&#8221;</li>
<li>Choose &#8220;Icons&#8221; from the left-hand pane</li>
<li>Click &#8220;Get New Themes&#8221;</li>
<li>Search for &#8220;KFaenza&#8221;</li>
<li>Click &#8220;Install&#8221;</li>
<li>Select the icon theme and click &#8220;Apply&#8221;</li>
</ol>
<h2>Mixing and Matching</h2>
<p>You are certainly not limited to the examples I have shown. You can mix and match whatever you like to get your KDE desktop looking exactly the way you want.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23&amp;title=How+to+Give+Any+KDE+Desktop+An+Ubuntu+Makeover&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23">How to Give Any KDE Desktop An Ubuntu Makeover</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/give-kde-desktop-ubuntu-makeover/2011/11/23/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>5 Alternatives to Unity in Ubuntu Oneiric</title>
		<link>http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27</link>
		<comments>http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27#comments</comments>
		<pubDate>Thu, 27 Oct 2011 14:58:27 +0000</pubDate>
		<dc:creator>Joshua Price</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[desktop manager]]></category>
		<category><![CDATA[Enlightenment]]></category>
		<category><![CDATA[gnome 3]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[lxde]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[unity desktop]]></category>
		<category><![CDATA[xfce]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=40113</guid>
		<description><![CDATA[With the past few releases, Ubuntu has been focusing more and more on their homegrown desktop Unity. Some people love it, but a lot of us don&#8217;t. Fortunately, as with all things Linux, there are many alternative options. For those of us who just can&#8217;t find a way to unite with Unity, here are 5 [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27&amp;title=5+Alternatives+to+Unity+in+Ubuntu+Oneiric&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27">5 Alternatives to Unity in Ubuntu Oneiric</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/10/unityalternatives-small.png" alt="unityalternatives-small" title="unityalternatives-small" width="200" height="150" class="alignleft size-full wp-image-40127" />With the past few releases, Ubuntu has been focusing more and more on their homegrown desktop Unity. Some people love it, but a lot of us don&#8217;t. Fortunately, as with all things Linux, there are many alternative options. For those of us who just can&#8217;t find a way to unite with Unity, here are 5 great options that you might find you like better.<br />
<span id="more-40113"></span></p>
<h2>1. Gnome 3 with Gnome Shell</h2>
<p>Let&#8217;s get the most obvious choice out of the way first. Historically, Ubuntu has always run the Gnome desktop environment. Gnome was one of the first DEs for Linux, and is still going strong. When they recently released version 3, it was a complete overhaul of both the desktop interface and much of the software behind it. Currently, Ubuntu uses Gnome 3&#8242;s backend software with the Unity desktop, but if you want the full Gnome 3 experience you need Gnome Shell.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/unityalternatives-gnomeshell.jpg" alt="unityalternatives-gnomeshell" title="unityalternatives-gnomeshell" width="600" height="375" class="aligncenter size-full wp-image-40114" /></p>
<p>As regular readers may know, we&#8217;ve covered Gnome Shell in detail <a href="http://maketecheasier.com/gnome-shell-is-almost-ready-to-rock-your-desktop/2011/02/17">several</a> <a href="http://maketecheasier.com/disable-automatic-workspaces-in-gnome-3/2011/07/14">times</a> <a href="http://maketecheasier.com/install-custom-gnome-shell-themes/2011/09/27">before</a>.  </p>
<p>Gnome shell can be installed through the Ubuntu Software Center, or from the command line with</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> gnome-shell</pre></div></div>

<h2>2. KDE</h2>
<p>The other big kid on the block is KDE. It and Gnome have been battling for the Linux desktop for years, each with their own group of avid supporters. As one of the heavyweight contenders, KDE packs a full suite of mature and capable software, a beautiful desktop, and decades of Linux desktop design experience.  </p>
<p><img alt="kde-fullscreen" src="http://imagecdn.maketecheasier.com/2011/02/kde-fullscreen.jpg" title="KDE 4.6" class="aligncenter" width="577" height="361" /></p>
<p>All of KDE&#8217;s power and flexibility does not come cheap. A full KDE installation is a pretty hefty thing, and for all its fine points, KDE might not be a great option for low end or mobile computers.  </p>
<p>KDE can be installed through the Ubuntu Software Center or from the command line with</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> kde-standard</pre></div></div>

<p>or if you want, download <a href="http://kubuntu.com">Kubuntu</a>, which comes with KDE as the default DE. </p>
<h2>3. XFCE</h2>
<p>For a long time, <a href="http://maketecheasier.com/a-long-overdue-look-at-xfce/2010/12/02">XFCE</a> was jokingly known as &#8220;Gnome Lite&#8221;. It uses similar backend software (such as GTK) and has an overall look and feel similar to the Gnome 2.x series. It&#8217;s generally regarded as lighter and faster than Gnome, however most of those comparisons were made prior to Gnome 3. Now the two desktops take such vastly different approaches, and such comparisons would have less meaning.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/unityalternatives-xfce.jpg" alt="unityalternatives-xfce" title="unityalternatives-xfce" width="600" height="375" class="aligncenter size-full wp-image-40117" /></p>
<p>Still, its resemblance to Gnome 2 is much of the reason why many people (including <a href="https://plus.google.com/106327083461132854143/posts/SbnL3KaVRtM" target="_blank">Linus Torvalds</a> himself) have migrated to XFCE due to dissatisfaction with Gnome 3.  </p>
<p>XFCE can be installed through the Ubuntu Software Center or from the command line with</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> xfce4</pre></div></div>

<p>or download <a href="http://xubuntu.com">Xubuntu</a> which comes with XFCE.</p>
<h2>4. LXDE</h2>
<p>A lightweight option that&#8217;s been growing in popularity lately is LXDE. It&#8217;s a desktop environment built around the OpenBox window manager. It includes several small apps and utilities like the PCManFM file manager and a custom panel and terminal.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/unityalternatives-lxde.jpg" alt="unityalternatives-lxde" title="unityalternatives-lxde" width="600" height="375" class="aligncenter size-full wp-image-40129" /></p>
<p>LXDE is a fairly nice setup, particularly on lower-end machines, but it&#8217;s been this author&#8217;s experience that LXDE and its related apps always seem to have the feel of being <em>almost</em> done. If you&#8217;re the type of user who likes everything to be smoothly polished, feature-complete, and rock-solid &#8211; LXDE might not be great for you. If, however, you need something light, fast, and simple &#8211; I highly recommend you try it out.  It may not be your dream desktop, but it&#8217;s <em>almost</em> there.  </p>
<p>LXDE can be installed through the Ubuntu Software Center or from the command line with</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> lxde</pre></div></div>

<h2>5. Enlightenment (E17)</h2>
<p>Once considered a thing of myth and legend, E17 is now a part of Ubuntu 11.10&#8242;s online repositories. Many years of development have gone in to this release, and it&#8217;s got loads of features. This is a desktop that aims to do it all &#8211; high performance, high productivity, extreme flexibility, and loads of eye candy. Chances are it does not much resemble any desktop environment you&#8217;ve used before, so if you decide to take the plunge, be prepared for a little bit of a learning curve.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/unityalternatives-e17.jpg" alt="unityalternatives-e17" title="unityalternatives-e17" width="600" height="375" class="aligncenter size-full wp-image-40125" /></p>
<p>Once you&#8217;ve learned to do things the &#8220;enlightened&#8221; way, it may be tough to switch back. E17 can be installed through the Ubuntu Software Center or from the command line with</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> e17</pre></div></div>

<h2>Conclusion</h2>
<p>Each of these has its own pros and cons. Some people love Gnome 3, some think it&#8217;s garbage. Some people use KDE every day, others won&#8217;t go near it. The beauty of Linux is that whatever you like, you can have it &#8211; for free. If it doesn&#8217;t exist, make it. That&#8217;s what open source is all about: choice. Hopefully this guide has helped you make yours.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27&amp;title=5+Alternatives+to+Unity+in+Ubuntu+Oneiric&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27">5 Alternatives to Unity in Ubuntu Oneiric</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/5-alternatives-to-unity-in-ubuntu-oneiric/2011/10/27/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>How to Auto-login to Gnome Shell In Ubuntu Oneiric [Quick Tips]</title>
		<link>http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25</link>
		<comments>http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25#comments</comments>
		<pubDate>Tue, 25 Oct 2011 22:00:03 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[gnome-shell]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=40395</guid>
		<description><![CDATA[In Ubuntu Oneiric, the default desktop session is the Unity Desktop (or Unity 2D depend on your hardware capabilities). If you have set the computer to auto-login to your desktop whenever you boot up, it will always login to the Unity desktop, even though you have installed Gnome-shell or classic Gnome. It doesn&#8217;t matter which [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25&amp;title=How+to+Auto-login+to+Gnome+Shell+In+Ubuntu+Oneiric+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25">How to Auto-login to Gnome Shell In Ubuntu Oneiric [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/10/autologin-gnome-shell.jpg" alt="autologin-gnome-shell" title="autologin-gnome-shell" width="600" height="371" class="aligncenter size-full wp-image-40398" /></p>
<p>In Ubuntu Oneiric, the default desktop session is the Unity Desktop (or Unity 2D depend on your hardware capabilities). If you have set the computer to auto-login to your desktop whenever you boot up, it will always login to the Unity desktop, even though you have installed Gnome-shell or classic Gnome. It doesn&#8217;t matter which desktop session (Gnome shell, classic gnome or Unity) you are using before you shut down, because on the next boot up, it will automatically login to the Unity desktop again. If you have Gnome shell installed, here&#8217;s how you can change the auto-login to Gnome shell instead of the Unity desktop.<br />
<span id="more-40395"></span><br />
Open a terminal and type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>lib<span style="color: #000000; font-weight: bold;">/</span>lightdm<span style="color: #000000; font-weight: bold;">/</span>lightdm-set-defaults <span style="color: #660033;">-s</span> gnome-shell</pre></div></div>

<p>That&#8217;s it. Simple fix. Big differences. Less annoyance.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25&amp;title=How+to+Auto-login+to+Gnome+Shell+In+Ubuntu+Oneiric+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25">How to Auto-login to Gnome Shell In Ubuntu Oneiric [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/auto-login-to-gnome-shell-in-ubuntu-oneiric/2011/10/25/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Useful Ubuntu Unity Lenses For Ubuntu Oneiric</title>
		<link>http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24</link>
		<comments>http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24#comments</comments>
		<pubDate>Mon, 24 Oct 2011 23:58:23 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[lenses]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[unity]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=40100</guid>
		<description><![CDATA[One of the best feature of the Unity desktop in Ubuntu is the lens. Lens are the search feature in the Dash. Different lenses allow you to perform search functions, for example, the Music Lens allows you to search for music that you have recently listened to while the Applications Lens searches for all your [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24&amp;title=Useful+Ubuntu+Unity+Lenses+For+Ubuntu+Oneiric&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24">Useful Ubuntu Unity Lenses For Ubuntu Oneiric</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/10/lens-main.jpg" alt="lens-main" title="lens-main" width="200" height="128" class="alignleft size-full wp-image-40351" />One of the best feature of the Unity desktop in Ubuntu is the lens. Lens are the search feature in the Dash. Different lenses allow you to perform search functions, for example, the Music Lens allows you to search for music that you have recently listened to while the Applications Lens searches for all your applications in the system. In Ubuntu Oneiric, it comes with three default lenses, namely the Applications lens, Recent Files/Folders lens and the Music lens. Below are several useful lens that you can add on to your system.<br />
<span id="more-40100"></span><br />
<strong>Note</strong>: <em>The lenses listed below are for Ubuntu Oneiric only. There are several other lenses that are available for Natty only and I purposely left them out of the list. Most of the lenses below will work with Natty too, but some of them have different packages name, so the installation method might not work.</em></p>
<h2>1. Ask Ubuntu</h2>
<p>Are you an active user of AskUbuntu? Or that you have plenty of questions about Ubuntu and is always looking to AskUbuntu for answer? Good news for you, the AskUbuntu lens allows you to search the AskUbuntu site right in your desktop (Dash). </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/lens-askubuntu.png" alt="lens-askubuntu" title="lens-askubuntu" width="484" height="227" class="aligncenter size-full wp-image-40339" /></p>
<p><strong>Installation:</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:askubuntu-tools<span style="color: #000000; font-weight: bold;">/</span>ppa
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update 
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> unity-askubuntu-lens
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> upgrade</pre></div></div>

<p>Log out and log in again.</p>
<h2>2. Bookmarks lens</h2>
<p>Bookmarks Lens allows you to search your web bookmarks directly from the desktop. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/lens-bookmarks.jpg" alt="lens-bookmarks" title="lens-bookmarks" width="540" height="268" class="aligncenter size-full wp-image-40341" /></p>
<p><strong>Installation</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:nilarimogard<span style="color: #000000; font-weight: bold;">/</span>webupd8
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> bookmarks-lens</pre></div></div>

<p>Log out and log in again. </p>
<h2>3. Gwibber lens</h2>
<p>If you have connected your various Twitter, Facebook and identi.ca accounts, you can now search your tweets, status update or message directly from Dash. There are also ways for you to filter results to show only messages, replies, link, images, videos etc. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/lens-gwibber.jpg" alt="lens-gwibber" title="lens-gwibber" width="600" height="370" class="aligncenter size-full wp-image-40342" /></p>
<p><strong>Installation</strong></p>
<p>Click <a href="apt:unity-lens-gwibber">here</a> to install, or in the terminal, type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> unity-lens-gwibber</pre></div></div>

<p>Log out and log in again. </p>
<h2>4. Google Books Lens</h2>
<p>For those books lovers, you can now use the Google Books lens to look for ebooks in Google Books.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:davidc3<span style="color: #000000; font-weight: bold;">/</span>books-lens
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> unity-lens-books</pre></div></div>

<p>Log out and log in again.</p>
<h2>5. Gdocs Unity Lens</h2>
<p>Do you always use Google Docs to manage your documents? You can now use the Google Docs lens to search your documents from the desktop. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/lens-gdocs.jpg" alt="lens-gdocs" title="lens-gdocs" width="545" height="300" class="aligncenter size-full wp-image-40346" /></p>
<p><strong>Installation</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:nilarimogard<span style="color: #000000; font-weight: bold;">/</span>webupd8
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> unity-lens-gdocs</pre></div></div>

<p>Next, open up the unity-gdocs-lens.py file and scroll down to line 124.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">gksu gedit <span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>unity-lens-gdocs.py</pre></div></div>

<p>Replace <strong>GDOC_USERNAME</strong> with your Google username and <strong>GDOC_PASSWORD</strong> with your Google password. Save and close the file.</p>
<p>Lastly, run Unity Gdocs lens:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">unity-lens-gdocs.py
setsid unity</pre></div></div>

<p>Sources: <a href="http://www.webupd8.org/2011/09/unity-google-docs-lens-for-ubuntu-1110.html" target="_blank">WebUpd8</a></p>
<h2>6. Web Sources Place</h2>
<p>Would you like to be able to search the web without having to open a browser? This is what Web Sources Place is about. It allows you to perform a web search and returns a list of sources instead of pages (e.g. a search for a band name might list MySpace, Wikipedia, Amazon and Last.fm as results, but not individual pages thereon).</p>
<p><strong>Installation</strong></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:cscarney<span style="color: #000000; font-weight: bold;">/</span>unity-web-place
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update 
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> unity-place-websearch</pre></div></div>

<p><strong>Note</strong>: <em>The PPA has stated that it is working with Oneiric, but I have not been able to get it to install. </em></p>
<h2>Conclusion</h2>
<p>The lens feature was introduced in Ubuntu Natty and has only become more mature in Oneiric. As of now, the number of lens for Ubuntu Oneiric is still very limited. Hopefully, more developers will come out with more useful and handy lenses for the platform. As for the lenses mentioned above, you don&#8217;t have to install all of them. Just grab the ones that you need will do.</p>
<p>What other lenses do you use in your Oneiric?</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24&amp;title=Useful+Ubuntu+Unity+Lenses+For+Ubuntu+Oneiric&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24">Useful Ubuntu Unity Lenses For Ubuntu Oneiric</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/useful-ubuntu-unity-lenses-for-ubuntu-oneiric/2011/10/24/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Reactivate ALT + F2 Shortcut in Gnome Shell in Ubuntu Oneiric [Quick Tips]</title>
		<link>http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24</link>
		<comments>http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24#comments</comments>
		<pubDate>Mon, 24 Oct 2011 22:00:45 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[alt+f2]]></category>
		<category><![CDATA[gnome-shell]]></category>
		<category><![CDATA[run]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=40310</guid>
		<description><![CDATA[If you have used Gnome Shell in Ubuntu Oneiric, one of the things you might realize is that the &#8220;Alt + F2&#8243; shortcut keys to open the Run prompt is no longer working. In fact, the &#8220;Alt + F2&#8243; shortcut keys was disabled for unknown reason. After the &#8220;Can&#8217;t disable login sound&#8221; issue, this is [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24&amp;title=How+to+Reactivate+ALT+%2B+F2+Shortcut+in+Gnome+Shell+in+Ubuntu+Oneiric+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24">How to Reactivate ALT + F2 Shortcut in Gnome Shell in Ubuntu Oneiric [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/10/altf2-main.png" alt="altf2-main" title="altf2-main" width="395" height="118" class="alignleft size-full wp-image-40361" />If you have used Gnome Shell in Ubuntu Oneiric, one of the things you might realize is that the &#8220;Alt + F2&#8243; shortcut keys to open the Run prompt is no longer working. In fact, the &#8220;Alt + F2&#8243; shortcut keys was disabled for unknown reason. After the &#8220;<a href="http://maketecheasier.com/disable-login-sound-in-ubuntu-oneiric-quick-tips/2011/09/15" title="How to Disable Login Sound in Ubuntu Oneiric [Quick Tips]">Can&#8217;t disable login sound</a>&#8221; issue, this is yet another small issue that causes great irritation to the users.<br />
<span id="more-40310"></span><br />
Anyway, as with all Linux distro, you can customize almost everything you want. Here&#8217;s how you can fix the issue and reactivate the &#8220;Alt + F2&#8243; shortcut keys.</p>
<p>1. Go to System Settings and click the &#8220;Keyboard&#8221; icon.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/altf2-system-settings.png" alt="altf2-system-settings" title="altf2-system-settings" width="600" height="459" class="aligncenter size-full wp-image-40357" /></p>
<p>2. Click on the &#8220;Shortcuts&#8221; tab. On the left panel, select &#8220;System&#8221;. On the right, select the first entry &#8220;Show the run command prompt&#8221; and click on &#8220;Disabled&#8221; to activate it. You should now see &#8220;New shortcut&#8230;&#8221;</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/altf2-enable-run-prompt.png" alt="altf2-enable-run-prompt" title="altf2-enable-run-prompt" width="600" height="392" class="aligncenter size-full wp-image-40358" /></p>
<p>3. Now, press &#8220;Alt + F2&#8243;. It should show on the screen. </p>
<p>That&#8217;s it. Close the window and restart the computer. Your &#8220;ALt + F2&#8243; shortcut key to activate the RUN prompt should work in the next boot up. </p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24&amp;title=How+to+Reactivate+ALT+%2B+F2+Shortcut+in+Gnome+Shell+in+Ubuntu+Oneiric+%5BQuick+Tips%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24">How to Reactivate ALT + F2 Shortcut in Gnome Shell in Ubuntu Oneiric [Quick Tips]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/reactivate-alt-f2-shortcut-in-gnome-shell/2011/10/24/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Can I Install Amd64 Ubuntu On My Intel 64-bit Machine? [MTE Explains]</title>
		<link>http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17</link>
		<comments>http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17#comments</comments>
		<pubDate>Mon, 17 Oct 2011 23:58:24 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[32 bit]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[amd64]]></category>
		<category><![CDATA[i386]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=39963</guid>
		<description><![CDATA[If you have been to the Ubuntu download page, you will notice that there is a big list of ISOs that you can download. For the desktop version, there are always two versions: amd64 and i386. Which one should you download? Can I install the amd64 version of Ubuntu on my Intel machine? Let MTE [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17&amp;title=Can+I+Install+Amd64+Ubuntu+On+My+Intel+64-bit+Machine%3F+%5BMTE+Explains%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17">Can I Install Amd64 Ubuntu On My Intel 64-bit Machine? [MTE Explains]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/10/amd64-main.png" alt="amd64-main" title="amd64-main" width="288" height="196" class="alignleft size-full wp-image-39996" />If you have been to the Ubuntu download page, you will notice that there is a big list of ISOs that you can download. For the desktop version, there are always two versions: <em>amd64</em> and <em>i386</em>. Which one should you download? Can I install the <em>amd64</em> version of Ubuntu on my Intel machine? Let MTE explains to you.<br />
<span id="more-39963"></span><br />
For those who are unsure, <em>i386</em> refers to 32-bit version while the <em>amd64</em> refers to the 64-bit version.</p>
<h2>32-bit vs 64-bit. What&#8217;s the difference?</h2>
<p>In short, a 32-bit and 64-bit computer are different in architecture. The main difference lie in the length of data supported by each architecture. A 32-bit machine can only understand data that is 32-bit long. Anything more than that would not be able to read by the machine. Similarly, a 64-bit machine can read data up to 64 bit long. Even though 64 is twice of 32, a 64-bit data can hold much more than double the information of a 32-bit data. This also explains why a 64-bit machine can process and run faster and effectively than a 32-bit machine. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/amd64-32-vs-64.jpg" alt="amd64-32-vs-64" title="amd64-32-vs-64" width="500" height="348" class="aligncenter size-full wp-image-39998" /></p>
<p>Another difference between 32-bit and 64-bit machine is the amount of memory RAM each can support. For a 32-bit machine, the maximum it can support is only 4GB, whereas for a 64-bit machine, there is theoretically no memory limit cap (or up to 17.2 BILLION gigabytes of system memory). However, most OSes limit to only 16GB (or 32GB) of RAM, which is considered very powerful for today&#8217;s desktop computing standard.</p>
<h2>What is AMD64?</h2>
<p>Instead of using 32-bit and 64-bit, people give them names. A 32-bit architecture is often referred to as <em>i386</em> or <em>x86</em> while a 64-bit architecture is widely known as any of the following: AMD64/EM64T/x86-64/x64, depending on the products and the manufacturers.</p>
<p>Why AMD64, you might ask? According to <a href="http://en.wikipedia.org/wiki/Amd64">Wikipedia</a>, AMD was the first to come up with the specification of a 64-bit processor. They initially named it x86-64, but later renamed it to AMD64 when they released their first 64-bit processor: AMD-K8 series. Ever since then, AMD64 has become the term for 64-bit processor. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/amd64-32-logo.jpg" alt="amd64-logo" title="amd64-logo" width="288" height="288" class="aligncenter size-full wp-image-39999" /></p>
<p>Intel (a competitor of AMD) obviously won&#8217;t use AMD64 name for its 64-bit CPU, that why they came up with EM64T, and later renamed it to Intel 64. In some Intel mainboard, during the BIOS bootup, you still can see the word &#8220;EM64T&#8221; appears in your monitor.</p>
<p>In short, in today technology, AMD64 is now referring to the 64-bit architecture and is not tied with the AMD CPU.</p>
<h2>Does AMD64 Ubuntu only works with AMD processor?</h2>
<p>Back to the Ubuntu ISO download issue, if you are using a 32-bit computer, you will download the i386 version. If you are using a 64-bit computer, you will download the amd64 version, regardless what brand of CPU you are using.</p>
<p>If you are wondering, a 64-bit computer can run the i386 (32-bit) version of Ubuntu as well. It is just that you are not utilizing your computer to the maximum. </p>
<p>Lastly, don&#8217;t bother to run AMD64 Ubuntu on your 32-bit computer. Your system might crash. </p>
<h2>Can I run 32-bit applications on 64-bit Ubuntu, and vice-versa?</h2>
<p>In usual cases, you can <a href="http://maketecheasier.com/run-32-bit-apps-in-64-bit-linux/2009/08/10">run 32-bit applications on 64-bit Ubuntu</a>, but you won&#8217;t be fully utilizing your system. However, the vice versa is not true. You won&#8217;t be able to run 64-bit applications on a 32-bit machine (just imagine, you can place a small container into a big container, but you can&#8217;t do that the other way round). When installing applications in Synaptic, you might notice that some software comes with the 32-bit and 64 bit version (only shows up when you are using the 64-bit Ubuntu). You can just pick the one you want. Additionally, not all 32-bit applications will work in 64-bit machine, particularly for applications that require access to system hardware settings.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17&amp;title=Can+I+Install+Amd64+Ubuntu+On+My+Intel+64-bit+Machine%3F+%5BMTE+Explains%5D&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17">Can I Install Amd64 Ubuntu On My Intel 64-bit Machine? [MTE Explains]</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/can-i-install-amd64-ubuntu-on-my-intel-64-bit-machine/2011/10/17/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Remove Appmenu (Global Menu) In Ubuntu Oneiric</title>
		<link>http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14</link>
		<comments>http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14#comments</comments>
		<pubDate>Fri, 14 Oct 2011 23:58:13 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[appmenu]]></category>
		<category><![CDATA[global menu]]></category>
		<category><![CDATA[menubar]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=39952</guid>
		<description><![CDATA[The appmenu (also known as the global menu) in Ubuntu Oneiric can be both a useful and annoying feature. When it is in action, it reduces the screen space required to render the menu bar. If you are using a computer with small screen, this is very useful for you. On the other hand, if [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14&amp;title=How+to+Remove+Appmenu+%28Global+Menu%29+In+Ubuntu+Oneiric&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14">How to Remove Appmenu (Global Menu) In Ubuntu Oneiric</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/10/appmenu-main.png" alt="appmenu-main" title="appmenu-main" width="330" height="180" class="alignleft size-full wp-image-39959" />The appmenu (also known as the global menu) in Ubuntu Oneiric can be both a useful and annoying feature. When it is in action, it reduces the screen space required to render the menu bar. If you are using a computer with small screen, this is very useful for you. On the other hand, if you have a large screen, having to move your mouse to the top left corner of the screen every time you want to access the menu can be a troublesome chores.</p>
<p>For those who wish to remove the appmenu, simply remove the <em>appmenu</em> app with the following command:<br />
<span id="more-39952"></span></p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> autoremove appmenu-gtk appmenu-gtk3 appmenu-qt</pre></div></div>

<p>Restart the PC. Your menu bar should stick to the top of your application window now. </p>
<h2>Firefox</h2>
<p>If you are using Firefox, you will notice the above method will not work. This is because Oneiric is using a Firefox extension to enable the global menu effect. </p>
<p>1. In your Firefox, go to &#8220;Tools -&gt; Add-ons -&gt; Extensions&#8221;. Disable the &#8220;Global Menu Bar Integration&#8221; extension (You can&#8217;t un-install it).</p>
<p>2. Restart Firefox. The Firefox menu bar should stick to the application window now. </p>
<h2>Re-enable Appmenu</h2>
<p>To re-enable the appmenu, all you have to do is to re-install the appmenu packages.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> appmenu-gtk appmenu-gtk3 appmenu-qt</pre></div></div>

<p>and restart your computer. </p>
<p>That&#8217;s it.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14&amp;title=How+to+Remove+Appmenu+%28Global+Menu%29+In+Ubuntu+Oneiric&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14">How to Remove Appmenu (Global Menu) In Ubuntu Oneiric</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/remove-app-menu-in-ubuntu-oneiric/2011/10/14/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A Simple User Guide For Ubuntu Oneiric</title>
		<link>http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13</link>
		<comments>http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13#comments</comments>
		<pubDate>Thu, 13 Oct 2011 23:58:46 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[launcher]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[unity desktop]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=39884</guid>
		<description><![CDATA[Ubuntu Oneiric, while added much improvements to its Unity desktop, also brought lot of changes that make it more confusing and difficult to use. Users who have come from previous version of Ubuntu will find that some of their favourite applications are missing and replaced with another application that is either more resource intensive or [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13&amp;title=A+Simple+User+Guide+For+Ubuntu+Oneiric&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13">A Simple User Guide For Ubuntu Oneiric</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></description>
			<content:encoded><![CDATA[<p><img src="http://imagecdn.maketecheasier.com/2011/10/oneiric-logo.png" alt="oneiric-logo" title="oneiric-logo" width="180" height="183" class="alignleft size-full wp-image-39905" />Ubuntu Oneiric, while added much improvements to its Unity desktop, also brought lot of changes that make it more confusing and difficult to use. Users who have come from previous version of Ubuntu will find that some of their favourite applications are missing and replaced with another application that is either more resource intensive or more difficult to use. New users will also be confused where they can find all their applications and system settings. In this tutorial, we provide a simple user guide to help you familiarize with Ubuntu Oneiric.<br />
<span id="more-39884"></span></p>
<h2>1. How to Add/Remove Applications to/from the Launcher Bar</h2>
<p>The launcher bar comes with a set of default launchers that you may not have use for. To remove application from the launcher bar, simply right-click on its icon and uncheck &#8220;Keep in launcher&#8221;. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/oneiric-remove-app.png" alt="oneiric-remove-app" title="oneiric-remove-app" width="276" height="273" class="aligncenter size-full wp-image-39896" /></p>
<p>To add application to the launcher bar, first open the application, then right-click on its icon and select &#8220;Keep in launcher&#8221;. You can drag and rearrange the icons to the order of your preferences.</p>
<h2>2. How to open an application in Unity desktop</h2>
<p>Unlike the old Gnome desktop, there is no Applications menu at the top panel where you can click to launch the application you want. To open an application in Unity desktop, you have to search for it. </p>
<p><strong>The default method:</strong></p>
<p>Click on the first icon on the launcher bar (or press &#8220;Super&#8221; button) to access the Dash. Search for your application by typing its name in the search field. Select the application and Press Enter.</p>
<p>Alternatively, you can click on the Application icon at the bottom of the Dash (second from left) and scroll through the list of application until you found the app you want. </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/oneiric-launch-apps.jpg" alt="oneiric-launch-apps" title="oneiric-launch-apps" width="600" height="390" class="aligncenter size-full wp-image-39898" /></p>
<p><strong>Alternative method 1: Install Classicmenu indicator</strong></p>
<p>The ClassicMenu Indicator is a third-party appindicator that brings the classic Gnome menu back. To install:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> add-apt-repository ppa:diesch<span style="color: #000000; font-weight: bold;">/</span>testing
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> update
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> classicmenu-indicator</pre></div></div>

<p>Run ClassicMenu indicator from Dash. You should be able to access your applications from the system tray now.</p>
<p><strong>Alternative method 2: use quick launcher app like Gnome Do or Synapse</strong></p>
<p>Quick Launcher app like <a href="http://maketecheasier.com/gnome-do-a-fast-launcher-for-your-linux-desktop/2008/06/05">Gnome Do</a> or <a href="http://maketecheasier.com/synapse-useful-zeitgeist-based-application-launcher/2010/12/15">Synapse</a> allows you to open your application very quickly. You just have to press a hotkey (Ctrl + Space) to activate the search box and you can quickly search for the app you want. </p>
<h2>3. How to Add Quicklist to the Launcher in the Launcher Bar</h2>
<p>Quicklists are the list of options when you right-click on an icon in the Launcher Bar. For example, when you right-click on the folder icon, you can quickly access your Home, Documents, Music and various folders that you have added to bookmarks.</p>
<p><a href="http://maketecheasier.com/easily-create-quicklist-for-ubuntu-unity-launcher/2011/06/06" title="How to Easily Create Quicklist For Ubuntu Unity Launcher">Follow the instructions here to add quicklist to the launcher.</a></p>
<h2>4. How to Configure the Unity Desktop</h2>
<p>The default installation of Ubuntu Oneiric doesn&#8217;t come with any option to configure the Unity desktop. You can, however, install CompizConfig Settings Manager to access the configuration menu.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> compizconfig-settings-manager</pre></div></div>

<p>Once installed, run the app and scroll down the list till you see the Ubuntu Unity Plugin. Click on it. From here, you can configure the behaviour of the launcher, the shortcut key, the switcher and some experimental features.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/oneiric-compiz-settings.png" alt="oneiric-compiz-settings" title="oneiric-compiz-settings" width="600" height="335" class="aligncenter size-full wp-image-39899" /></p>
<p>If you are using an old computer that doesn&#8217;t support Compiz, most probably you are running Unity 2D instead of the usual Unity desktop. To configure Unity 2D, you have to install <em>dconf-tools</em> by clicking <a href="apt:dconf-tools">here</a> or use the following command in the terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> dconf-tools</pre></div></div>

<p>Next, in the terminal, type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">dconf-editor</pre></div></div>

<p>Navigate to Desktop -&gt; Unity. You can find several configuration options here. </p>
<h2>5. How to Restore Synaptic package Manager</h2>
<p>The useful and popular Synaptic Package Manager was removed from Ubuntu Oneiric in favour of Ubuntu Software Center. Luckily you can easily restore it by installing the Synaptic application. Click <a href="apt:synaptic">here</a> to install Synaptic Package Manager or type the following command in the terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> synaptic</pre></div></div>

<h2>6. How to install .deb File Without Using Ubuntu Software Center</h2>
<p>Ubuntu Natty and Oneiric open the Ubuntu Software Center when you double-click to install any .deb file. As USC is quite resource-intensive, the whole installation process is often very slow. A faster and quicker way is to use the gdebi package to manage your deb file. Click <a href="apt:gdebi">here</a> to install or type the following command in the terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> gdebi</pre></div></div>

<p>Once installed, right-click on any deb file and select Properties. Go to the &#8220;Open With&#8221; tab and select gdebi as the default application. That&#8217;s it. Whenever you double-click to install a deb file, the gdebi package installer will open up instead of Ubuntu Software Center.</p>
<h2>7. How to Change Login Screen Background</h2>
<p>To change the background of the login screen (LightDM), open a terminal and type:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">nano</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>lightdm<span style="color: #000000; font-weight: bold;">/</span>unity-greeter.conf</pre></div></div>

<p>At the field starting with &#8220;<em>background=&#8230;</em>&#8220;, change the background path to your favourite wallpaper. Leave everything else untouched.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/oneiric-unity-greeter.png" alt="oneiric-unity-greeter" title="oneiric-unity-greeter" width="593" height="325" class="aligncenter size-full wp-image-39900" /></p>
<p>Once done, press &#8220;Ctrl + O&#8221; follow by Enter. Lastly, press &#8220;Ctrl + X&#8221; to exit.</p>
<p>Log out. You should see your new login background in action.</p>
<h2>8. How to Restart Ubuntu Oneiric</h2>
<p>If you have noticed, there is no &#8220;Restart&#8221; option at the Power menu. You can only Logout, Shut Down, Suspend or Hibernate. What if you need to Restart your PC? Fret not, the &#8220;Restart&#8221; option is integrated with the Shut Down option. Click the Shut Down option and you will be able to select between Restart or Shut Down in the popup window.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/oneiric-restart.png" alt="oneiric-restart" title="oneiric-restart" width="573" height="168" class="aligncenter size-full wp-image-39901" /></p>
<h2>9. How to Restore Gnome Classic</h2>
<p>If you don&#8217;t like the Unity desktop, you can switch back to the classic Gnome desktop.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> <span style="color: #c20cb9; font-weight: bold;">install</span> gnome-session-fallback</pre></div></div>

<p>Log out and choose &#8220;Gnome Classic&#8221; in the login screen.</p>
<p><strong>Note</strong>: <em>The Gnome Classic is running on the Gnome 3 platform, so don&#8217;t expect everything to be the same as the old Gnom</em></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13" target="_blank"><img src="http://images.maketecheasier.com/diggme.png" style="border:none;margin-right:5px" ></a><a href="http://www.facebook.com/sharer.php?u=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13" target="_blank"><img src="http://images.maketecheasier.com/fb.jpg" style="border:none;margin-right:5px" ></a><a href="http://www.google.com/reader/link?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13&amp;title=A+Simple+User+Guide+For+Ubuntu+Oneiric&amp;srcTitle=MakeTechEasier.com" target="_blank"><img src="http://images.maketecheasier.com/gbuzz-feed.png" style="border:none;margin-right:5px" ></a><a href="http://www.stumbleupon.com/submit?url=http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13">A Simple User Guide For Ubuntu Oneiric</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)
<br/>
Follow us at <a href="http://www.facebook.com/MakeTechEasier">Facebook</a> | <a href="http://twitter.com/MakeTechEasier">Twitter</a></p>
]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/a-simple-user-guide-for-ubuntu-oneiric/2011/10/13/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

