<?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; terminal</title>
	<atom:link href="http://maketecheasier.com/tag/terminal/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 Solve &#8220;The following signatures were invalid: BADSIG&#8221; Error in Ubuntu Updates</title>
		<link>http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/13</link>
		<comments>http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/13#comments</comments>
		<pubDate>Fri, 13 Jan 2012 15:58:02 +0000</pubDate>
		<dc:creator>Abhishek Prakash</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[badsig]]></category>
		<category><![CDATA[Clean]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=43865</guid>
		<description><![CDATA[It&#8217;s been a long time since I had connected my Ubuntu notebook to Internet. As a result when I connected it to internet after two weeks of gap, as all of us know that Ubuntu is quite fond of providing updates on a regular basis, I was expecting loads of updates to be provided by [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/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/solve-badsig-error-in-ubuntu/2012/01/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/solve-badsig-error-in-ubuntu/2012/01/13&amp;title=How+to+Solve+%26%238220%3BThe+following+signatures+were+invalid%3A+BADSIG%26%238221%3B+Error+in+Ubuntu+Updates&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/solve-badsig-error-in-ubuntu/2012/01/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/13">How to Solve &#8220;The following signatures were invalid: BADSIG&#8221; Error in Ubuntu Updates</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-error.jpg" alt="ubuntu-error" title="ubuntu-error" width="200" height="133" class="alignleft size-full wp-image-43985" />It&#8217;s been a long time since I had connected my Ubuntu notebook to Internet. As a result when I connected it to internet after two weeks of gap, as all of us know that Ubuntu is quite fond of providing updates on a regular basis, I was expecting loads of updates to be provided by Ubuntu.<br />
<span id="more-43865"></span><br />
I typed the following commands in terminal in attempt to update the system.</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> clean 
<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> upgrade</pre></div></div>

<p>The &#8220;clean&#8221; command did nothing.</p>
<p>The sudo apt-get update command came up with an error:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">Reading package lists... Done
W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http:<span style="color: #000000; font-weight: bold;">//</span>extras.ubuntu.com oneiric Release: The following signatures were invalid: BADSIG 16126D3A3E5C1192 Ubuntu Extras Archive Automatic Signing Key <span style="color: #000000; font-weight: bold;">&amp;</span>lt;ftpmaster<span style="color: #000000; font-weight: bold;">@</span>ubuntu.com<span style="color: #000000; font-weight: bold;">&amp;</span>gt;
&nbsp;
W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http:<span style="color: #000000; font-weight: bold;">//</span>archive.canonical.com oneiric Release: The following signatures were invalid: BADSIG 40976EAF437D05B5 Ubuntu Archive Automatic Signing Key <span style="color: #000000; font-weight: bold;">&amp;</span>lt;ftpmaster<span style="color: #000000; font-weight: bold;">@</span>ubuntu.com<span style="color: #000000; font-weight: bold;">&amp;</span>gt;
&nbsp;
W: GPG error: http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net oneiric Release: The following signatures were invalid: BADSIG E0319082F37F3AB0 Launchpad fixes <span style="color: #000000; font-weight: bold;">for</span> aprsd
W: GPG error: http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net oneiric Release: The following signatures were invalid: BADSIG 73AD8184264CE9C6 Launchpad PPA <span style="color: #000000; font-weight: bold;">for</span> Simon Schneegans
W: GPG error: http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net oneiric Release: The following signatures were invalid: BADSIG DFB844B8BB91632D Launchpad PPA <span style="color: #000000; font-weight: bold;">for</span> Weather Indicator Team
W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net oneiric Release: The following signatures were invalid: BADSIG C2518248EEA14886 Launchpad VLC
&nbsp;
W: Failed to fetch http:<span style="color: #000000; font-weight: bold;">//</span>extras.ubuntu.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span>dists<span style="color: #000000; font-weight: bold;">/</span>oneiric<span style="color: #000000; font-weight: bold;">/</span>Release  
&nbsp;
W: Failed to fetch http:<span style="color: #000000; font-weight: bold;">//</span>archive.canonical.com<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span>dists<span style="color: #000000; font-weight: bold;">/</span>oneiric<span style="color: #000000; font-weight: bold;">/</span>Release  
&nbsp;
W: Failed to fetch http:<span style="color: #000000; font-weight: bold;">//</span>ppa.launchpad.net<span style="color: #000000; font-weight: bold;">/</span>webupd8team<span style="color: #000000; font-weight: bold;">/</span>gnome3<span style="color: #000000; font-weight: bold;">/</span>ubuntu<span style="color: #000000; font-weight: bold;">/</span>dists<span style="color: #000000; font-weight: bold;">/</span>oneiric<span style="color: #000000; font-weight: bold;">/</span>Release  
&nbsp;
W: Some index files failed to download. They have been ignored, or old ones used instead.</pre></div></div>

<p>Did you notice the last few lines? Those are the crucial ones and we need to focus on it. It says:</p>
<blockquote><p>W: A error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: http://extras.ubuntu.com oneiric Release: The following signatures were invalid: BADSIG 16126D3A3E5C1192 Ubuntu Extras Archive Automatic Signing Key &lt;ftpmaster@ubuntu.com&gt;</p></blockquote>
<p>That is our culprit here: Invalid signature error BADSIG.</p>
<h2>How to solve The following signatures were invalid: BADSIG error?</h2>
<p>To remove the bad signature error, open the terminal (Ctrl+Alt+T) and use the commands given below one by one:</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> clean 
<span style="color: #7a0874; font-weight: bold;">cd</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: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mv</span> lists lists.old 
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mkdir</span> <span style="color: #660033;">-p</span> lists<span style="color: #000000; font-weight: bold;">/</span>partial 
<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>After using these commands you should get rid of the errors and your Update Manager should be working fine.</p>
<p>Still got problem? Do tell me if you still facing difficulties with the BADSIG or Ubuntu Update Manger. I would like to help you out. Keep in touch by subscribing to the newsletter. Enjoy :)</p>
<p>Image credit:<a href="http://BigStockPhoto.com" title="Big Stock Photo" target="_blank"> Big Stock Photo</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/13&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/13" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/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/solve-badsig-error-in-ubuntu/2012/01/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/solve-badsig-error-in-ubuntu/2012/01/13&amp;title=How+to+Solve+%26%238220%3BThe+following+signatures+were+invalid%3A+BADSIG%26%238221%3B+Error+in+Ubuntu+Updates&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/solve-badsig-error-in-ubuntu/2012/01/13" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/solve-badsig-error-in-ubuntu/2012/01/13">How to Solve &#8220;The following signatures were invalid: BADSIG&#8221; Error in Ubuntu Updates</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/solve-badsig-error-in-ubuntu/2012/01/13/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Useful Terminal Commands &amp; Tips For Mac OS X</title>
		<link>http://maketecheasier.com/useful-terminal-commands-tips-for-mac-os-x/2011/10/25</link>
		<comments>http://maketecheasier.com/useful-terminal-commands-tips-for-mac-os-x/2011/10/25#comments</comments>
		<pubDate>Tue, 25 Oct 2011 14:58:05 +0000</pubDate>
		<dc:creator>Adam Williams</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=39633</guid>
		<description><![CDATA[Mac OS X is built to be so user-friendly that anyone can use it, regardless of their level of experience when dealing with computers. However, delve beneath OS X&#8217;s shimmering surface by launching Terminal and you will find it possible to unlock hidden features, perform advanced tasks, tweak and troubleshoot your Mac. This tutorial will [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/useful-terminal-commands-tips-for-mac-os-x/2011/10/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/useful-terminal-commands-tips-for-mac-os-x/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/useful-terminal-commands-tips-for-mac-os-x/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/useful-terminal-commands-tips-for-mac-os-x/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/useful-terminal-commands-tips-for-mac-os-x/2011/10/25&amp;title=Useful+Terminal+Commands+%26%23038%3B+Tips+For+Mac+OS+X&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-terminal-commands-tips-for-mac-os-x/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/useful-terminal-commands-tips-for-mac-os-x/2011/10/25">Useful Terminal Commands &#038; Tips For Mac OS X</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/terminalcommands_icon.jpg" alt="terminalcommands_icon" title="terminalcommands_icon" width="200" height="200" class="alignleft size-full wp-image-40048" />Mac OS X is built to be so user-friendly that anyone can use it, regardless of their level of experience when dealing with computers. However, delve beneath OS X&#8217;s shimmering surface by launching Terminal and you will find it possible to unlock hidden features, perform advanced tasks, tweak and troubleshoot your Mac.</p>
<p>This tutorial will discuss some of the best and most popular beginner-friendly Terminal tricks and tips to be found on the Internet.<br />
<span id="more-39633"></span></p>
<h2>Disclaimer</h2>
<p>Usually it takes destructive behaviour or terrible luck to ruin your Mac&#8217;s OS X installation beyond repair, but using the Terminal could potentially bypass such safety and enable a user to cause themselves serious headaches, or even (in extreme cases) a completely ruined operating system. This is very unlikely and as long as you steer clear from &#8220;sudo&#8221; commands which require you to enter your password, you should be perfectly safe. However, I strongly advise you to back up your Mac fully and proceed at your own risk! </p>
<p>Some tips may only work for a particular OS, though I&#8217;ve taken care to only select Terminal commands which should mostly work on Leopard, Snow Leopard and Lion. </p>
<h2>Show Hidden Files</h2>
<p>Though OS X doesn&#8217;t really place much emphasis on hidden files and folders, some files and folders are hidden by default. This is usually for good reason and deleting the wrong thing can cause issues, but if you wish to show the hidden files, then enter the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defaults <span style="color: #c20cb9; font-weight: bold;">write</span> com.apple.finder AppleShowAllFiles <span style="color: #c20cb9; font-weight: bold;">true</span></pre></div></div>

<p>To undo this command, replace true with false.</p>
<h2>Enable 2D Dock</h2>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/terminalcommands_osxterminal-2ddock.jpg" alt="osxterminal-2ddock" title="osxterminal-2ddock" width="600" height="31" class="aligncenter size-full wp-image-39635" /></p>
<p>If you&#8217;ve ever moved your Dock to the left or right of screen (depending on which OS X version you&#8217;re running), you may have seen the 2D Dock shown above. If you&#8217;d like to enable the 2D Dock in all positions, enter the following into Terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defaults <span style="color: #c20cb9; font-weight: bold;">write</span> com.apple.dock no-glass <span style="color: #660033;">-boolean</span> YES</pre></div></div>

<p>Now restart your Dock to make the changes take effect by entering</p>

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

<p>To put your Dock back to normal, replace the &#8220;YES&#8221;&#8216; in the above code to &#8220;NO&#8221; and restart the Dock once again by entering the above killall command.</p>
<h2>Disable Dashboard</h2>
<p>I&#8217;ve never been a big fan of the Dashboard as it&#8217;s something of a RAM hog and I like it to be completely disabled in case I accidentally launch it. If you would like to do so too, enter this into Terminal and hit return:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defaults <span style="color: #c20cb9; font-weight: bold;">write</span> com.apple.dashboard mcx-disabled <span style="color: #660033;">-boolean</span> YES</pre></div></div>

<p>Once again restart Dock to make the changes take effect.</p>

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

<p>To undo this command and bring back Dashboard, just change &#8220;YES&#8221; to &#8220;NO&#8221; and restart your Dock by entering the killall command once again (note: the killall command can actually be inserted into the same line of code to save time, I&#8217;m making it separate here to give you a sense of what exactly is happening). </p>
<h2>Show The Library Folder In OS X Lion</h2>
<p>OS X Lion comes with the Library folder hidden by default but this can make troubleshooting any issues with your Mac, deleting the cache or just plain &#8220;tinkering&#8221; very difficult. In order to bring back the Library folder permanently, enter this command into Terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">chflags nohidden ~<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<h2>Hide Desktop Icons</h2>
<p><img src="http://imagecdn.maketecheasier.com/2011/10/terminalcommands_desktop.jpg" alt="terminalcommands_desktop" title="terminalcommands_desktop" width="600" height="375" class="align=none size-full wp-image-40052" /></p>
<p>A nice clean Desktop looks great but sometimes it&#8217;s not practical to keep all your files organised. If you&#8217;d like to hide all the icons on your Desktop through a Terminal command, enter the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defaults <span style="color: #c20cb9; font-weight: bold;">write</span> com.apple.finder CreateDesktop <span style="color: #660033;">-bool</span> <span style="color: #c20cb9; font-weight: bold;">false</span></pre></div></div>

<p>Then our friend the killall command once again</p>

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

<p>When you wish to bring your Desktop clutter back, copy and paste the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defaults <span style="color: #c20cb9; font-weight: bold;">write</span> com.apple.finder CreateDesktop <span style="color: #660033;">-bool</span> <span style="color: #c20cb9; font-weight: bold;">true</span></pre></div></div>

<p>Then enter the killall command. </p>
<h2>Launch An Application</h2>
<p>In order to launch applications from the Terminal, just follow this template, replacing Twitter with the name of whichever program you&#8217;d like to launch:</p>

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

<h2>Kill A Process</h2>
<p>If you need to quickly kill a process or application, type the following into Terminal, replacing Twitter with whichever process you&#8217;d like to kill.</p>

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

<h2>Open A Finder Window In Current Directory</h2>
<p>To quickly open a Finder window in whichever directory you&#8217;re currently in, enter the following into Terminal</p>

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

<h2>Change Grab&#8217;s Default Image Format</h2>
<p>OS X&#8217;s built-in screenshot utility Grab is very useful but if you&#8217;d like it to save files as JPG, enter the following into Terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">defaults <span style="color: #c20cb9; font-weight: bold;">write</span> com.apple.screencapture <span style="color: #7a0874; font-weight: bold;">type</span> jpg</pre></div></div>

<p>(note: You can also change jpg to png if preferred). </p>
<h2>Conclusion</h2>
<p>I hope that you&#8217;ve found some usefulness from these Terminal commands and that it encourages you to learn more about the power which can be unlocked from within the command-line. You can usually find an application which takes care of each of the commands posted above, but that&#8217;s a lot less informative and a lot less fun!</p>
<p>For the command-line veterans amongst our readers; if you&#8217;ve got any Terminal commands or tips which I&#8217;ve missed (and I&#8217;m sure there are several), please let us know about them in the comments below.  </p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/useful-terminal-commands-tips-for-mac-os-x/2011/10/25&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/useful-terminal-commands-tips-for-mac-os-x/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/useful-terminal-commands-tips-for-mac-os-x/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/useful-terminal-commands-tips-for-mac-os-x/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/useful-terminal-commands-tips-for-mac-os-x/2011/10/25&amp;title=Useful+Terminal+Commands+%26%23038%3B+Tips+For+Mac+OS+X&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-terminal-commands-tips-for-mac-os-x/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/useful-terminal-commands-tips-for-mac-os-x/2011/10/25">Useful Terminal Commands &#038; Tips For Mac OS X</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-terminal-commands-tips-for-mac-os-x/2011/10/25/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Manually Update Your Mac&#8217;s Virus Definitions</title>
		<link>http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/18</link>
		<comments>http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/18#comments</comments>
		<pubDate>Sat, 18 Jun 2011 23:58:22 +0000</pubDate>
		<dc:creator>Katie Gatto</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[Updates]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=34042</guid>
		<description><![CDATA[Even though the virus and malware attack on Mac is significantly lesser than its PC counterpart, that doesn&#8217;t mean you should be down on your guard. The recent Mac Defender issue has caused many people to panic and Apple has to respond with a security update to patch the loophole. Even then, that doesn&#8217;t mean [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/18&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/18" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/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/manually-update-macs-virus-definitions/2011/06/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/manually-update-macs-virus-definitions/2011/06/18&amp;title=How+to+Manually+Update+Your+Mac%26%238217%3Bs+Virus+Definitions&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/manually-update-macs-virus-definitions/2011/06/18" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/18">How to Manually Update Your Mac&#8217;s Virus Definitions</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/06/mac-keyboard.jpg" alt="mac-keyboard" title="mac-keyboard" width="200" height="150" class="alignleft size-full wp-image-34527" />Even though the virus and malware attack on Mac is significantly lesser than its PC counterpart, that doesn&#8217;t mean you should be down on your guard. The recent <a href="http://maketecheasier.com/protect-mac-from-macdefender/2011/06/10">Mac Defender</a> issue has caused many people to panic and Apple has to respond with a security update to patch the loophole. Even then, that doesn&#8217;t mean you are safe from all other attacks. As an end user, it is your role to make sure that your system (particularly virus definition) is is up to date.</p>
<p>While Apple does release new batch of definition files in its daily updates, some users have reported that the files have not been automatically updating the way that they should. This procedure shows you how to check if your virus definition files are up to date, and if not, how you can update them manually.<br />
<span id="more-34042"></span></p>
<h2>Check To See if Your Malware Definition Is Up To Date</h2>
<p>1. In the Spotlight, search for &#8220;<em>terminal</em>&#8220;. Open the Terminal app.</p>
<p><img class="aligncenter size-full wp-image-34046" title="spotlight - find teminal" src="http://imagecdn.maketecheasier.com/2011/06/mac-spotlight-find-teminal.png" alt="mac-spotlight-find-teminal" width="339" height="88" /></p>
<p>2. Copy and paste this command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">more</span> <span style="color: #000000; font-weight: bold;">/</span>System<span style="color: #000000; font-weight: bold;">/</span>Library<span style="color: #000000; font-weight: bold;">/</span>CoreServices<span style="color: #000000; font-weight: bold;">/</span>CoreTypes.bundle<span style="color: #000000; font-weight: bold;">/</span>Contents<span style="color: #000000; font-weight: bold;">/</span>Resources<span style="color: #000000; font-weight: bold;">/</span>XProtect.meta.plist</pre></div></div>

<p><img class="aligncenter size-full wp-image-34043" title="terminal - with command entered" src="http://imagecdn.maketecheasier.com/2011/06/mac-terminal-with-command-entered.png" alt="mac-terminal-with-command-entered" width="590" height="148" /></p>
<p>4. In the code that comes up, you should see a last modification date in the code. If this date is today, you do not need to update. If it is not today,  then you need to update your virus definitions manually. The date line should look like this:</p>
<p><img class="aligncenter size-full wp-image-34440" title="terminal - date line" src="http://imagecdn.maketecheasier.com/2011/06/mac-terminal-date-line.png" alt="mac-terminal-date-line" width="204" height="17" /></p>
<h2>How to Update You Virus Definitions</h2>
<p>You are going to love this one because it is so simple. Just follow these steps:</p>
<p>1. Open your System Preferences.</p>
<p>2. Click on the &#8220;Security Preferences&#8221; pane.</p>
<p>3. Uncheck the box next to the word &#8220;Automatically update safe downloads list”.</p>
<p><img class="aligncenter size-full wp-image-34045" title="Security - check box" src="http://imagecdn.maketecheasier.com/2011/06/mac-Security-check-box.png" alt="Security-check-box" width="600" height="481" /></p>
<p>4. Re-check the box.</p>
<p>There you have it. You will have your files automatically updated. You might want to double check your system with the same command to see if the file is is up to date. If you see today&#8217;s date, then you are good to go. If not, you might need to check your Mac for 1. virus that prevent the system for auto-update, 2. software defects. </p>
<p>There you have it, the best way to make sure that your system is up to date on the virus definitions that are available to you.</p>
<p>Image credit: <a href="http://www.flickr.com/photos/prakaz/1469279559" target="_blank" rel="nofollow">?rakaz</a></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/18&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/18" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/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/manually-update-macs-virus-definitions/2011/06/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/manually-update-macs-virus-definitions/2011/06/18&amp;title=How+to+Manually+Update+Your+Mac%26%238217%3Bs+Virus+Definitions&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/manually-update-macs-virus-definitions/2011/06/18" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/manually-update-macs-virus-definitions/2011/06/18">How to Manually Update Your Mac&#8217;s Virus Definitions</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/manually-update-macs-virus-definitions/2011/06/18/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Multitask at the Linux Command Line with Screen</title>
		<link>http://maketecheasier.com/multitask-at-linux-command-line/2011/04/28</link>
		<comments>http://maketecheasier.com/multitask-at-linux-command-line/2011/04/28#comments</comments>
		<pubDate>Thu, 28 Apr 2011 14:58:17 +0000</pubDate>
		<dc:creator>Joshua Price</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cli]]></category>
		<category><![CDATA[screen]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=32311</guid>
		<description><![CDATA[I&#8217;ll admit up front &#8211; it&#8217;s embarrassingly late for me to have discovered screen. Friends and coworkers have been suggesting it to me for years, but it wasn&#8217;t until recently that I had a concrete need for it. Now I wish I&#8217;d had it all along. In short, screen gives you the equivalent of the [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/multitask-at-linux-command-line/2011/04/28&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/multitask-at-linux-command-line/2011/04/28" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/multitask-at-linux-command-line/2011/04/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/multitask-at-linux-command-line/2011/04/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/multitask-at-linux-command-line/2011/04/28&amp;title=How+to+Multitask+at+the+Linux+Command+Line+with+Screen&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/multitask-at-linux-command-line/2011/04/28" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/multitask-at-linux-command-line/2011/04/28">How to Multitask at the Linux Command Line with Screen</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/04/screencli-small.png" alt="screencli-small" title="screencli-small" width="199" height="167" class="alignleft size-full wp-image-32337" />I&#8217;ll admit up front &#8211; it&#8217;s embarrassingly late for me to have discovered <em>screen</em>. Friends and coworkers have been suggesting it to me for years, but it wasn&#8217;t until recently that I had a concrete need for it. Now I wish I&#8217;d had it all along. In short, <em>screen</em> gives you the equivalent of the &#8220;workspaces&#8221; you find in Gnome, KDE, and other desktop environments, but for the command line. It may not sound like much, but like the graphical equivalent, you begin to see the power after a few uses. Today we&#8217;re going to cover some <em>screen</em> basics useful for your home desktop but <strong>especially</strong> useful if you use remote access tools like SSH.<br />
<span id="more-32311"></span></p>
<h3>Overview</h3>
<p>Let&#8217;s say you&#8217;re at the command line, and you&#8217;re running a long process like a kernel recompile. On some machines, that can take up to an hour. An average user might sit and wait. A clever user might background the job, or use the function keys to open a new TTY login. A <em>screen</em> user, however, has already thought ahead. Had <em>screen</em> been launched first (or automatically &#8211; more on that later) that user would just hit the proper key combo to create a new shell. And another, and another, if desired. Each one operates independently of the others and all output will remain on the appropriate <em>screen</em> session.  </p>
<p>Some of you who like to use the <em>ALT-CTRL-(F1 through F4)</em> method may wonder how <em>screen</em> is any better. Several reasons actually, some of which would be:</p>
<ol>
<li>Not limited to number of function keys</li>
<li>Ability to name each screen</li>
<li>Ability to detach/reattach screen sessions</li>
<li>&#8220;Status Bar&#8221; support</li>
<li>Multi-user shared screens</li>
<li>Split screens</li>
</ol>
<p>A LOTS more.  </p>
<h3>Getting Started</h3>
<p>As <em>screen</em> is included in nearly every major Linux distro, this guide will not cover installation. The simplest way to launch <em>screen</em> is to just 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;">screen</span></pre></div></div>

<p>You might get a welcome screen, but otherwise you may not notice anything different. It just looks like a normal terminal right?  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/04/screencli-normal.png" alt="screencli-normal" title="screencli-normal" width="590" height="218" class="aligncenter size-full wp-image-32318" /></p>
<p>What you&#8217;re actually seeing is the default screen session, and you can think of it as a layer over your shell. Should you exit or detach the session, you&#8217;d be returned to your normal <em>screen</em>-less shell.  </p>
<h3>Adding and Navigating Screens</h3>
<p>For starters, you&#8217;ll need to know one major key combo. This is the &#8220;magic&#8221; key combo that lets you access all the individual commands. What is this magical combination?  <em>Ctrl-A</em>.  For example, <em>Ctrl-A</em> followed by <em>c</em> will create a new screen. <em>Ctrl-A</em> and <em>n</em> will move to the next screen in line (if one exists). The following includes many of the most common action keys (all keys are case-sensitive):</p>
<ul>
<li>c &#8211; Create a new screen</li>
<li>n &#8211; Move to next screen</li>
<li>p &#8211; Move to previous screen</li>
<li>S &#8211; Split screen into stacked regions</li>
<li>| &#8211; Split to side-by-side regions (might not work on all systems)</li>
<li>d &#8211; Detach screen</li>
<li>A &#8211; Set screen title</li>
</ul>
<h3>Attaching/Detaching Screens</h3>
<p>While there are many great uses for screen, this function could be called screen&#8217;s bread and butter. The ability to detach a screen, leaving it running, and pick it back up later is invaluable.  </p>
<p>Let&#8217;s say you&#8217;re running the <a href="http://maketecheasier.com/complete-guide-to-running-a-minecraft-server/2011/04/21">Minecraft server from last week</a>, and it&#8217;s running on an old PC under your bed. Normally if you wanted to, say, enter commands at the server console, you&#8217;d have to pull out the machine, dig out a keyboard and monitor, run your commands, and push it all back. Had the server software been started in a screen session, you can just SSH into the server, re-attach the screen, and do what you need. When done, detach the screen, and the server will keep running<em> even after you close the SSH session</em>. Days/weeks/months later, you can log back into the server and reattach that screen to enter new commands.  </p>
<h3>.screenrc</h3>
<p>Finally, we could not cover screen without at least a brief mention of the <em>~/.screenrc</em> file. There are many many uses for this file, but as this is an introductory guide, we will not cover all possible options. Instead, we&#8217;ll just point out the well-loved <em>hardstatus</em> setting.  </p>
<p>This option gives you a fantastically useful info bar that will persist across all <em>screen</em> sessions. Typically, it&#8217;s placed at the bottom and holds info such as time, hostname, and title/number of the current screen.  </p>
<p>You can find example hardstatus codes all over the net with your preferred search engine, but here are a few to get you started. </p>
<h3>#1</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">hardstatus alwayslastline
hardstatus string <span style="color: #ff0000;">'%{= kG}[ %{G}%H %{g}][%= %{= kw}%?%-Lw%?%{r}(%{W}%n*%f%t%?(%u)%?%{r})%{w}%?%+Lw%?%?%= %{g}][%{B} %d/%m %{W}%c %{g}]'</span></pre></div></div>

<p><img src="http://imagecdn.maketecheasier.com/2011/04/screencli-hs1.png" alt="screencli-hs1" title="screencli-hs1" width="570" height="170" class="aligncenter size-full wp-image-32331" /></p>
<h3>#2</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">hardstatus alwayslastline
hardstatus string <span style="color: #ff0000;">&quot;%{+b Rk}(%{-b g}<span style="color: #007800;">$LOGNAME</span>@%H%{+b R}) (%{-b g}%C %a%{+b R}) %{-b g} %n %t %h&quot;</span></pre></div></div>

<p><img src="http://imagecdn.maketecheasier.com/2011/04/screencli-hs2.png" alt="screencli-hs2" title="screencli-hs2" width="564" height="168" class="aligncenter size-full wp-image-32334" /></p>
<h3>#3</h3>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">hardstatus alwayslastline
hardstatus string <span style="color: #ff0000;">'%{= M} %H%{= G} %l %= %{= w}%-w%{+b r}%n*%t%{-b r}%{w}%+w %= %{c}%d %D %{B}%c '</span></pre></div></div>

<p><img src="http://imagecdn.maketecheasier.com/2011/04/screencli-hs3.png" alt="screencli-hs3" title="screencli-hs3" width="566" height="168" class="aligncenter size-full wp-image-32335" /></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/multitask-at-linux-command-line/2011/04/28&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/multitask-at-linux-command-line/2011/04/28" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/multitask-at-linux-command-line/2011/04/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/multitask-at-linux-command-line/2011/04/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/multitask-at-linux-command-line/2011/04/28&amp;title=How+to+Multitask+at+the+Linux+Command+Line+with+Screen&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/multitask-at-linux-command-line/2011/04/28" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/multitask-at-linux-command-line/2011/04/28">How to Multitask at the Linux Command Line with Screen</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/multitask-at-linux-command-line/2011/04/28/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Supercharge Your Shell with Bashish [Linux]</title>
		<link>http://maketecheasier.com/supercharge-shell-with-bashish/2011/01/27</link>
		<comments>http://maketecheasier.com/supercharge-shell-with-bashish/2011/01/27#comments</comments>
		<pubDate>Thu, 27 Jan 2011 12:58:38 +0000</pubDate>
		<dc:creator>Joshua Price</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[prompt]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=28352</guid>
		<description><![CDATA[If you&#8217;re a Linux (or even Mac) user, and you&#8217;ve never toyed with your shell prompt, you might not realize just how useful a good prompt can be. Sure, it can show your user and host names, and perhaps the current directory, but a really good prompt can do a whole lot more. Those who [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/supercharge-shell-with-bashish/2011/01/27&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/supercharge-shell-with-bashish/2011/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/supercharge-shell-with-bashish/2011/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/supercharge-shell-with-bashish/2011/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/supercharge-shell-with-bashish/2011/01/27&amp;title=How+to+Supercharge+Your+Shell+with+Bashish+%5BLinux%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/supercharge-shell-with-bashish/2011/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/supercharge-shell-with-bashish/2011/01/27">How to Supercharge Your Shell with Bashish [Linux]</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/01/bashish-lcars-small.png" alt="bashish-lcars-small" title="bashish-lcars-small" width="220" height="149" class="alignleft size-full wp-image-28353" />If you&#8217;re a Linux (or even Mac) user, and you&#8217;ve never toyed with your shell prompt, you might not realize just how useful a good prompt can be. Sure, it can show your user and host names, and perhaps the current directory, but a really good prompt can do a <a href="http://maketecheasier.com/8-useful-and-interesting-bash-prompts/2009/09/04">whole lot more</a>. Those who spend a LOT of time in the terminal might even want to take it a step further and move into a custom semi-graphical shell with all kinds of bells and whistles. If you&#8217;re one such shell enthusiast, then check out <a href="http://bashish.sourceforge.net/" target="_blank">Bashish</a> &#8211; a way to theme your command prompt. Yep, you read that right.<br />
<span id="more-28352"></span></p>
<h3>Installing Bashish</h3>
<p>Not all the links on the Bashish <a href="http://bashish.sourceforge.net/download.html">Download Page</a> seem to be working, however the source tarball is working fine. Once extracted, it can be installed from the command line with</p>
<pre lang="bash">./configure &#038;&#038; make &#038;&#038; sudo make install</pre>
<p>If you need details on the above steps, see <a href="http://maketecheasier.com/install-software-from-a-tarball-in-linux/2009/06/25">How to Install Software from a Tarball in Linux</a>.  </p>
<p>You&#8217;ll need to restart your shell for Bashish to take effect.  </p>
<h3>Choosing Themes</h3>
<p>Bashish comes with several themes in the base package, and you can list them with the command </p>
<pre lang="bash">bashish list</pre>
<p><img src="http://imagecdn.maketecheasier.com/2011/01/bashish-list.png" alt="bashish-list" title="bashish-list" width="418" height="328" class="aligncenter size-full wp-image-28357" /></p>
<p>And once you&#8217;ve seen a theme you&#8217;d like to try, just enter</p>
<pre lang="bash">bashish (theme name)</pre>
<p>There is an alternate method, which will allow you to browse the themes instead of specifying one-at-a-time, but in the tests performed for this article, the theme manager failed to apply changes to theme selection, so the above method is recommended. Should you wish to try the theme manager, it can be run with the command <code>bashishtheme</code> and requires the <em>dialog</em> program in order to run properly.  </p>
<h3>Disabling Bashish</h3>
<p>There are some cases in which Bashish might cause problems with software run through it, so the developers have included a fairly simple way to temporarily suspend Bashish for the duration of a process. To run a command without Bashish, run it as </p>
<pre lang="bash">BASHISH_DISABLED=1 your_command</pre>
<h3>Recommended Themes</h3>
<p>Of the themes included with Bashish, there are a few that stand out as especially cool (at least in this author&#8217;s opinion). The following themes are the ones we&#8217;d most recommend, either for usefulness or simply because of the cool factor.  </p>
<p>The <em>Box</em> theme applies a border around each section of your output, marking a clear distinction between events.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/01/bashish-box2.png" alt="bashish-box2" title="bashish-box2" width="412" height="251" class="aligncenter size-full wp-image-28360" /></p>
<p>The <em>Bashish2</em> theme is an elegant 2-liner with some minimal information.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/01/bashish-bashish2.png" alt="bashish-bashish2" title="bashish-bashish2" width="412" height="173" class="aligncenter size-full wp-image-28363" /></p>
<p>The default theme <em>BlueSteel</em>, and with good reason. It looks lovely and contains several bits of useful info.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/01/bashish-bluesteel.png" alt="bashish-bluesteel" title="bashish-bluesteel" width="412" height="147" class="aligncenter size-full wp-image-28364" /></p>
<p><em>Elite</em> and <em>Elite2</em> are favorites as well, because they pack a lot of info into a small space, and include bash history number in the top line.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/01/bashish-elite2.png" alt="bashish-elite2" title="bashish-elite2" width="412" height="152" class="aligncenter size-full wp-image-28365" /></p>
<p>The <em>LCARS</em> theme is clearly more about style than substance, as it&#8217;s intended to resemble the LCARS computer interface seen on several Star Trek series. It doesn&#8217;t give much in the ways of useful info, and it takes up a lot of space, but it deserves a mention.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2011/01/bashish-lcars-large.png" alt="bashish-lcars-large" title="bashish-lcars-large" width="412" height="256" class="aligncenter size-full wp-image-28366" /></p>
<p>Finally, for those who want a clear visual split between commands, but not a bunch of text in the way, we&#8217;ve got the simplistic <em>Uberprompt</em>.</p>
<p><img src="http://imagecdn.maketecheasier.com/2011/01/bashish-uber.png" alt="ashish-uber" title="bashish-uber" width="412" height="143" class="aligncenter size-full wp-image-28367" /></p>
<h3>Conclusion</h3>
<p>If you want a fancy shell without trying to decode a line like <em>PS1=&#8221;\[\033[35m\]\t\[\033[m\]-\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]\$ &#8220;</em> to do it, Bashish is a great way to go. There are enough built-in themes to satisfy just about anyone, and for the most part, they look great. This author will probably be using BlueSteel for quite a while.  </p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/supercharge-shell-with-bashish/2011/01/27&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/supercharge-shell-with-bashish/2011/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/supercharge-shell-with-bashish/2011/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/supercharge-shell-with-bashish/2011/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/supercharge-shell-with-bashish/2011/01/27&amp;title=How+to+Supercharge+Your+Shell+with+Bashish+%5BLinux%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/supercharge-shell-with-bashish/2011/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/supercharge-shell-with-bashish/2011/01/27">How to Supercharge Your Shell with Bashish [Linux]</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/supercharge-shell-with-bashish/2011/01/27/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>10 Useful Tools, Websites And Tricks to Help You Master Linux Command</title>
		<link>http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09</link>
		<comments>http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09#comments</comments>
		<pubDate>Tue, 09 Nov 2010 22:00:11 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=23608</guid>
		<description><![CDATA[When it comes to Linux command, it is always a love and hate affair. Newbies tend to shun away from the command line as much as possible while the intermediate to expert users who are used to it will swear by it, and boost how much faster and more productive they have become due to [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/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/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/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/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09&amp;title=10+Useful+Tools%2C+Websites+And+Tricks+to+Help+You+Master+Linux+Command&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/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09">10 Useful Tools, Websites And Tricks to Help You Master Linux Command</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/2010/11/lcommand-main.jpg" alt="lcommand-main" title="lcommand-main" width="200" height="167" class="alignleft size-full wp-image-24178" />When it comes to Linux command, it is always a love and hate affair. Newbies tend to shun away from the command line as much as possible while the intermediate to expert users who are used to it will swear by it, and boost how much faster and more productive they have become due to the command line. </p>
<p>Regardless which camp you belong, as long as you are using Linux (doesn&#8217;t matter which distro), you are sure to hit the terminal and type some commands into it at some point of time. Why not embrace it and take the opportunity to learn something new?</p>
<p>Here are some websites, tools and tricks that you can make use of to learn Linux command line. This is in no way a comprehensive list, but will be a good start for those who wish to get started.<br />
<span id="more-23608"></span><br />
<strong>Note</strong>: <em>The &#8220;command line&#8221; stated here can refer to the bash commands you type in the terminal, or writing your own bash scripts.</em><br />
<!--more--> </p>
<h3>Website</h3>
<h4>1. Linux Command.org</h4>
<p>LinuxCommand.org is a site on&#8230; you guess it, Linux command. If you know absolutely nothing about the command line, this is a good starting ground. LinuxCommand is more like a school, where it teaches you from the basic, such as &#8220;<em>what is a shell?</em>&#8221; to simple command usage and lastly, advanced techniques like &#8220;<em>how to write your own shell scripts</em>&#8220;.</p>
<p><a href="http://linuxcommand.org" target="_blank" >http://linuxcommand.org</a></p>
<h4>2. CommandLineFu</h4>
<p>There are often cases when you want to get things done on the terminal, but can&#8217;t remember the exact code. When such cases occur, a good place to check out is CommandLineFu. Just think of a social network for command line and you get CommandLineFu. CommandlineFu is the place where people share the commonly used bash code so you just have to copy/paste the code to the terminal instead of writing your own. It is also a great way to discover the infinite possibilities that you can do on the terminal.</p>
<p><a href="http://www.commandlinefu.com/" target="_blank" >CommandlineFu</a></p>
<h4>3. ShellFu</h4>
<p>Similar to CommandlineFu, ShellFu is also a place where you can find plenty of codes, examples and uses of the command line. What makes it different is that ShellFu is more like a blog (rather than a social network), is moderated and there is no vote up/down feature. </p>
<p><a href="http://www.shell-fu.org/lister.php" target="_blank" >ShellFu</a></p>
<h4>4. O&#8217;Reilly Linux Command and SS64</h4>
<p>O&#8217;Reilly Linux Command and SS64 bash are both a good place to go if you need just a quick reference of a particular command. All the commands are sorted in alphabetical order, so you can easily find the commands you want.</p>
<p><a href="http://www.oreillynet.com/linux/cmd/" target="_blank" >O&#8217;Reilly Linux Command</a><br />
<a href="http://ss64.com/bash/" target="_blank" >SS64</a></p>
<h3>Tools</h3>
<h4>5. CLI Companion</h4>
<p>CLI Companion is a replacement for your default terminal. It is divided into two panes. The upper pane is a library of the commonly used bash command and the lower pane is the actual terminal. You can scroll through the library to find the command you want, right click on it and select &#8220;Apply&#8221;. The command will get executed in the terminal below.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/11/lcommand-clicompanion.png" alt="lcommand-clicompanion" title="lcommand-clicompanion" width="577" height="447" class="aligncenter size-full wp-image-24173" /></p>
<p>In Ubuntu, you can install via the command:<br />
<pre lang="bash">sudo add-apt-repository ppa:clicompanion-devs/clicompanion-nightlies<br />
sudo apt-get update<br />
sudo apt-get install clicompanion</pre></p>
<h4>6. Ebook &#8211; Bash Guide For Beginners</h3>
<p>For beginners who like to learn bash command on the move, a good way is to download the free ebook &#8211; <strong>Bash Guide For Beginners</strong> and read it on your mobile devices. The ebook contains (almost) every single things you need to know about bash command. Even if you are experience with bash command, it never hurts to have a ebook by your side where you can refer from time to time.</p>
<p><a href="http://maketecheasier.tradepub.com/free/w_mach02" target="_blank" >Bash Guide For Beginners</a></p>
<h3>Tricks</h3>
<p>Here are some tricks that you can use to increase your productivity.</p>
<h4>7. Bash Autocompletion</h4>
<p>One easy way to get around bash is to use the autocompletion feature. When you are halfway through typing a command, you just have to press the &#8220;Tab&#8221; button on your keyboard and it will autocomplete your command for you. If it can&#8217;t understand your command, it will show a list of options for you to choose.  </p>
<p><img src="http://imagecdn.maketecheasier.com/2010/11/lcommand-autocomplete.png" alt="lcommand-autocomplete" title="lcommand-autocomplete" width="448" height="183" class="aligncenter size-full wp-image-24174" /></p>
<h4>8. Creating alias</h4>
<p>If you frequently use the same command over and over again, it is a good idea to add an alias for that command. An alias is just a short for a (long) command. You can use aliases for a variety of reasons, such as shortening a long command or making the Linux shell act more like a Windows/Mac/Solaris/BSD/Whatever shell. </p>
<p><img src="http://imagecdn.maketecheasier.com/2010/11/lcommand-alias.png" alt="lcommand-alias" title="lcommand-alias" width="578" height="156" class="aligncenter size-full wp-image-24176" /></p>
<p><a href="http://maketecheasier.com/making-the-linux-command-line-a-little-friendlier/2009/03/19#alias">Creating bash alias</a></p>
<h4>9. Mastering the bash history</h4>
<p>The bash history contains the list of the commands that you have used before. To access your bash history, the simplest way is to use the Up/Down arrow key in the terminal. More bash history tricks can be found at the link below.</p>
<p><a href="http://maketecheasier.com/mastering-the-bash-history/2009/05/20" target="_blank" >Mastering bash history</a></p>
<h4>10. Using of bash prompt</h4>
<p>Bash prompt is the result that appears when you enter a bash command. Most people are using the default system setting (gray color), not knowing that they can change the prompt settings and get it to display additional information and colors. </p>
<p><a href="http://maketecheasier.com/8-useful-and-interesting-bash-prompts/2009/09/04" target="_blank">bash prompt</a></p>
<p>As I said above, this is by no means the most comprehensive list around and I am sure there are plenty of other useful websites, tools and tricks that I have left out. Do tell us about it in the comments.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/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/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/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/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09&amp;title=10+Useful+Tools%2C+Websites+And+Tricks+to+Help+You+Master+Linux+Command&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/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09">10 Useful Tools, Websites And Tricks to Help You Master Linux Command</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/10-useful-tools-websites-tricks-to-master-linux-command/2010/11/09/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nautilus Elementary Adds Much Needed Enhancements to Nautilus File Manager And Why You Should Install It Now</title>
		<link>http://maketecheasier.com/nautilus-elementary-adds-enhancements-to-nautilus/2010/10/19</link>
		<comments>http://maketecheasier.com/nautilus-elementary-adds-enhancements-to-nautilus/2010/10/19#comments</comments>
		<pubDate>Tue, 19 Oct 2010 12:00:24 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[clutterflow]]></category>
		<category><![CDATA[nautilus]]></category>
		<category><![CDATA[nautilus-elementary]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tweaks]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=23092</guid>
		<description><![CDATA[Having used Nautilus (the default file manager in Ubuntu) for several years, I have really no complaints about it. It does its jobs well and you can also install scripts and actions to increase its functionality. However, after installing Nautilus Elementary, I am surprised by the simplicity and the enhancements that it adds to the [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/nautilus-elementary-adds-enhancements-to-nautilus/2010/10/19&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/nautilus-elementary-adds-enhancements-to-nautilus/2010/10/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-elementary-adds-enhancements-to-nautilus/2010/10/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-elementary-adds-enhancements-to-nautilus/2010/10/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-elementary-adds-enhancements-to-nautilus/2010/10/19&amp;title=Nautilus+Elementary+Adds+Much+Needed+Enhancements+to+Nautilus+File+Manager+And+Why+You+Should+Install+It+Now&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-elementary-adds-enhancements-to-nautilus/2010/10/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-elementary-adds-enhancements-to-nautilus/2010/10/19">Nautilus Elementary Adds Much Needed Enhancements to Nautilus File Manager And Why You Should Install It Now</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/2010/10/ne-main.jpg" alt="nautilus-elementary-main" title="nautilus-elementary-main" width="200" height="105" class="alignleft size-full wp-image-23104" />Having used Nautilus (the default file manager in Ubuntu) for several years, I have really no complaints about it. It does its jobs well and you can also install scripts and actions to increase its functionality. However, after installing Nautilus Elementary, I am surprised by the simplicity and the enhancements that it adds to the file manager, which makes Nautilus even more user-friendly and useful. If you haven&#8217;t install Nautilus Elementary yet, you got to give it a try. </p>
<p>Let&#8217;s take a look at the magic that Nautilus Elementary adds to your Nautilus<br />
<span id="more-23092"></span></p>
<h3>Terminal in Nautilus</h3>
<p>Most of the newbie that just started using Ubuntu (or any other Linux distro) are scared of the terminal, and the bash command. What Nautilus Elementary does is to embed a terminal right inside your Nautilus. Simply press F7 or go to <em>View -> Embed Terminal</em> to reveal the terminal. </p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/ne-terminal.png" alt="nautilus-elementary-terminal" title="nautilus-elementary-terminal" width="577" height="381" class="aligncenter size-full wp-image-23095" /></p>
<p>When you browse any folder in Nautilus, the file path in the Nautilus terminal will automatically &#8220;cd&#8221; to the browser that you are in. You can then type the name of the script or application to run it.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/ne-terminal-cd.png" alt="nautilus-elementary-terminal-cd" title="nautilus-elementary-terminal-cd" width="577" height="380" class="aligncenter size-full wp-image-23096" /></p>
<p>You can also right click to copy/paste the commands. Furthermore, there is also a configuration option for you to customize the look and feel of the terminal. Cool!</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/ne-terminal-config.png" alt="nautilus-elementary-terminal-config" title="nautilus-elementary-terminal-config" width="579" height="431" class="aligncenter size-full wp-image-23097" /></p>
<p>At the moment, it doesn&#8217;t support drag and drop file to the terminal (just like in Mac). It will be great if it does, or get implemented in the future. </p>
<h3>Clutterflow</h3>
<p>The Clutterflow feature allows you to view your files/folders in cover flow style. You can press the left/right button on the keyboard, or the scrollwheel to navigate. </p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/ne-clutterflow.png" alt="nautilus-elementary-clutterflow" title="nautilus-elementary-clutterflow" width="577" height="398" class="aligncenter size-full wp-image-23098" /></p>
<p><strong>Note</strong>: For those who are using Intel hardware, you might have issue getting the clutterflow to display. Here&#8217;s what you can do to fix it:</p>
<p>Open a terminal and type:<br />
<pre lang="bash">sudo gedit /etc/environment</pre></p>
<p>Add the following line to the end of the file</p>
<p><pre lang="bash">export CLUTTER_VBLANK=none</pre></p>
<p>Restart your computer (or just logout and login again).</p>
<h3>Integrate Zeitgeist as the search engine</h3>
<p>For those who have not heard of zeitgeist, it is a service that logs the users&#8217;s activities and events (files opened, websites visites, conversations hold with other people, etc.) and provide the relevant information for third party applications. With zeitgeist, when you perform a search in Nautilus, it will display the most recent files that you have accessed (even before you have typed any search term). You can then filter from there to get the files you want.</p>
<p><strong>Update</strong>: To make use of the zeitgeist search, you have to make sure that zeitgeist is installed in your Ubuntu. Optionally, you might also want to install Gnome Activity Journal.</p>
<p><pre lang="bash">sudo apt-get install zeitgeist gnome-activity-journal</pre></p>
<h3>Tweaks</h3>
<p>Nautilus Elementary comes with several tweaks that enhances the Nautilus and turn it into a user-friendly file manager. The tweaks can be accessed from <em>Edit -> Preferences -> Tweaks</em>.</p>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/ne-tweaks.png" alt="nautilus-elementary-tweaks" title="nautilus-elementary-tweaks" width="497" height="426" class="aligncenter size-full wp-image-23099" /></p>
<p>Things that you can tweak including:</p>
<ul>
<li>Enable rgba transparency</li>
<li>relocate the toolbar to vertical orientation</li>
<li>use breadcrumb for the file path</li>
<li>show zoom slider + icons + view widget</li>
</ul>
<p><img src="http://imagecdn.maketecheasier.com/2010/10/ne-tweaks-display.png" alt="nautilus-elementary-tweaks-display" title="nautilus-elementary-tweaks-display" width="577" height="328" class="aligncenter size-full wp-image-23100" /></p>
<h3>Installation of Nautilus Elementary</h3>
<p>Lastly, here is how you can get Nautilus Elementary to run in your system. </p>
<p>In a terminal:<br />
<pre lang="bash">sudo add-apt-repository ppa:am-monkeyd/nautilus-elementary-ppa<br />
sudo apt-get update<br />
sudo apt-get dist-upgrade</pre></p>
<p>With all the useful enhancements Nautilus Elementary adds to your Nautilus file manager, there is really no reason why you shouldn&#8217;t install it. One thing to note, most of the features listed above are only available for Ubuntu Maverick. So if you haven&#8217;t upgrade your system, do it now for the <a href="http://maketecheasier.com/ubuntu-maverick-meerkat-review-screenshots-tour/2010/09/15">awesomeness</a>.</p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/nautilus-elementary-adds-enhancements-to-nautilus/2010/10/19&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/nautilus-elementary-adds-enhancements-to-nautilus/2010/10/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-elementary-adds-enhancements-to-nautilus/2010/10/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-elementary-adds-enhancements-to-nautilus/2010/10/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-elementary-adds-enhancements-to-nautilus/2010/10/19&amp;title=Nautilus+Elementary+Adds+Much+Needed+Enhancements+to+Nautilus+File+Manager+And+Why+You+Should+Install+It+Now&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-elementary-adds-enhancements-to-nautilus/2010/10/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-elementary-adds-enhancements-to-nautilus/2010/10/19">Nautilus Elementary Adds Much Needed Enhancements to Nautilus File Manager And Why You Should Install It Now</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-elementary-adds-enhancements-to-nautilus/2010/10/19/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How to Make Your iPhone Secure After the Jailbreak</title>
		<link>http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26</link>
		<comments>http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26#comments</comments>
		<pubDate>Mon, 26 Jul 2010 21:00:56 +0000</pubDate>
		<dc:creator>Harold</dc:creator>
				<category><![CDATA[iPhone/iPod Touch]]></category>
		<category><![CDATA[cydia]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[secure]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=18649</guid>
		<description><![CDATA[Let me start this article by telling you about a person who was successful in attacking the vulnerabilities of phones on T-mobile Netherlands last year. There was not really a grave malicious intent on the side of the hacker except that he just wanted the people&#8211;whose iPhones were hacked&#8211;to know how vulnerable their gadgets were [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26" 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/make-iphone-secure-after-jailbreak/2010/07/26" 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/make-iphone-secure-after-jailbreak/2010/07/26&amp;title=How+to+Make+Your+iPhone+Secure+After+the+Jailbreak&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/make-iphone-secure-after-jailbreak/2010/07/26" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26">How to Make Your iPhone Secure After the Jailbreak</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="alignleft size-full wp-image-18658" title="iPhone-HackedIntro" src="http://imagecdn.maketecheasier.com/2010/07/iphone-hacked-intro.jpg" alt="iphone-hacked-intro" width="258" height="141" />Let me start this article by telling you about a person who was successful in attacking the vulnerabilities of phones on T-mobile Netherlands last year. There was not really a grave malicious intent on the side of the hacker except that he just wanted the people&#8211;whose iPhones were hacked&#8211;to know how vulnerable their gadgets were and he wanted them to pay 5 Euros to gain security for their iPhones. The hacker took advantage of the known root password (i.e. alpine) to get into jailbroken iPhones.</p>
<p>There are so many advantages which come when you jailbreak your iPhone. Some of them include the use of Twidget which enables you to view your tweets on lock screen and the use of Winterboard to let you manage the themes in your iPhone. Additionally, jailbreaking your iPhone will give you total control over your iPhone file system. However, once your iPhone is jailbroken, it will become vulnerable and less secure; you will need to take extra measure to retain its security.<br />
<span id="more-18649"></span><br />
One reason why the hacker was able to get into the iPhones of the victims is because they haven&#8217;t changed the default password after they had them jailbroken. Considering the fact that &#8220;alpine&#8221; is the default password of the root directory, and that the whole world knows about this, you should take some time to change it into your own password which no one knows about&#8211;except you.</p>
<p>Perhaps, the reason why people leave their password unchanged after jailbreaking their iPhone is because they do not know how. If you are one of them, then this would be the guide you are looking for…</p>
<h3>Change the Root Password of your iPhone</h3>
<p>Before anything else, I assume you had your iPhone jailbroken…</p>
<p><strong>1.</strong> Open Cydia and install <strong>MobileTerminal</strong> app; you will need this to launch the <strong>Terminal</strong> app.</p>
<p><img class="aligncenter size-full wp-image-18650" title="iPhone-InstallMobileTerminal" src="http://imagecdn.maketecheasier.com/2010/07/iphone-mobile-terminal.png" alt="iphone-mobile-terminal" width="320" height="411" /></p>
<p><strong>2.</strong> Launch the <strong>Terminal</strong> app. Key in this command:</p>

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

<p>Now, key in the default password:</p>

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

<p><img class="aligncenter size-full wp-image-18651" title="iPhone-RootLogin" src="http://imagecdn.maketecheasier.com/2010/07/iphone-root-login.png" alt="iphone-root-login" width="320" height="124" /></p>
<p>By doing this, you will be able to log in as the &#8220;root&#8221; user. It means that you will be able to access everything inside your iPhone while using this user. Also, always remember that the passwords will not be shown/echoed on screen.</p>
<p><strong>3.</strong> Once you have done all of the above, you are ready to proceed to this next step.</p>
<p>Key in this command:</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>This command will let you change the password for the &#8220;root&#8221; user.  After you key it in, you will then be prompted to type and confirm your new password.</p>
<p><img class="aligncenter size-full wp-image-18653" title="iPhone-ChangePassword" src="http://imagecdn.maketecheasier.com/2010/07/iphone-change-password.png" alt="iphone-change-password" width="320" height="159" /></p>
<p>And that&#8217;s it! I am sure you will find this tutorial easy enough to follow. But anyway, let me remind you that you also need to have a strong password; what&#8217;s the use of having a password if anyone can easily crack it, right?</p>
<h3>Choose a Strong Password</h3>
<p>This one may not be new to you. However, there are still people who do not know how to create a password which is harder to crack. The fact is, majority of the people use their birthdays, surnames or a combination of their first and last names plus their birthdays. Believe me, those passwords can be easily cracked even by a grade-schooler. Here is a quick guide for you to come up with a really good password;</p>
<ol>
<li>Always use a combination of Numbers, Letters and Characters.</li>
<li>Capitalize some of the Letters randomly.</li>
<li>Have as many characters as possible in your password. A minimum of six characters would be good enough.</li>
<li>Never ever use your First Name, Last Name, Birthday or the names of your family and friends. More often, people know more about you than you think they do.</li>
<li>If possible, use a string of characters which you can easily type without even looking at the keyboard.</li>
<li>Do not use any actual word because crackers have dictionaries which contain millions of possible passwords that they can easily run to crack your password. Never ever use the word &#8220;<em>password</em>.&#8221;</li>
<li>Always find an easy way to remember your passwords. Writing them down is always the worst option you can have.</li>
<li>Above all, never ever give your password to anyone.</li>
</ol>
<p>More often, we treat our iPhones as diaries which hold some of our personal information which we do not want to be exposed to anyone we don&#8217;t know. Therefore, making them more secure is the best thing we can do to protect our privacy. I hope this article is helpful enough. If you think I lack some important things in here, please feel free to leave comments or suggestions below. Or, if you want to get updates from this site, enter your email below.<br />
<!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26" 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/make-iphone-secure-after-jailbreak/2010/07/26" 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/make-iphone-secure-after-jailbreak/2010/07/26&amp;title=How+to+Make+Your+iPhone+Secure+After+the+Jailbreak&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/make-iphone-secure-after-jailbreak/2010/07/26" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/make-iphone-secure-after-jailbreak/2010/07/26">How to Make Your iPhone Secure After the Jailbreak</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/make-iphone-secure-after-jailbreak/2010/07/26/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Backup Your iPhone Cydia Applications Before Upgrading, and Restore Them Thereafter</title>
		<link>http://maketecheasier.com/backup-iphone-cydia-application/2010/07/16</link>
		<comments>http://maketecheasier.com/backup-iphone-cydia-application/2010/07/16#comments</comments>
		<pubDate>Fri, 16 Jul 2010 21:00:50 +0000</pubDate>
		<dc:creator>Harold</dc:creator>
				<category><![CDATA[iPhone/iPod Touch]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[cydia]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[openssh]]></category>
		<category><![CDATA[restore]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=18204</guid>
		<description><![CDATA[What every iPhone user should know is that, whenever you upgrade your jailbroken gadget to a new iOS, you will need to run the whole jailbreak process again. That being said, you will understand that all of your Cydia applications, as well as those which are built into iPhone applications, will be deleted permanently. Thus, [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/backup-iphone-cydia-application/2010/07/16&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/backup-iphone-cydia-application/2010/07/16" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/backup-iphone-cydia-application/2010/07/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/backup-iphone-cydia-application/2010/07/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/backup-iphone-cydia-application/2010/07/16&amp;title=How+to+Backup+Your+iPhone+Cydia+Applications+Before+Upgrading%2C+and+Restore+Them+Thereafter&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/backup-iphone-cydia-application/2010/07/16" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/backup-iphone-cydia-application/2010/07/16">How to Backup Your iPhone Cydia Applications Before Upgrading, and Restore Them Thereafter</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="alignleft size-medium wp-image-18212" title="iPhone-backitup" src="http://imagecdn.maketecheasier.com/2010/07/iPhone-backitup.jpg" alt="iPhone-backitup" width="200" height="117" />What every iPhone user should know is that, whenever you upgrade your jailbroken gadget to a new iOS, you will need to run the whole jailbreak process again. That being said, you will understand that all of your Cydia applications, as well as those which are built into iPhone applications, will be deleted permanently. Thus, you can never retrieve them after your upgrade. A good thing is, you can back your applications so that when the process is done, you can restore them from easily.</p>
<p>iPhone applications can easily be backed up using iTunes, but what about the Cydia Applications? No, these ones will <strong>NOT</strong> be taken care by iTunes.<br />
<span id="more-18204"></span><br />
There are actually two ways to back Cydia applications. </p>
<h3>1. AptBackup</h3>
<p>The first one is by using <strong>AptBackup</strong> which you can also get from Cydia itself. This may be the easiest way but here&#8217;s the downside:</p>
<p>AptBackup makes a list of all your installed Cydia apps which you can backup through iTunes and restore it later. Now, when that list has been restored to your gadget after the upgrade, Cydia will take it as reference to automatically search and install all the apps in the list. HOWEVER, AptBackup is not really that successful in doing its job as there have been so many complaints about it. I am not discouraging you to use it, but if I were you, I will not depend solely on this method to back my apps.</p>
<h3>2. The manual way</h3>
<p>To be able to do this, you will need to be able to transfer files between your iPhone and computer. You can use OpenSSH or DiskAid to do that. Anyway, I have to assume that you already know how to do that. If not, read <a href="http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05">this post</a> first so that you will know <a href="http://maketecheasier.com/how-to-copy-files-tofrom-your-iphone/2008/09/05">How to Copy Files To/From Your iPhone</a>.</p>
<p><strong>1.</strong> Make sure that your jailbroken iPhone has <em>Gawk</em>, <em>MobileTerminal</em> and <em>OpenSSH</em> installed in it. These can all be found in Cydia.</p>
<p><strong>2.</strong> If you are ready, just launch the <em>Terminal app</em>, and carefully execute the following commands;</p>
<p>Type/Key in the command</p>

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

<p>followed by your password. Remember, your password will not be displayed. If you don&#8217;t remember changing the root password, then simply key in &#8220;<strong>alpine</strong>&#8221; (without quotes). After which, simply tap the <strong>Return Key</strong>.</p>
<p><img class="aligncenter size-full wp-image-18203" title="iPhone-TerminalLogin" src="http://imagecdn.maketecheasier.com/2010/07/iPhone-TerminalLogin.png" alt="iPhone-TerminalLogin" width="320" height="460" /></p>
<p>Next, type this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">dpkg</span> <span style="color: #660033;">-l</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">grep</span> ^ii <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">awk</span> <span style="color: #ff0000;">'{print $2}'</span> <span style="color: #000000; font-weight: bold;">&gt;</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>cydiabkup.txt</pre></div></div>

<p>and hit the <strong>Return Key</strong>. This command will automatically list down all your installed Cydia apps into a text file <strong>cydiabkup.txt</strong>.</p>
<p><img class="aligncenter size-full wp-image-18205" title="iPhone-CydiaBackup" src="http://imagecdn.maketecheasier.com/2010/07/iPhone-CydiaBackup.png" alt="iPhone-CydiaBackup" width="320" height="460" /></p>
<p>The next important thing to do is to transfer <strong>cydiabkup.txt </strong>into your computer using SSH or DiskAid. This is how your text file looks like:</p>
<p><img class="aligncenter size-full wp-image-18206" title="iPhone-Cydiabkup" src="http://imagecdn.maketecheasier.com/2010/07/iPhone-Cydiabkup.png" alt="iPhone-Cydiabkup" width="300" height="396" /></p>
<p>Once you have the cydiabkup.txt copied to your computer, you are free to do the upgrade process.</p>
<p><strong>Restoring Cydia Applications</strong></p>
<p><strong>1.</strong> After you have upgraded and jailbroke your phone, reinstall <em>OpenSSH</em>, <em>Gawk</em> and <em>MobileTerminal</em> from Cydia. Additionally, you need to install <em>APT 0.7 Strict</em> which can also be found in Cydia. These packages are all required to transfer files from your computer to your iPhone.</p>
<p><strong>Important Note:</strong> <em>You need to disable the Auto-Lock first before you proceed with the rest of the steps. To do that, go to &#8220;Settings -&gt; General -&gt; Auto-Lock&#8221; and tap &#8220;Never.&#8221;</em></p>
<p><strong>2.</strong> You will need to download the <a href="http://dl.dropbox.com/u/6864546/install-cydia-app.zip">install-cydia-app package</a>. After which, just unzip it, to find the <strong>install-cydia-app.sh</strong>.</p>
<p><strong>3.</strong> With the use of DiskAid or SSH, transfer the file <strong>cydiabkup.txt</strong> and <strong>install-cydia-app.sh</strong> to the <em>/var/root</em> directory of your iPhone.</p>
<p><strong>4.</strong> Launch the Terminal App to execute the following;</p>
<p>Type/Key in the command</p>

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

<p>followed by your password. </p>
<p>Next, type this:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sh</span> <span style="color: #000000; font-weight: bold;">/</span>var<span style="color: #000000; font-weight: bold;">/</span>root<span style="color: #000000; font-weight: bold;">/</span>install-cydia-app.sh</pre></div></div>

<p>and tap the <strong>Return Key</strong>.</p>
<p><img class="aligncenter size-full wp-image-18207" title="iPhone-installcydiaapp" src="http://imagecdn.maketecheasier.com/2010/07/iPhone-installcydiaapp.png" alt="iPhone-installcydiaapp" width="320" height="462" /></p>
<p>After running the command, your iPhone will automatically search, download and install the apps on the list. If you see the prompt &#8220;<em>After this operation, xxxMB of additional disk space will be used. Do you want to continue      [Y/n]?</em>&#8220;, just tap the letter &#8220;<strong>Y</strong>&#8221; and <strong>Return Key</strong>. The installation time may very depending on the number of apps in the list.</p>
<p><img class="aligncenter size-full wp-image-18208" title="iPhone-CydiaInstallation" src="http://imagecdn.maketecheasier.com/2010/07/iPhone-CydiaInstallation.png" alt="iPhone-CydiaInstallation" width="320" height="462" /></p>
<p>Once the installation is done, just restart your iPhone and all your Cydia applications will be restored.</p>
<p>This process may seems geekery to most of you, but if you are able to jailbreak your iPhone, you shouldn&#8217;t have any problems getting this done too. Should you encounter any trouble and problems, don’t hesitate to leave your comments below.<br />
<!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/backup-iphone-cydia-application/2010/07/16&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/backup-iphone-cydia-application/2010/07/16" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/backup-iphone-cydia-application/2010/07/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/backup-iphone-cydia-application/2010/07/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/backup-iphone-cydia-application/2010/07/16&amp;title=How+to+Backup+Your+iPhone+Cydia+Applications+Before+Upgrading%2C+and+Restore+Them+Thereafter&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/backup-iphone-cydia-application/2010/07/16" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/backup-iphone-cydia-application/2010/07/16">How to Backup Your iPhone Cydia Applications Before Upgrading, and Restore Them Thereafter</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/backup-iphone-cydia-application/2010/07/16/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>How to Save and Share Bash Settings Using Pastebin</title>
		<link>http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05</link>
		<comments>http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05#comments</comments>
		<pubDate>Tue, 05 Jan 2010 23:00:19 +0000</pubDate>
		<dc:creator>Joshua Price</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[bashrc]]></category>
		<category><![CDATA[pastebin]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=10525</guid>
		<description><![CDATA[As someone who earns part of my living by trying out Linux distros, I reinstall a LOT. Even my favorites rarely last longer than a few months before they&#8217;re wiped away to make room for something new. Invariably, one of the very first things I do after any installation is to tweak my shell to [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05" 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/save-share-bash-settings-using-pastebin/2010/01/05" 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/save-share-bash-settings-using-pastebin/2010/01/05&amp;title=How+to+Save+and+Share+Bash+Settings+Using+Pastebin&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/save-share-bash-settings-using-pastebin/2010/01/05" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05">How to Save and Share Bash Settings Using Pastebin</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="alignleft size-full wp-image-10536" src="http://imagecdn.maketecheasier.com/2010/01/pastebin-terminalicon.png" alt="pastebin-terminalicon" width="128" height="128" />As someone who earns part of my living by trying out Linux distros, I reinstall a LOT. Even my favorites rarely last longer than a few months before they&#8217;re wiped away to make room for something new. Invariably, one of the very first things I do after any installation is to <a href="http://maketecheasier.com/8-useful-and-interesting-bash-prompts/2009/09/04">tweak my shell</a> to include a few options, aliases, and of course my preferred prompt.  After rebuilding my <em>.bashrc</em> file dozens of times, I began to think there had to be a better way. I began looking for a place online to store my .bashrc file, with all my settings exactly the way I want them. This proved more difficult than I had expected. To do this properly, I needed a website that was free, did not require registration, would hold my file permanently, allow unlimited public downloads, give it an URL I could remember, and allow me to make changes to the file without having to re-upload. This was a tall order, but <a href="http://pastebin.com/" target="_blank">Pastebin.com</a> fit the bill.<br />
<span id="more-10525"></span></p>
<h3>Pastebin 101</h3>
<p>For those who&#8217;ve never used pastebin, it&#8217;s a very simple service. You enter in some text, and the website saves it to its own location. That&#8217;s it. You, or anyone else who has that URL, can view the text. It&#8217;s meant to be used by programmers and such to share things like code snippets and log messages. Fortunately, it lets you choose how long your text will remain on the server. If we save our .bashrc here, we can always return to it later to get what we need. You can choose, when saving your file, how long to keep the files stored on Pastebin.com.</p>
<p><img class="aligncenter size-full wp-image-10526" src="http://imagecdn.maketecheasier.com/2010/01/pastebin-standard.jpg" alt="pastebin-standard" width="577" height="379" /></p>
<p>If you stop here and just go the normal route, your file will be given an URL like <em>http://pastebin.com/d535effd9</em>. That&#8217;s not so easy to remember, so we go one step further and use&#8230;</p>
<h3>&#8220;Private&#8221; Pastebin</h3>
<p>A clever feature to Pastebin.com is that it allows you to create your own personal subdomain on the fly. For example, instead of going to just <em>http://pastebin.com</em>, you use your name as a subdomain (ie <em>http://joshprice.pastebin.com</em>) you&#8217;ll get your own little section to leave your text. Now, the word &#8220;private&#8221; is quotes here because there&#8217;s nothing keeping anyone else from accessing that same &#8220;private&#8221; area. In fact, if you have a common name and you try the method I suggested, you may find that someone else is already placing files there. Keep toying around until you can find something unique.</p>
<p><img class="aligncenter size-full wp-image-10529" src="http://imagecdn.maketecheasier.com/2010/01/pastebin-private.jpg" alt="pastebin-private" width="458" height="172" /></p>
<p>As you can see, the title now shows that we&#8217;re in my own private pastebin. Once again, there is nothing stopping anyone else from accessing that location and adding/changing files, it&#8217;s just a name space you can use to access things you&#8217;ve saved.</p>
<p>You may notice that the &#8220;Recent Posts&#8221; section in the top-left now shows only the posts in this private space. I can go back here in a year and see all the notes I&#8217;ve saved so far (presuming I told them to live that long, and no one else has changed them).</p>
<h3>Saving Your .bashrc</h3>
<p>Fill up your .bashrc (or whatever else you&#8217;d like to save on pastebin) with the settings you want. If you haven&#8217;t already, create a unique private space as described in the previous section. Paste in the contents of your file, choose how long you&#8217;d like to to stay on the server, and hit <em>Send</em>. You&#8217;ll be taken to the URL of your text file, which you can save or send to others.</p>
<h3>Retrieving Your .bashrc</h3>
<p>There are a few ways you could go about putting your file back on your system once the install is complete.</p>
<p><strong>Simplest -</strong> Open your private pastebin address and the post you&#8217;re looking for. Highlight all the text, open your exising .bashrc file and add the pastebin info to the end.</p>
<p><strong>Command Line -</strong> From your browser, open your private pastebin address and the post you&#8217;re looking for. You&#8217;ll see a <em>Download</em> button in the header bar above your post. Right-click the link and choose &#8220;Copy Link Location&#8221; (or your browser&#8217;s equivalent). From the command line, enter</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">wget</span> <span style="color: #660033;">-O</span> ~<span style="color: #000000; font-weight: bold;">/</span>.bashrc <span style="color: #7a0874; font-weight: bold;">&#40;</span>pastebin <span style="color: #c20cb9; font-weight: bold;">link</span> location<span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></div></div>

<p>to save the file from pastebin directly into the local .bashrc file, overwriting the existing contents. If you&#8217;re able to remember the URL of your file so you don&#8217;t have to open the website, this may be the fastest method, and it wouldn&#8217;t require a browser at all.</p>
<p><strong>Recommended -</strong> Open your private pastebin address and the post you&#8217;re looking for.  You&#8217;ll see a <em>Download</em> button in the header bar above your post. Instead of <em>826492.txt</em> or whatever filename it gives you, save it in your home as something like <em>bashrc-custom</em>. You can add the line</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">source</span> bashrc-custom</pre></div></div>

<p>to the existing .bashrc file, so that you get all the shell options the distro included as well as your customizations.</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05" 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/save-share-bash-settings-using-pastebin/2010/01/05" 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/save-share-bash-settings-using-pastebin/2010/01/05&amp;title=How+to+Save+and+Share+Bash+Settings+Using+Pastebin&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/save-share-bash-settings-using-pastebin/2010/01/05" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/save-share-bash-settings-using-pastebin/2010/01/05">How to Save and Share Bash Settings Using Pastebin</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/save-share-bash-settings-using-pastebin/2010/01/05/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Pause a Process on OS X</title>
		<link>http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07</link>
		<comments>http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07#comments</comments>
		<pubDate>Wed, 07 Oct 2009 12:07:55 +0000</pubDate>
		<dc:creator>Sharninder</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[pause]]></category>
		<category><![CDATA[process]]></category>
		<category><![CDATA[terminal]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=7532</guid>
		<description><![CDATA[So, you&#8217;ve just bought a shiny new Apple machine ? It is the fastest machine in the lineup with the max RAM you could afford. And even that doesn&#8217;t stop OS X from throwing that annoying beach ball icon at you right when you&#8217;re at your most productive phase of the day? If the answer [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07" 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/pause-a-process-on-os-x/2009/10/07" 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/pause-a-process-on-os-x/2009/10/07&amp;title=How+to+Pause+a+Process+on+OS+X&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/pause-a-process-on-os-x/2009/10/07" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07">How to Pause a Process on OS X</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="alignleft size-full wp-image-7578" src="http://imagecdn.maketecheasier.com/2009/10/activitymon-logo.jpg" alt="Activity Monitor" width="150" height="131" />So, you&#8217;ve just bought a shiny new Apple machine ? It is the fastest machine in the lineup with the max RAM you could afford.</p>
<p>And even that doesn&#8217;t stop OS X from throwing that annoying beach ball icon at you right when you&#8217;re at your most productive phase of the day?</p>
<p>If the answer to that is yes, read on!<br />
<span id="more-7532"></span><br />
Mac OS X normally is a pretty good multi tasking operating system but like all operating systems, OS X also has it&#8217;s limits and while it tries to make maximum use of the RAM and CPU power available to it (and multiple cores, if you&#8217;re using a grand central enabled application), there will always be times when you have to face the beach ball.</p>
<p>All current generation of Macs come with a fairly generous amount of RAM so running out of RAM is not that real a problem and if an application still needs to use more RAM than a certain threshold, the operating system&#8217;s swap and memory management routines kick in to handle that.</p>
<p>CPU cycles, on the other hand, are always in short supply. If you&#8217;re into any kind of multimedia creation or editing, you&#8217;d know what I mean.</p>
<p>So, what exactly are your options when an application you&#8217;re running starts consuming the CPU like there&#8217;s no tomorrow ?</p>
<p><img class="aligncenter size-full wp-image-7579" src="http://imagecdn.maketecheasier.com/2009/10/activitymon-load.jpg" alt="Activity Monitor" width="295" height="122" /></p>
<p>Well, the first option is pretty straightforward. Find the errant application and close it. You can find the CPU usage of all applications by looking at the Activity Monitor.</p>
<p>To kill an application just select it and click the Red Quit Process button. Can&#8217;t be easier than that !</p>
<p><img class="aligncenter size-full wp-image-7581" src="http://imagecdn.maketecheasier.com/2009/10/activitymon-kill.png" alt="Activity Monitor" width="296" height="184" /></p>
<p>The only problem with this approach is that you lose whatever tasks you were doing in that application and there really is no way to get them back unless the application itself has a feature to save your tasks and resume.</p>
<p>But, it turns out that there is another way to deal with this problem.</p>
<p>Mac OS X provides a method by which you can &#8220;pause&#8221; an application instead of quitting it and then later when you want to get back to it, continue running the application from exactly the point where you left it.</p>
<p>The first thing that you&#8217;d need is the process identifier (PID) of the particular process that you want to pause. This is the number given in the first column of the Activity Monitor window. Note down this number. We&#8217;ll be using it pretty soon.</p>
<p>Now fire up the Terminal application (From the Applications-&gt;Utilities folder) and use the <em>kill</em> command as shown in the screenshot below</p>
<p><img class="aligncenter size-full wp-image-7583" src="http://imagecdn.maketecheasier.com/2009/10/terminal-pause.jpg" alt="Terminal" width="296" height="101" /></p>
<p>Most people think that the Kill command is only used to <em>kill</em> a process on Unix based systems. But, the fact is that this command can be used to send any OS defined <em>signal</em> to an application and STOP is one such signal that Mac OS X defines. What it does is that it stops (or pauses) whatever tasks the applications is performing and takes away control of the CPU from it. Your tasks are still kept in memory and are safe.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">kill</span> <span style="color: #660033;">-STOP</span> <span style="color: #000000; font-weight: bold;">&lt;</span>PID<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p>You can check the status of the process in the Activity Monitor and it should be consuming 0% of the CPU now.</p>
<p>When you&#8217;re done with your work and want to get back to the paused process, just use the same <em>kill</em> command to pass another signal, CONT this time, to the process using the same PID that you used earlier.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">kill</span> <span style="color: #660033;">-CONT</span> <span style="color: #000000; font-weight: bold;">&lt;</span>PID<span style="color: #000000; font-weight: bold;">&gt;</span></pre></div></div>

<p><img class="aligncenter size-full wp-image-7584" src="http://imagecdn.maketecheasier.com/2009/10/terminal-cont.jpg" alt="Terminal" width="297" height="177" /></p>
<p>That&#8217;s it. You have successfully paused and restarted a process on Mac OS X. You can now happily continue with your work as if nothing ever happened.</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07" 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/pause-a-process-on-os-x/2009/10/07" 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/pause-a-process-on-os-x/2009/10/07&amp;title=How+to+Pause+a+Process+on+OS+X&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/pause-a-process-on-os-x/2009/10/07" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/pause-a-process-on-os-x/2009/10/07">How to Pause a Process on OS X</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/pause-a-process-on-os-x/2009/10/07/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How to Get a Quake-style Drop-down Terminal in Linux</title>
		<link>http://maketecheasier.com/how-to-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04</link>
		<comments>http://maketecheasier.com/how-to-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04#comments</comments>
		<pubDate>Thu, 04 Jun 2009 12:05:11 +0000</pubDate>
		<dc:creator>Joshua Price</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[quake]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[yakuake]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=5097</guid>
		<description><![CDATA[A lot of games out there have some form of command prompt, often just for entering cheat codes. You know the type &#8211; you hit some function key and a bar drops down from the top of the screen letting you enter commands or codes or whatever else. Well some clever folks have taken that [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/how-to-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/how-to-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04" 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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04" 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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04" 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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04&amp;title=How+to+Get+a+Quake-style+Drop-down+Terminal+in+Linux&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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04" 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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04">How to Get a Quake-style Drop-down Terminal in Linux</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="alignleft size-medium wp-image-5126" src="http://imagecdn.maketecheasier.com/2009/06/yakuake-mainimage.jpg" alt="Main Image" width="300" height="188" />A lot of games out there have some form of command prompt, often just for entering cheat codes.  You know the type &#8211; you hit some function key and a bar drops down from the top of the screen letting you enter commands or codes or whatever else.  Well some clever folks have taken that design and applied it to the command prompt in your Linux desktop.  You can get a fully featured, skinnable terminal with split-screen views and all at the touch of a button.  <a href="http://www.kde-apps.org/content/show.php?content=29153" target="_blank">Yakuake</a> is just such a program.  It&#8217;s been around for a few years but has remained below the radar for most Linux users.</p>
<p><span id="more-5097"></span>I had always set a special desktop just for my terminals.  Readers of some of my <a href="http://maketecheasier.com/create-a-great-window-maker-desktop/2009/02/14">other articles</a> may have noticed that when setting up virtual desktops, I always set Desktop #2 for my terminals.  I typically have more than one open, so they have their own desktop workspace.  I put it in between my Browser and Text workspaces because I&#8217;m frequently copy/pasting to and from those other workspaces so it makes sense to be next to each other.   When a friend suggested I try Yakuake (thanks AWOL!) I was a bit reluctant, as my current setup had always worked so well.  I installed it anyway, and within a week I was converted.</p>
<p>To see why, let&#8217;s get Yakuake installed.  On Ubuntu or any other Debian-style distribution, open a regular terminal and type in:</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> yakuake</pre></div></div>

<p>You could of course use whatever package installation method you prefer.</p>
<p>Once installed, run</p>
<p class="codeblock">yakuake &amp;</p>
<p>from the command line.  The &#8220;&amp;&#8221; at the end is just a bash code to run this program in the background so you can still use your current terminal screen even while Yakuake is running.</p>
<p>Once it loads up you&#8217;ll be shown a notice that the program is started.  You&#8217;ll also be given an option to change which key is used to make the menu appear.  By default, it&#8217;s set to F12 but you can set it to whatever you&#8217;d like.  Of course, it&#8217;s a good idea to pick a key you don&#8217;t normally use in other programs.</p>
<p>Once that&#8217;s done, hit F12 or whatever other key you specified to make the terminal appear.  It should look something like this:</p>
<p><img class="aligncenter size-full wp-image-5099" src="http://imagecdn.maketecheasier.com/2009/06/yakuake-default.jpg" alt="Basic default Yakuake config" width="560" height="448" /></p>
<p>Pretty good, but it could be better.  To improve Yakuake&#8217;s functionality, there are a few preferences we can set.  To open the configuration screen, look in the bottom right corner for the button shown here:</p>
<p><img class="aligncenter size-full wp-image-5113" src="http://imagecdn.maketecheasier.com/2009/06/yakuake-settings-button.png" alt="yakuake-settings-button" width="154" height="101" /></p>
<p>This will open the menu where you can choose &#8220;Configure Yakuake&#8221;.  There are a decent number of config options to choose from.</p>
<p>On the first page, the one titled Window, you can set things like the size of the Yakuake window.  If you don&#8217;t use the terminal much, then it might be wise to set the width to something smaller than the default 90%.  Something like 50% might be more appropriate.  If, like me, you tend to use the terminal often, I&#8217;d suggest leaving the window nice and wide because (as we&#8217;ll cover in a moment) the Yakuake window can be split into panes, so you can fit 2, 4, however many terminals you like into the single Yakuake window.</p>
<p><img class="aligncenter size-full wp-image-5116" src="http://imagecdn.maketecheasier.com/2009/06/yakuake-config-window.jpg" alt="Default first config page" width="560" height="453" /></p>
<p>The next configuration page is the Behavior config.  On here, I&#8217;d suggest unchecking &#8220;Keep window open when it loses focus&#8221;.  Having this unchecked will make Yakuake disappear as soon as you click away onto another program.  I also tend to remove the option for &#8220;Show startup notification popup&#8221;.  Otherwise you&#8217;ll get a little notice in the corner every time the program loads.  Personally, I don&#8217;t see a point in that.</p>
<p><img class="aligncenter size-full wp-image-5119" src="http://imagecdn.maketecheasier.com/2009/06/yakuake-config-behavior.jpg" alt="Yakuake's Behavior config section" width="560" height="453" /></p>
<p>The final config page is the Appearance section.  Everything on there is pretty self-explanatory so I won&#8217;t go into much detail on that, except to say that you can enable translucency to get a nice semi-transparent look to your Yakuake window. It requires you to be running  X with compositing enabled (which should be the default on most modern setups).</p>
<p>The last feature I&#8217;d like to cover is one I mentioned earlier in this article, the ability to split the Yakuake window into multiple terminal sessions.  That&#8217;s easily done by right-clicking the &#8220;+&#8221; icon in the bottom-left corner of the Yakuake window.  You can choose how to arrange those terminals inside the window if you have a preference between, say, a horizontal split or a vertical split.</p>
<p><img class="aligncenter size-full wp-image-5124" src="http://imagecdn.maketecheasier.com/2009/06/yakuake-split-terminal.png" alt="Example of how to split the terminal" width="366" height="176" /></p>
<p>You can also left-click the &#8220;+&#8221; button to have multiple terminals in tabs instead of split screen if you want the full window space for one terminal.</p>
<p>Have you used Yakuake or something similar in the past?  How has it worked out for you?  I&#8217;d love to hear your thoughts in the comments.</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/how-to-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/how-to-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04" 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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04" 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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04" 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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04&amp;title=How+to+Get+a+Quake-style+Drop-down+Terminal+in+Linux&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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04" 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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04">How to Get a Quake-style Drop-down Terminal in Linux</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-get-a-quake-style-drop-down-terminal-in-linux/2009/06/04/feed</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Maximize Your Terminal Usage with Terminator</title>
		<link>http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21</link>
		<comments>http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21#comments</comments>
		<pubDate>Sun, 21 Dec 2008 13:30:09 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[terminator]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=1668</guid>
		<description><![CDATA[Terminator is a simple program that allows you to load multiple terminals and arrange them in grid. It is useful when you need to access to various terminals at the same time. Some of the feature in Terminator includes: Arrange terminals in grid multiple tabs drag and drop reordering of terminal keyboard shortcuts config file [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21" 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/maximize-your-terminal-usage-with-terminator/2008/12/21" 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/maximize-your-terminal-usage-with-terminator/2008/12/21&amp;title=Maximize+Your+Terminal+Usage+with+Terminator&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/maximize-your-terminal-usage-with-terminator/2008/12/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21">Maximize Your Terminal Usage with Terminator</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="alignnone" title="Terminator" src="http://imagecdn.maketecheasier.com/2008/12/terminator.jpg" alt="terminator" width="580" height="372" /></p>
<p><a href="http://www.tenshu.net/terminator/" target="_blank">Terminator</a> is a simple program that allows you to load multiple terminals and arrange them in grid. It is useful when you need to access to various terminals at the same time.</p>
<p>Some of the feature in Terminator includes:</p>
<ul>
<li> Arrange terminals in grid</li>
<li> multiple tabs</li>
<li> drag and drop reordering of terminal</li>
<li> keyboard shortcuts</li>
<li> config file to override gnome-terminal setting</li>
</ul>
<p><span id="more-1668"></span>To install terminator, you can either click <a href="apt:terminator">here</a> or in your terminal, type</p>
<p class="codeblock">sudo apt-get install terminator</p>
<p>Go to<em> Applications -&gt; Accessories -&gt; Terminator</em></p>
<p>To split terminator horizontal, right click and select <em>Split Horizontally</em>.</p>
<p><img class="alignnone" title="split terminator horizontally" src="http://imagecdn.maketecheasier.com/2008/12/terminator-horizontal.jpg" alt="split terminator horizontally" width="543" height="395" /></p>
<p>Similarly, to split terminator vertically, select <em>Split Vertically</em>.</p>
<p><img class="alignnone" title="split terminator vertically" src="http://imagecdn.maketecheasier.com/2008/12/terminator-vertically.jpg" alt="split terminator vertically" width="580" height="385" /></p>
<p>You can also drag and drop the terminal to rearrange them or to resize them to your liking.</p>
<p><img class="alignnone" title="Terminator multiple grid" src="http://imagecdn.maketecheasier.com/2008/12/terminator-multiple-grid.jpg" alt="Terminator multiple grid" width="580" height="333" /></p>
<h3>Customizing the Terminator</h3>
<p>There are many things that you can personalize in Terminator. You can set the font type, font size, background color, transparency level, background images, and many others options. You can also define custom shortcut key for easier and faster handling of the application.</p>
<p><img class="alignnone" title="terminator-background" src="http://imagecdn.maketecheasier.com/2008/12/terminator-background.jpg" alt="terminator-background" width="574" height="587" /><br />
<small>Terminator with preset background</small></p>
<p><a title="Terminator with transparent background" rel="lightbox" href="http://imagecdn.maketecheasier.com/2008/12/terminator-transparent.jpg"><img class="alignnone" title="terminator transparent background" src="http://imagecdn.maketecheasier.com/2008/12/terminator-transparent-sm.jpg" alt="terminator transparent background" width="580" height="392" /></a><br />
<small>Terminator with transparent background (Click to enlarge)</small></p>
<p>Go to your <em>Home</em> folder. Press <em>Ctrl + H</em> to display the hidden files.</p>
<p>Click on the <em>.config</em> folder. If the <em>terminator</em> folder does not exist, create a new folder and name it <em>terminator</em>.</p>
<p>Open your text editor (gedit). Save the new file with the name <em>config</em> (without any extension) in the <em>/home/.config/terminator </em>folder.</p>
<p>You can find the list of customization option <a href="http://www.tenshu.net/wp-content/uploads/terminator_config.html" target="_blank">here</a>. To personalize terminator, simply paste the option to the <em>config</em> file and set its respective value. For example, if you want to set the background to display image, paste the following code and set the respective value for each option:</p>
<p class="codeblock">background_type = image<br />
background_image = /home/damien/wallpaper/nature.jpg</p>
<p><strong>Setting custom shortcut key</strong></p>
<p>The default shortcut key for Terminator follows that of the Gnome Terminal. If you want to overwrite the default setting and define your own shortcut key, insert the placeholder to the <em>config</em> file, follow by the respective shortcut key command. For example, to change the split horizontal shortcut key to Ctrl + Shift + H,</p>
<p class="codeblock">[KEYBINDING]<br />
split_horiz = &lt;Ctrl&gt;&lt;Shift&gt;H</p>
<p>[<a href="http://www.tenshu.net/terminator/" target="_blank">Terminator</a>]</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21" 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/maximize-your-terminal-usage-with-terminator/2008/12/21" 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/maximize-your-terminal-usage-with-terminator/2008/12/21&amp;title=Maximize+Your+Terminal+Usage+with+Terminator&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/maximize-your-terminal-usage-with-terminator/2008/12/21" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/maximize-your-terminal-usage-with-terminator/2008/12/21">Maximize Your Terminal Usage with Terminator</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/maximize-your-terminal-usage-with-terminator/2008/12/21/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Having a boring day? Try Playing Tetris On Your Mac Terminal</title>
		<link>http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02</link>
		<comments>http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02#comments</comments>
		<pubDate>Thu, 02 Oct 2008 03:00:43 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[tetris]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=921</guid>
		<description><![CDATA[After a long boring day at work, what about taking a short break and play some cool tetris game on your Mac terminal? Yes, you hear me right, I am referring to the black, ugly, unglamorous terminal app that you never want to open, and you can play tetris on it. Here&#8217;s how: Open up [...]<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02" 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/play-tetris-on-your-mac-terminal/2008/10/02" 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/play-tetris-on-your-mac-terminal/2008/10/02&amp;title=Having+a+boring+day%3F+Try+Playing+Tetris+On+Your+Mac+Terminal&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/play-tetris-on-your-mac-terminal/2008/10/02" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02">Having a boring day? Try Playing Tetris On Your Mac Terminal</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>After a long boring day at work, what about taking a short break and play some cool tetris game on your Mac terminal? Yes, you hear me right, I am referring to the black, ugly, unglamorous terminal app that you never want to open, and you can play tetris on it. Here&#8217;s how:</p>
<p><span id="more-921"></span>Open up your Finder and go to <em>Application</em> -&gt; <em>Utilities</em>. Open the Terminal app.</p>
<p>Type <em>emacs</em>. You will see a lot of text. If you don&#8217;t understand, just ignore it.</p>
<p><img title="terminal-emacs" src="http://imagecdn.maketecheasier.com/2008/10/terminal-emacs.jpg" alt="terminal-emacs" /></p>
<p>Press the &#8216;escape&#8217; button on your keyboard, follow by &#8216;X&#8217;.</p>
<p>Type &#8216;tetris&#8217; (in lowercase and without the quote) and press &#8216;Enter&#8217;.</p>
<p><img title="terminal-tetris" src="http://imagecdn.maketecheasier.com/2008/10/terminal-tetris.jpg" alt="terminal-tetris" /></p>
<p>Use the arrow keys to move the block left/right and the arrow-up key to change shape. Space to drop the block.</p>
<p>Enjoy!</p>
<p>[via <a href="http://www.tuaw.com/2008/10/01/terminal-tips-play-tetris-in-terminal/" target="_blank">TUAW</a>]</p>
<p><!--adsense#468x60--></p>
<p><div style="float:left;margin-bottom:10px"><a href="http://api.tweetmeme.com/share?url=http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02&amp;service=bit.ly" target="_blank"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02" style="border:none;margin-right:5px" width="51" height="61"></a><a href="http://digg.com/tools/diggthis/login?url=http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02" 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/play-tetris-on-your-mac-terminal/2008/10/02" 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/play-tetris-on-your-mac-terminal/2008/10/02&amp;title=Having+a+boring+day%3F+Try+Playing+Tetris+On+Your+Mac+Terminal&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/play-tetris-on-your-mac-terminal/2008/10/02" target="_blank"><img src="http://images.maketecheasier.com/stumble.png"></a></div>
<div style="clear:both"></div>
<strong><a href="http://maketecheasier.com/play-tetris-on-your-mac-terminal/2008/10/02">Having a boring day? Try Playing Tetris On Your Mac Terminal</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/play-tetris-on-your-mac-terminal/2008/10/02/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

