<?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>Small Town Geeks &#187; HowTo</title>
	<atom:link href="http://smalltowngeeks.net/tag/howto/feed/" rel="self" type="application/rss+xml" />
	<link>http://smalltowngeeks.net</link>
	<description>Tech News, How to&#039;s, and Reviews</description>
	<lastBuildDate>Mon, 10 Oct 2011 15:00:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Github Source Control Management</title>
		<link>http://smalltowngeeks.net/2010/11/06/github-source-control-management/</link>
		<comments>http://smalltowngeeks.net/2010/11/06/github-source-control-management/#comments</comments>
		<pubDate>Sun, 07 Nov 2010 03:10:16 +0000</pubDate>
		<dc:creator>gilsal</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[How To's]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[git]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[repository]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=747</guid>
		<description><![CDATA[Github Social Coding (Source Control Management) Github can be summarized as the software developers Dropbox. Added bonuses that only groups of software developers can appreciate differentiate it from the rest. Simply, Github provides multiple developers the ability to work on the same project without causing an interference with another developer. This means that any developer [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F11%2F06%2Fgithub-source-control-management%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F11%2F06%2Fgithub-source-control-management%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly&amp;hashtags=coding,development,git,github,HowTo,repository,sharing,source&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; min-height: 14.0px} span.s1 {letter-spacing: 0.0px} span.s2 {text-decoration: underline ; letter-spacing: 0.0px color: #0b00ae} -->Github Social Coding</p>
<p>(Source Control Management)</p>
<p>Github can be summarized as the software developers Dropbox. Added bonuses that only groups of software developers can appreciate differentiate it from the rest. Simply, Github provides multiple developers the ability to work on the same project without causing an interference with another developer. This means that any developer can continue to code as if it were their own program and essentially have their own version of the same project. Ultimately all collaborators will share and compile code to complete the project. To learn more of the intricate details of Github, the developers have a well written documentation of functions at <a href="http://help.github.com">http://help.github.com/</a></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} --></p>
<p>Personally I am a fairly regular user for work and therefore I am not an expert but I shall divulge common functions I uses on a regular basis.</p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica; min-height: 14.0px} span.s1 {letter-spacing: 0.0px} --></p>
<p>I am a Mac user and therefore  this will initially work only for fellow Apple users. I intend this article to be followed by a Windows solution. Globally for all platforms, Github uses a terminal interface I would casually describe as Linux-esque. Most commands will be performed through the terminal interface.</p>
<p><span style="text-decoration: underline;">Registration</span></p>
<p>The registration is quite simple. It is when initiating the terminal interface for different platforms does it become tricky (ie. Windows). New users need to register through the web interface of Github. It is easily described as common as signing up for a new email account on gmail. Once the accounts username, password, and email address has been registered the new user will need to set up the account credentials on their terminal. You’ll first need to install the file on your machine which can be easily accomplished in various ways.</p>
<p><!-- li.li1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} span.s2 {text-decoration: underline ; letter-spacing: 0.0px color: #0b00ae} --></p>
<ul>
<li>Mac users can install through pre-compiled installers, Homebrew, MacPorts, and manual configuration all of which can be researched at <a href="http://help.github.com/mac-git-installation/">http://help.github.com/mac-git-installation/</a></li>
<li>Linux users can install through Synaptic Package Manager installing git-core, git-gui, and git-doc or use the command $ sudo apt-get install git-core git-gui git-doc. Information on these installs can be found at <a href="http://help.github.com/linux-git-installation/">http://help.github.com/linux-git-installation/</a> Note that example uses Ubuntu Linux though I am fairly certain that Fedora, Red Hat, and all other distributions have their respective installation process.</li>
<li>Windows users can use msysgit as their installer for git. It is straight forward but is advised by both the help github site as well as my self that if prompted for the option of using PuTTY against openSSH that users always choose openSSH. Github only supports openSSH as their security socket/protocol.</li>
</ul>
<p style="text-align: center;"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/11/new_account.tiff"><img class="aligncenter size-full wp-image-748" title="new_account" src="http://smalltowngeeks.net/wp-content/uploads/2010/11/new_account.tiff" alt="" width="588" height="140" /></a></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 12.0px Helvetica} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 17.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} span.s2 {text-decoration: underline ; letter-spacing: 0.0px color: #0b00ae} --><span style="text-decoration: underline;">Terminal Account Setup</span></p>
<p>The next step into Github is establishing your account in the terminal. This step is fairly simple. The user will need the same credentials as the registration process. The task for this setup is the global configuration of git on the users local machine as well as generating ones ssh keys for authentication. The first task that should be completed is retrieving ones ssh keys. Since all platforms, at this point, are using similar instances of terminal client the command for all machines will be as follows.</p>
<p>$ ssh-keygen -t rsa -C “email@address.com”</p>
<p>Once the key is generated a file named id_rsa.pub should be in the directory the keygen command was called. Open that file in a text editor and copy that contents as is and paste into SSH Public keys of the web interface of Github.</p>
<p style="text-align: center;"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/11/ssh_key.tiff"><img class="aligncenter size-full wp-image-751" title="ssh_key" src="http://smalltowngeeks.net/wp-content/uploads/2010/11/ssh_key.tiff" alt="" width="588" height="380" /></a></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 17.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} -->Next is to configure the global user account. The following commands will setup the user account on the users terminal client.</p>
<p style="text-align: center;"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/11/global_terminal_config.tiff"><img class="aligncenter size-full wp-image-753" title="global_terminal_config" src="http://smalltowngeeks.net/wp-content/uploads/2010/11/global_terminal_config.tiff" alt="" width="493" height="78" /></a></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 17.0px; font: 12.0px Helvetica} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 17.0px; font: 12.0px Helvetica; min-height: 14.0px} span.s1 {letter-spacing: 0.0px} -->Once this procedure has been completed, the user will have a secure means of sending new revision to and from their web account.</p>
<p><span style="text-decoration: underline;">Creating a repository</span></p>
<p>You’ll achieve this feature by going through the web interface.</p>
<p style="text-align: center;"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/11/create_new_repo.tiff"><img class="aligncenter size-full wp-image-754" title="create_new_repo" src="http://smalltowngeeks.net/wp-content/uploads/2010/11/create_new_repo.tiff" alt="" width="853" height="398" /></a></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 17.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} -->You’ll want to create a new repository. The next screen will prompt you for a few details. Project name, Description, and Homepage URL if you decide to include.</p>
<p style="text-align: center;"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/11/new_repo_info.tiff"><img class="aligncenter size-full wp-image-755" title="new_repo_info" src="http://smalltowngeeks.net/wp-content/uploads/2010/11/new_repo_info.tiff" alt="" width="851" height="294" /></a></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 17.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} -->Once the repository is created you can then sync a project from your local machine. The next set of steps is written on the next screen after the repository is created.</p>
<p style="text-align: center;"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/11/git_instructions.tiff"><img class="aligncenter size-full wp-image-756" title="git_instructions" src="http://smalltowngeeks.net/wp-content/uploads/2010/11/git_instructions.tiff" alt="" width="553" height="349" /></a></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 17.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} -->In the terminal while inside of the directory you’ll want to execute the following commands.</p>
<p style="text-align: center;"><a href="http://smalltowngeeks.net/wp-content/uploads/2010/11/terminal_commands.tiff"><img class="aligncenter size-full wp-image-757" title="terminal_commands" src="http://smalltowngeeks.net/wp-content/uploads/2010/11/terminal_commands.tiff" alt="" width="552" height="199" /></a></p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; line-height: 17.0px; font: 12.0px Helvetica} span.s1 {letter-spacing: 0.0px} span.s2 {text-decoration: underline ; letter-spacing: 0.0px color: #0b00ae} -->Git init will initialize the repository on your local machine.</p>
<p>Touch Readme is actually trivial and is often skipped by other developers. It is used to force the directory to experience an addition or modification.</p>
<p>Git commit is another common command uses will use. This function will essentially add your changes to your local repository and can be pushed online.</p>
<p>The command git remote add origin <a href="mailto:git@github.com">git@github.com</a>:gilsal/SmallTownGeeks.git is the command the user will use to bridge their local repository to their online one. This command is only need once during the initialization process.</p>
<p>Git push origin master is how to merge changes between the local repo and the online.</p>
<p>Once the repository has been initialized both online and on the local machine the the most common commands one will use is the “git commit” and “git push.” Other common commands will be “git reset &#8211;hard”, “git checkout”, and “git pull”. “Git reset &#8211;hard” and “git checkout” both reset changes that ones made on the local machine. “Git reset &#8211;hard” reset working branches where as “git checkout” resets a single file. “Git pull” allows a user to copy another users repository on their local machine. This is useful for when collaborating with other developers on projects.</p>
<p>If you have any questions feel free to leave a comment and we can give you a hand!</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://smalltowngeeks.net/2010/11/06/github-source-control-management/' addthis:title='Github Source Control Management ' ><a href="//addthis.com/bookmark.php?v=250&amp;username=xa-4d2b47597ad291fb" class="addthis_button_compact">Share</a><span class="addthis_separator">|</span><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a></div>]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/11/06/github-source-control-management/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using wireless in Hyper-V</title>
		<link>http://smalltowngeeks.net/2010/04/07/using-wireless-in-hyper-v/</link>
		<comments>http://smalltowngeeks.net/2010/04/07/using-wireless-in-hyper-v/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 21:24:16 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[HyperV]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/?p=435</guid>
		<description><![CDATA[I know, I know, Who is going to have a wireless card even close to there data center? The answer, no one. But you may find yourself wanting to create, test, and verify VHD’s while on the road or away from the server. Hyper-V does not natively support using Wireless Cards as they are un-likely [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F04%2F07%2Fusing-wireless-in-hyper-v%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F04%2F07%2Fusing-wireless-in-hyper-v%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly&amp;hashtags=HowTo,HyperV,Operating+System,Server,Virtualization,Windows&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/Wireless_HyperV.jpg"><img style="border: 0px none; display: block; margin-left: auto; margin-right: auto;" title="Wireless_HyperV" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/Wireless_HyperV_thumb.jpg" border="0" alt="Wireless_HyperV" width="332" height="126" /></a></p>
<p>I know, I know, Who is going to have a wireless card even close to there data center? The answer, no one. But you may find yourself wanting to create, test, and verify VHD’s while on the road or away from the server. Hyper-V does not natively support using Wireless Cards as they are un-likely to be used in production environments, that said it is still possible.</p>
<p><span id="more-435"></span></p>
<p>There are three different types of virtual networks that we can utilize in Hyper-V .External which binds a physical interface to the connection to the machine can access a physical network. Internal which will create a Virtual network adapter that you use to communicate between the machines on the server and the physical machine itself. The final one which is Private which creates a network that only the machines that you select can communicate on the virtual network.</p>
<p>The connection type that we will be using is the “Internal” type of connection. Like I stated earlier this connection creates a network interface on the physical computer so it can communicate with the virtual machine.</p>
<p>Go into Hyper-V Virtual Network Manager and create a new network. We will call it STG.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless.png"><img style="display: inline; border-width: 0px;" title="HyperV_Wireless" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless_thumb.png" border="0" alt="HyperV_Wireless" width="280" height="308" /></a></p>
<p>Now go into “Network Connections” (Control Panel –&gt; Network and Internet –&gt; Network and Sharing Center –&gt; Change Adapter Settings )</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless2.png"><img style="display: inline; border: 0px;" title="HyperV_Wireless2" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless2_thumb.png" border="0" alt="HyperV_Wireless2" width="317" height="284" /></a></p>
<p>Select the virtual adapter that was created and the wireless adapter and right click “Add to Bridge” You will now see a Network bridge that displays both networks IE STG and DadderN (Home Network).</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless5.png"><img style="display: inline; border: 0px;" title="HyperV_Wireless5" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless5_thumb.png" border="0" alt="HyperV_Wireless5" width="189" height="81" /></a></p>
<p>Now set the IP settings to your default gateway and other network settings.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless4.png"><img style="display: inline; border: 0px;" title="HyperV_Wireless4" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/HyperV_Wireless4_thumb.png" border="0" alt="HyperV_Wireless4" width="216" height="320" /></a></p>
<p>Now you will have given outside network access to your virtual switch and you will be able to navigate outside of your lan.</p>
<p>If you have any problems feel free to email me at tj{at}smalltowngeeks{dot}net</p>
<p>TJ</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://smalltowngeeks.net/2010/04/07/using-wireless-in-hyper-v/' addthis:title='Using wireless in Hyper-V ' ><a href="//addthis.com/bookmark.php?v=250&amp;username=xa-4d2b47597ad291fb" class="addthis_button_compact">Share</a><span class="addthis_separator">|</span><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a></div>]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/04/07/using-wireless-in-hyper-v/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Ubuntu</title>
		<link>http://smalltowngeeks.net/2010/04/07/installing-ubuntu/</link>
		<comments>http://smalltowngeeks.net/2010/04/07/installing-ubuntu/#comments</comments>
		<pubDate>Wed, 07 Apr 2010 20:51:26 +0000</pubDate>
		<dc:creator>TJ</dc:creator>
				<category><![CDATA[How To's]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://smalltowngeeks.net/2010/04/07/installing-ubuntu/</guid>
		<description><![CDATA[&#160; Here is a Quick Guide on how to install Ubuntu. Installation of Ubuntu 1. Download the most up to date distro of Ubuntu from : http://ubuntu.com 2. Burn ISO image to a optical media such as a DVD or CD 3. Insert disk into the server and set your boot options within the bios [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F04%2F07%2Finstalling-ubuntu%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fsmalltowngeeks.net%2F2010%2F04%2F07%2Finstalling-ubuntu%2F&amp;source=smalltowngeeks&amp;style=normal&amp;service=bit.ly&amp;hashtags=HowTo,Linux,Operating+System,Ubuntu&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>&#160;</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/ubuntuwallpapereasy.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="ubuntu-wallpaper-easy" border="0" alt="ubuntu-wallpaper-easy" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/ubuntuwallpapereasy_thumb.png" width="244" height="184" /></a> </p>
<p>Here is a Quick Guide on how to install Ubuntu. </p>
<p>Installation of Ubuntu</p>
<p>1. Download the most up to date distro of Ubuntu from : <a href="http://ubuntu.com">http://ubuntu.com</a></p>
<p>2. Burn ISO image to a optical media such as a DVD or CD</p>
<p> <span id="more-432"></span>
<p>3. Insert disk into the server and set your boot options within the bios to boot to optical drive. </p>
<p>4. When the installer starts you will be presented with a prompt to choose your language, select your language.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image002.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image002" border="0" alt="clip_image002" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image002_thumb.png" width="244" height="185" /></a></p>
<p>5. Next you will see a menu with different options that you can choose to do with the disk. We want to select “Install Ubuntu”</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image003.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image003" border="0" alt="clip_image003" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image003_thumb.png" width="244" height="86" /></a></p>
<p>6. Next choose your language again.</p>
<p>7. Now select your Time Zone and adjust the time.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image005.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image005" border="0" alt="clip_image005" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image005_thumb.png" width="244" height="182" /></a></p>
<p>8. Next select your keyboard layout.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image006.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image006" border="0" alt="clip_image006" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image006_thumb.png" width="244" height="72" /></a></p>
<p>9. Next is when you can select different partition options. In this example we are going to use the whole disk. </p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image008.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image008" border="0" alt="clip_image008" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image008_thumb.png" width="244" height="96" /></a></p>
<p>10. Now we must name the machine as well as setup passwords for the unit.</p>
<p>Tip: If on a domain make sure you stay within naming policies to save yourself some hassle later. </p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image010.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image010" border="0" alt="clip_image010" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image010_thumb.png" width="244" height="158" /></a></p>
<p>11. Now we are ready to install, verify your settings and click next to start the installation.</p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image012.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image012" border="0" alt="clip_image012" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image012_thumb.png" width="244" height="193" /></a></p>
<p><a href="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image014.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="clip_image014" border="0" alt="clip_image014" src="http://smalltowngeeks.net/wp-content/uploads/2010/04/clip_image014_thumb.png" width="244" height="193" /></a></p>
<p>12. Ubuntu will now be installed on your system.</p>
<p>13. Click Login to begin.</p>
<div class="addthis_toolbox addthis_default_style " addthis:url='http://smalltowngeeks.net/2010/04/07/installing-ubuntu/' addthis:title='Installing Ubuntu ' ><a href="//addthis.com/bookmark.php?v=250&amp;username=xa-4d2b47597ad291fb" class="addthis_button_compact">Share</a><span class="addthis_separator">|</span><a class="addthis_button_preferred_1"></a><a class="addthis_button_preferred_2"></a><a class="addthis_button_preferred_3"></a><a class="addthis_button_preferred_4"></a></div>]]></content:encoded>
			<wfw:commentRss>http://smalltowngeeks.net/2010/04/07/installing-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

