<?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; installation guide</title>
	<atom:link href="http://maketecheasier.com/tag/installation-guide/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Fri, 20 Nov 2009 13:39:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Install Software from a Tarball in Linux</title>
		<link>http://maketecheasier.com/install-software-from-a-tarball-in-linux/2009/06/25</link>
		<comments>http://maketecheasier.com/install-software-from-a-tarball-in-linux/2009/06/25#comments</comments>
		<pubDate>Thu, 25 Jun 2009 15:30:17 +0000</pubDate>
		<dc:creator>Joshua Price</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[installation guide]]></category>
		<category><![CDATA[tarball]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=5505</guid>
		<description><![CDATA[Most of the time, installing software in Linux is a breeze.  Package management utilities like Apt, Portage, and Yum have made software installation in Linux even easier than it is in Windows (in my opinion at least).  If you know what you want, you simply tell your package manager that you want it, [...]<p><strong><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></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/run-32-bit-apps-in-64-bit-linux/2009/08/10' rel='bookmark' title='Permanent Link: How to Run 32-bit Apps in 64-bit Linux'>How to Run 32-bit Apps in 64-bit Linux</a></li><li><a href='http://maketecheasier.com/install-adobe-air-for-linux-in-ubuntu-intrepid/2008/12/19' rel='bookmark' title='Permanent Link: Install Adobe Air For Linux In Ubuntu Intrepid'>Install Adobe Air For Linux In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/making-the-linux-command-line-a-little-friendlier/2009/03/19' rel='bookmark' title='Permanent Link: Making The Linux Command Line A Little Friendlier'>Making The Linux Command Line A Little Friendlier</a></li><li><a href='http://maketecheasier.com/basic-bash-command-for-new-linux-users/2008/01/22' rel='bookmark' title='Permanent Link: Basic Bash Command For New Linux Users'>Basic Bash Command For New Linux Users</a></li><li><a href='http://maketecheasier.com/backup-instal-your-linux-applications-with-aptoncd/2009/06/13' rel='bookmark' title='Permanent Link: How to Backup And Install Your Linux Applications With AptOnCD'>How to Backup And Install Your Linux Applications With AptOnCD</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-5540" src="http://images.maketecheasier.com/2009/06/tarballs-tux.jpg" alt="tarballs-tux" width="150" height="147" />Most of the time, installing software in Linux is a breeze.  Package management utilities like Apt, Portage, and Yum have made software installation in Linux even easier than it is in Windows (in my opinion at least).  If you know what you want, you simply tell your package manager that you want it, and it&#8217;ll find, download, install, and configure your new package for you.</p>
<p>Sometimes, however, the package doesn&#8217;t exist in your distribution&#8217;s repositories.  Often, in cases like that, your only option is to download a tarball (usually <em>.tar.gz</em>, <em>.tar.bz</em>, or <em>.tgz</em>) which contains the source code for the program that you have to compile yourself.  While it may be a little intimidating at first, compiling from source is normally a quick and easy process.  Today, we&#8217;ll learn how.</p>
<p>First off, I should note that not all tarballs are the same.  This guide will be assuming that the program you&#8217;re trying to install is a normal GNU-style source code collection.  Most require all the steps noted below, but many skip one step or another.  For the purposes of the tutorial I&#8217;ll be compiling the source code package of Python 3.0.1 from the <a href="http://python.org/ftp/python/3.0.1/Python-3.0.1.tgz">Python homepage</a>.</p>
<h3>Step 1:  Extract the tarball</h3>
<p>For those new to Linux, <em>tarball</em> is a term commonly used to refer to a file which contains other files.  It&#8217;s a lot like a ZIP or RAR file in Windows, except that the <em>tar</em> program, on its own, does not compress the files.  Tar works with a compression program like gzip to actually compress the files, which is why you commonly see two extensions (.tar and .gz).  This is sometimes abbreviated to just <em>.tgz</em>.</p>
<p>Fortunately, we don&#8217;t need to run two separate programs to extract the files, we just tell tar to run the files through gzip to decompress.  You can use a graphical utility to extract those files by simply double clicking the tarball from your file manager, or you can do it from the command line with:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">tar</span> <span style="color: #660033;">-zxvf</span> mytarball.tar.gz</pre></div></div>

<p>The options we gave <em>tar</em> are as follows:</p>
<ul>
<li>-z to tell tar to run this file through gzip to decompress (use -j for bzip files)</li>
<li>-x to extract the files</li>
<li>-v for &#8220;verbose&#8221;, so we can see a list of the files it&#8217;s extracting</li>
<li>-f to tell tar that we&#8217;re working with a file</li>
</ul>
<p><em>For easier unzipping, see the <em>Tips</em> section at the bottom of this page </em></p>
<h3>Configure</h3>
<p>Once the files are extracted, open a command terminal and go to the directory where the files have been unzipped.  Before we can compile, we need to run the configure script.  The job of the configure script is to check your system for all the software necessary to compile the program from source code into a usable binary program.  It looks for things like gcc version and other tools needed to build the software.  So once you&#8217;re in the directory with all the files that were unpacked from the tarball, type in</p>

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

<p>If all goes well it&#8217;ll go through a check of various parts of your system, then drop you back to the command line like below:</p>
<p><img class="aligncenter size-full wp-image-5529" src="http://images.maketecheasier.com/2009/06/tarballs-configure.jpg" alt="Running the configure script" width="560" height="369" /></p>
<p>The most common cause of errors in this step is a missing dependency.  Look closely at any errors you may get to determine what package is missing.</p>
<h3>Make</h3>
<p>This is the real meat of the process &#8211; where we compile the source code into a runnable program.  This is normally the easiest step, only requiring a single command.  If the configure step completed without errors, simply type in</p>

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

<p>On a large program, this step might take a few minutes.  Once done, you&#8217;ll be dropped back to the shell prompt as shown here.</p>
<p><img class="aligncenter size-full wp-image-5533" src="http://images.maketecheasier.com/2009/06/tarballs-make.jpg" alt="Compilation stage" width="560" height="369" /></p>
<p>Technically, your program is now ready to use.  Under most circumstances, however, you&#8217;ll want to run one more step so that she program can be fully installed into the correct locations for it to be run from anywhere.</p>
<h3>Make install</h3>
<p>All this really does is copy the now-compiled program into the system directories like /usr/bin so that it can be run from any directory without having to specify a path to the files.  Since it&#8217;s copying to a directory outside your home, you&#8217;ll probably need root privileges.  If the make step completed without errors, simply run</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;">make</span> <span style="color: #c20cb9; font-weight: bold;">install</span></pre></div></div>

<p>to copy the files.  At this point, you&#8217;re all done!  Your new program can be used like any other.</p>
<h3>Tips</h3>
<p>Chances are, you&#8217;ll be compiling from source more than once in your life.  In fact, for those who like to use the latest and greatest software, this can be very common.  To make it a little easier, open your <em>.bashrc</em> file from your home directory, and add the following aliases to the end:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">ungz</span>=<span style="color: #ff0000;">&quot;tar -zxvf&quot;</span>
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">unbz</span>=<span style="color: #ff0000;">&quot;tar -jxvf&quot;</span>
<span style="color: #7a0874; font-weight: bold;">alias</span> <span style="color: #007800;">cmi</span>=<span style="color: #ff0000;">&quot;./configure &amp;&amp; make &amp;&amp; sudo make install&quot;</span></pre></div></div>

<p><p><script type="text/javascript"><!--
google_ad_client = "pub-8765285789552883";
/* MTE body ad300x250, created 5/17/09 */
google_ad_slot = "3980792036";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p></p>
<p><strong><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></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/run-32-bit-apps-in-64-bit-linux/2009/08/10' rel='bookmark' title='Permanent Link: How to Run 32-bit Apps in 64-bit Linux'>How to Run 32-bit Apps in 64-bit Linux</a></li><li><a href='http://maketecheasier.com/install-adobe-air-for-linux-in-ubuntu-intrepid/2008/12/19' rel='bookmark' title='Permanent Link: Install Adobe Air For Linux In Ubuntu Intrepid'>Install Adobe Air For Linux In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/making-the-linux-command-line-a-little-friendlier/2009/03/19' rel='bookmark' title='Permanent Link: Making The Linux Command Line A Little Friendlier'>Making The Linux Command Line A Little Friendlier</a></li><li><a href='http://maketecheasier.com/basic-bash-command-for-new-linux-users/2008/01/22' rel='bookmark' title='Permanent Link: Basic Bash Command For New Linux Users'>Basic Bash Command For New Linux Users</a></li><li><a href='http://maketecheasier.com/backup-instal-your-linux-applications-with-aptoncd/2009/06/13' rel='bookmark' title='Permanent Link: How to Backup And Install Your Linux Applications With AptOnCD'>How to Backup And Install Your Linux Applications With AptOnCD</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/install-software-from-a-tarball-in-linux/2009/06/25/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>How to Upgrade Windows 7 Beta To Windows 7 RC1 Without Formatting Your Hard Disk</title>
		<link>http://maketecheasier.com/upgrade-windows-7-beta-to-windows-7-rc1-without-formatting-your-hard-disk/2009/05/08</link>
		<comments>http://maketecheasier.com/upgrade-windows-7-beta-to-windows-7-rc1-without-formatting-your-hard-disk/2009/05/08#comments</comments>
		<pubDate>Fri, 08 May 2009 01:47:07 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[installation guide]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=4472</guid>
		<description><![CDATA[Microsoft released the Windows 7 Release Candidate for public testing early this week. If you have not grab your copy, you can download it at the Microsoft download site.
This time round, Microsoft is offering the download at least through July 2009, so there is no need to rush for it.
If you are currently Vista on [...]<p><strong><a href="http://maketecheasier.com/upgrade-windows-7-beta-to-windows-7-rc1-without-formatting-your-hard-disk/2009/05/08">How to Upgrade Windows 7 Beta To Windows 7 RC1 Without Formatting Your Hard Disk</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/upgrade-windows-xp-to-windows-7/2009/08/26' rel='bookmark' title='Permanent Link: How to Upgrade Windows XP to Windows 7 Without Losing All Your Settings'>How to Upgrade Windows XP to Windows 7 Without Losing All Your Settings</a></li><li><a href='http://maketecheasier.com/mount-iso-images-in-windows/2009/05/19' rel='bookmark' title='Permanent Link: How to Mount ISO Images In Windows'>How to Mount ISO Images In Windows</a></li><li><a href='http://maketecheasier.com/create-virtual-machine-of-windows-os/2009/11/12' rel='bookmark' title='Permanent Link: How to Create a Virtual Machine of Your Existing Windows Operating System'>How to Create a Virtual Machine of Your Existing Windows Operating System</a></li><li><a href='http://maketecheasier.com/how-to-dual-boot-win-vista-with-windows-7/2009/01/11' rel='bookmark' title='Permanent Link: How to Dual Boot Windows Vista And Windows 7'>How to Dual Boot Windows Vista And Windows 7</a></li><li><a href='http://maketecheasier.com/internet-explorer-8-beta-1-are-you-feeling-excited-iam-not/2008/03/06' rel='bookmark' title='Permanent Link: Internet Explorer 8 Beta 1: Are You Feeling Excited? (I&#8217;am Not!)'>Internet Explorer 8 Beta 1: Are You Feeling Excited? (I&#8217;am Not!)</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-4476" title="win7-installation-small" src="http://images.maketecheasier.com/2009/05/win7-installation-small.jpg" alt="win7-installation-small" width="217" height="208" />Microsoft released the Windows 7 Release Candidate for public testing early this week. If you have not grab your copy, you can download it at the <a href="http://www.microsoft.com/windows/windows-7/download.aspx" target="_blank">Microsoft download site</a>.</p>
<p>This time round, Microsoft is offering the download at least through July 2009, so there is no need to rush for it.</p>
<p>If you are currently Vista on your computer, you can easily upgrade to Windows 7 RC 1 without reformatting the hard disk. However, if you have already converted fully to Windows 7 since beta release, you are out of luck, because Microsoft does not allow you to to perform a direct upgrade from the Beta.</p>
<blockquote><p>We’ve also learned that many of you (millions) are running Windows 7 Beta full time. You’re anxious for a refresh. You’ve installed all your applications. You’ve configured and customized the system. You would love to get the RC and quickly upgrade to it from Beta. The RC, however, is about getting breadth coverage to validate the product in real-world scenarios. As a result, <strong>we want to encourage you to revert to a Vista image and upgrade or to do a clean install, rather than upgrade the existing Beta.</strong> We know that means reinstalling, recustomizing, reconfiguring, and so on.  That is a real pain.  The reality is that upgrading from one pre-release build to another is not a scenario we want to focus on because it is not something real-world customers will experience.</p>
<p>Excerpted from <a href="http://blogs.msdn.com/e7/archive/2009/04/07/delivering-a-quality-upgrade-experience.aspx" target="_blank">MSDN blog</a></p></blockquote>
<p>If you decide to follow Microsoft&#8217;s advice and do a clean installation, you can use the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=2b6f1631-973a-45c7-a4ec-4928fa173266&amp;DisplayLang=en" target="_blank">Windows Easy Transfer</a> application to back up/restore your data easily. However if you are looking for a quick fix to upgrade to Windows 7 RC 1 directly from Beta, here&#8217;s the hack:</p>
<p>1. Download the Windows 7 RC1 iso file.</p>
<p>2. Download and install <a href="http://www.slysoft.com/en/download.html" target="_blank">Virtual CloneDrive</a> in your Windows 7 beta. You should see a new virtual drive in your Windows Explorer.</p>
<p>3. Right click on the virtual drive and select <em>VirtualCloneDrive -&gt; Mount</em>. Navigate to the location where you save the RC1 iso file and select the file. This will mount the iso in your system.</p>
<p><img class="alignnone size-full wp-image-4473" title="win7-mountiso" src="http://images.maketecheasier.com/2009/05/win7-mountiso.jpg" alt="win7-mount-iso" width="577" height="470" /></p>
<p>4. Open the virtual drive (right click and select Open, do not double click). Copy all the files to a new folder in your hard disk (or a flash drive).</p>
<p>5. In the new folder where you have saved all the files, browse to the <em>sources</em> directory. Open the file <em>cversion.ini</em> with Notepad.</p>
<p>6. Change the <em>MinClient</em> build number to 7000</p>
<p><img style="display: inline" title="win7-modify-cversion" src="http://images.maketecheasier.com/2009/05/win7modifycversion.jpg" alt="win7-modify-cversion" width="533" height="127" /></p>
<p>7. Save the file in place with the same name.</p>
<p>8. Go up one folder and double click the <em>Setup</em> file to start the RC1 installation.</p>
<p><img style="display: inline" title="win7-installation" src="http://images.maketecheasier.com/2009/05/win7installation.jpg" alt="win7-installation" width="577" height="426" /></p>
<p>That&#8217;s it.</p>
<p><strong>Note</strong>: You might experience some oddity with this method of upgrading. For best user experience, it is advisable to do a clean installation.</p>
<p><!--adsense#468x60--></p>
<p><strong><a href="http://maketecheasier.com/upgrade-windows-7-beta-to-windows-7-rc1-without-formatting-your-hard-disk/2009/05/08">How to Upgrade Windows 7 Beta To Windows 7 RC1 Without Formatting Your Hard Disk</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/upgrade-windows-xp-to-windows-7/2009/08/26' rel='bookmark' title='Permanent Link: How to Upgrade Windows XP to Windows 7 Without Losing All Your Settings'>How to Upgrade Windows XP to Windows 7 Without Losing All Your Settings</a></li><li><a href='http://maketecheasier.com/mount-iso-images-in-windows/2009/05/19' rel='bookmark' title='Permanent Link: How to Mount ISO Images In Windows'>How to Mount ISO Images In Windows</a></li><li><a href='http://maketecheasier.com/create-virtual-machine-of-windows-os/2009/11/12' rel='bookmark' title='Permanent Link: How to Create a Virtual Machine of Your Existing Windows Operating System'>How to Create a Virtual Machine of Your Existing Windows Operating System</a></li><li><a href='http://maketecheasier.com/how-to-dual-boot-win-vista-with-windows-7/2009/01/11' rel='bookmark' title='Permanent Link: How to Dual Boot Windows Vista And Windows 7'>How to Dual Boot Windows Vista And Windows 7</a></li><li><a href='http://maketecheasier.com/internet-explorer-8-beta-1-are-you-feeling-excited-iam-not/2008/03/06' rel='bookmark' title='Permanent Link: Internet Explorer 8 Beta 1: Are You Feeling Excited? (I&#8217;am Not!)'>Internet Explorer 8 Beta 1: Are You Feeling Excited? (I&#8217;am Not!)</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/upgrade-windows-7-beta-to-windows-7-rc1-without-formatting-your-hard-disk/2009/05/08/feed</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>Download Ubuntu Installation Guide and Cheatsheet Now</title>
		<link>http://maketecheasier.com/download-ubuntu-installation-guide-and-cheatsheet-now/2009/04/23</link>
		<comments>http://maketecheasier.com/download-ubuntu-installation-guide-and-cheatsheet-now/2009/04/23#comments</comments>
		<pubDate>Thu, 23 Apr 2009 13:00:47 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[cheatsheet]]></category>
		<category><![CDATA[installation guide]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=4252</guid>
		<description><![CDATA[Today is the big day you have been waiting for, the day where Ubuntu 9.04 is released. I hope you have successfully downloaded the LiveCD and installed it on your system.
For those who have difficulties installing or migrating to Ubuntu, we thought this would be a good time to bring a nice little cheat sheet/installation [...]<p><strong><a href="http://maketecheasier.com/download-ubuntu-installation-guide-and-cheatsheet-now/2009/04/23">Download Ubuntu Installation Guide and Cheatsheet Now</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/playdeb-makes-game-installation-in-ubuntu-a-breeze/2008/09/17' rel='bookmark' title='Permanent Link: Playdeb Makes Game Installation In Ubuntu a Breeze'>Playdeb Makes Game Installation In Ubuntu a Breeze</a></li><li><a href='http://maketecheasier.com/guide-to-playstation-emulator-on-ubuntu/2008/03/19' rel='bookmark' title='Permanent Link: Guide to Playstation Emulator on Ubuntu'>Guide to Playstation Emulator on Ubuntu</a></li><li><a href='http://maketecheasier.com/10-useful-ubuntu-related-sites-you-should-bookmark/2009/04/24' rel='bookmark' title='Permanent Link: 10 Useful Ubuntu-related Sites You Should Bookmark'>10 Useful Ubuntu-related Sites You Should Bookmark</a></li><li><a href='http://maketecheasier.com/perform-debian-50-network-install/2009/02/20' rel='bookmark' title='Permanent Link: The Detail Guide To Perform A Debian 5.0 Network Install'>The Detail Guide To Perform A Debian 5.0 Network Install</a></li><li><a href='http://maketecheasier.com/time-machine-for-ubuntu-try-timevault-and-flyback/2008/03/07' rel='bookmark' title='Permanent Link: Time machine For Ubuntu? Try Timevault and Flyback'>Time machine For Ubuntu? Try Timevault and Flyback</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Today is the big day you have been waiting for, the day where <a href="http://www.ubuntu.com/getubuntu" target="_blank">Ubuntu 9.04</a> is released. I hope you have successfully downloaded the LiveCD and installed it on your system.</p>
<p>For those who have difficulties installing or migrating to Ubuntu, we thought this would be a good time to bring a nice little cheat sheet/installation guide for all MakeTechEasier readers.</p>
<h3>Ubuntu Installation Guide</h3>
<p><a href="http://download.maketecheasier.com/MTE_ubuntu904_ins.pdf"><img class="alignnone size-full wp-image-4253" title="ubuntu-installation-guide" src="http://images.maketecheasier.com/2009/04/ubuntu-installation-guide.jpg" alt="ubuntu-installation-guide" width="576" height="185" /></a></p>
<p>In this step-by-step installation guide, MakeTechEasier&#8217;s writer – <a href="http://maketecheasier.com/author/sharninderkhera" target="_blank">Sharninder</a> (<a href="http://geekyninja.com" target="_blank">geekyninja.com</a>) will hold your hand through the whole installation process. Be it a fresh installation, upgrade from previous Ubuntu version or installing in your Windows OS, you won&#8217;t feel lost with this guide around.</p>
<h3>Ubuntu Cheatsheet</h3>
<p><a href="http://download.maketecheasier.com/MTE_ubuntu_cheatsheet.pdf"><img class="alignnone size-full wp-image-4254" title="ubuntu-cheatsheet" src="http://images.maketecheasier.com/2009/04/ubuntu-cheatsheet.jpg" alt="ubuntu-cheatsheet" width="288" height="323" /></a></p>
<p>In addition, Sharninder also comes out with a bash command cheatsheet that you can refer to it quickly and easily. There is no need for you to hunt high and low for that particular command now.</p>
<p>Don&#8217;t wait anymore! Download the <a href="http://download.maketecheasier.com/MTE_ubuntu904_ins.pdf">Ubuntu 9.04 Installation Guide</a> and <a href="http://download.maketecheasier.com/MTE_ubuntu_cheatsheet.pdf">Cheatsheet</a> now, at no cost at all.</p>
<p><p><script type="text/javascript"><!--
google_ad_client = "pub-8765285789552883";
/* MTE body ad300x250, created 5/17/09 */
google_ad_slot = "3980792036";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p></p>
<p><strong><a href="http://maketecheasier.com/download-ubuntu-installation-guide-and-cheatsheet-now/2009/04/23">Download Ubuntu Installation Guide and Cheatsheet Now</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/playdeb-makes-game-installation-in-ubuntu-a-breeze/2008/09/17' rel='bookmark' title='Permanent Link: Playdeb Makes Game Installation In Ubuntu a Breeze'>Playdeb Makes Game Installation In Ubuntu a Breeze</a></li><li><a href='http://maketecheasier.com/guide-to-playstation-emulator-on-ubuntu/2008/03/19' rel='bookmark' title='Permanent Link: Guide to Playstation Emulator on Ubuntu'>Guide to Playstation Emulator on Ubuntu</a></li><li><a href='http://maketecheasier.com/10-useful-ubuntu-related-sites-you-should-bookmark/2009/04/24' rel='bookmark' title='Permanent Link: 10 Useful Ubuntu-related Sites You Should Bookmark'>10 Useful Ubuntu-related Sites You Should Bookmark</a></li><li><a href='http://maketecheasier.com/perform-debian-50-network-install/2009/02/20' rel='bookmark' title='Permanent Link: The Detail Guide To Perform A Debian 5.0 Network Install'>The Detail Guide To Perform A Debian 5.0 Network Install</a></li><li><a href='http://maketecheasier.com/time-machine-for-ubuntu-try-timevault-and-flyback/2008/03/07' rel='bookmark' title='Permanent Link: Time machine For Ubuntu? Try Timevault and Flyback'>Time machine For Ubuntu? Try Timevault and Flyback</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/download-ubuntu-installation-guide-and-cheatsheet-now/2009/04/23/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
