<?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>Alonzo Fretwell &#187; Ubuntu Desktop</title>
	<atom:link href="http://alonzofretwell.com/blog/category/ubuntu-desktop/feed/" rel="self" type="application/rss+xml" />
	<link>http://alonzofretwell.com</link>
	<description>Use Open Source</description>
	<lastBuildDate>Sun, 14 Nov 2010 19:29:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Bash Scripting for Ubuntu: Episode 3</title>
		<link>http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/</link>
		<comments>http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/#comments</comments>
		<pubDate>Sun, 14 Nov 2010 19:29:58 +0000</pubDate>
		<dc:creator>Wolf Halton</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Shell Script]]></category>
		<category><![CDATA[Ubuntu Desktop]]></category>

		<guid isPermaLink="false">http://alonzofretwell.com/?p=1150</guid>
		<description><![CDATA[Welcome to Episode 3 This episode is mostly about variables, which are names for places in memory where you will store values. Values can be strings of characters or numbers. Bash doesn&#8217;t require you to choose which type of value &#8230; <a href="http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!-- p { margin-bottom: 0.08in; }h3 { margin-bottom: 0.08in; } --></p>
<h2>Welcome to Episode 3</h2>
<p>This episode is mostly about variables, which are names for places in memory where you will store values.  Values can be strings of characters or numbers.  Bash doesn&#8217;t require you to choose which type of value you are going to use to fill your variable.</p>
<h3>Variables in Bash Scripting</h3>
<p>The script below shows how to assign and use a simple variable. In general, shell variables are all treated as <em>strings. </em> A string is a series of characters, the content of which are ignored by the shell. Shell programming required you to get the syntax right.  In the <em>assignment</em> there must be no space between the variable name and the equals sign, or the equals sign and the value. To use the variable, it is prefixed by a dollar &#8216;<strong>$</strong>&#8216; character.</p>
<pre><span style="font-size: small;">#!/bin/sh</span>
<span style="font-size: small;"># <em>name</em> is a variable</span>
<span style="font-size: small;"><em>name</em>="Ferdinand" # This is an assignment of a value to a variable
                 #  called “name.”</span>
<span style="font-size: small;"><em><strong>echo</strong></em> "The name is <em>$name</em>"  # This line is calling the variable
                          #  called name.</span></pre>
<p><span style="font-size: small;">The script above would generate a line that read, “The name is Ferdinand”</span></p>
<p>The special variables <em>$1</em>-<em>$9</em> correspond to the arguments passed to the script when it is invoked. For example, if we rewrite the script above as shown below, calling the script <strong>Yourname.sh</strong>, and then invoke the command Yourname.sh Ferdinand Quacker, the message &#8220;Your name is Ferdinand Quacker&#8221; will be printed out:</p>
<pre><span style="font-size: small;">#!/bin/sh</span>
<span style="font-size: small;"># Yourname.sh</span>
<span style="font-size: small;">echo "Your name is $1 $2"</span>

<span style="font-size: small;">wolf@Lab5-ubustudio:~$ sudo chmod +x Yourname.sh </span>
<span style="font-size: small;">[sudo] password for wolf: </span>
<span style="font-size: small;">wolf@Lab5-ubustudio:~$ ./Yourname.sh      </span>
<span style="font-size: small;">Your name is  </span>
<span style="font-size: small;">wolf@Lab5-ubustudio:~$ ./Yourname.sh Ferdinand Quacker </span>
<span style="font-size: small;">Your name is Ferdinand Quacker </span></pre>
<p>Where I “<span style="text-decoration: underline;">forgot</span>” to define the variables <em>$1</em> and <em>$2</em>, the script ran great but produced no visible output.</p>
<h3>Naming Conventions in Bash Scripting</h3>
<p>You can choose almost any name for your variables, and textbooks often use one-letter variable names such as “A,” “B” and “C.”  This makes a short example for the textbook, and in certain situations is the best kind of name for a variable.  Some requirements of bash variable names are that they cannot contain spaces and they cannot start with a digit.  Many sources for bash scripting help suggest you always use upper-case letters in a variable name, like “WEIGHT,” or that you always use lower-case letters, like “weight.”  It is most important to keep some regularity in your variable-naming.</p>
<p>The most common conventions are</p>
<p><strong>Single word:</strong> Where the name of the variable is a single word that is descriptive of what the content of the variable will be.  “height,” “weight,” “colour,” “description” or understandable shortenings of the words like “desc,” “mnths,” “hght,” and so on.  Keep in mind that the name of a variable can help future readers of your code to understand what you meant the script to do.  That future reader might be you!</p>
<p><strong>Underscore_Separated words:</strong> Where the variable name is two or more words separated by an underscore.  Underscore is the name for the character that results from holding the shift key down and tapping the hyphen or dash. “_” between words is treated by the shell program as if there is no space between the words but is readable as if there is a space, e.g., “points_scored,” “monthly_expenses,” “sum_of_entries”  This convention makes the code easier to read.</p>
<p><strong>CamelCase or StudlyCapitals:</strong> CamelCase uses two or more words to name a variable, but instead of an underscore, camelCasing capitalizes the first letter of the internal words.</p>
<p>Arithmetic in Bash Scripting</p>
<p>Shell scripts can also do math but it is not a great way to spend your (computer&#8217;s) time.  The script below will produce a Fibonacci sequence.  A Fibonacci sequence takes one number and adds the next number to it to produce the third in the sequence and then takes #&#8217;s 2 and 3 to make #4 in the sequence and so on.  In a Fibonacci sequence, denoted by F<sub>0</sub> , F<sub>1</sub> , F<sub>2</sub> , F<sub>3</sub> , F<sub>4</sub> , … [where the subscribed numbers ( 0, 1, 2, 3, 4 , … ) are indices identifying the consecutive members of the sequence], any member is the sum of its two immediate predecessors.  Thus, beginning with F<sub>0</sub> = 0 and F<sub>1</sub> = 1 , for j = 2, 3, 4 , 5, … , every F<sub>j</sub> = F<sub>j-1</sub> + F<sub>j-2</sub> .”  If you set the MAX constant to 40, you will notice that it takes more than twice as much time as calculating 20 entries in the Fibonacci series.  Simple formulae work quickly enough, but long and complicated formulae may work better in in compiled programs.  There are ways to have Bash scripts call compiled program modules, so there is no problem if you really must have a complicated problem to solve.</p>
<pre><span style="font-size: small;">#!/bin/bash </span>
<span style="font-size: small;"># fibonacci.sh : Fibonacci sequence </span>

<span style="font-size: small;"><em>MAX</em>=20     # a constant, denoting Number of terms (+1) to generate. </span>
<span style="font-size: small;"><em>MIN</em>=2      # another constant. </span>
           <span style="font-size: small;">#If index is less than 2, then Fibo(index) = index. </span>

<span style="font-size: small;"><strong>Fibonacci () </strong></span>
<span style="font-size: small;"><strong>{</strong> </span>
  <span style="font-size: small;"><em>fsn</em>=<em>$1</em>   </span>
  <span style="font-size: small;"><strong>if</strong> <strong>[</strong> "<em>$fsn</em>" <strong>-lt</strong> "<em>$MIN</em>" <strong>]</strong> </span>
  <span style="font-size: small;"><strong>then</strong> </span>
    <span style="font-size: small;"><em><strong>echo</strong></em> "<em>$fsn</em>"  # First two terms are 0 1 ... see above. </span>
  <span style="font-size: small;"><strong>else</strong> </span>
    <span style="font-size: small;">(( <strong>--</strong><em>fsn</em> ))  # j-1 </span>
    <span style="font-size: small;"><em>term1</em>=$( <strong>Fibonacci</strong> <em>$fsn</em> )   #  Fibo(j-1) </span>

    <span style="font-size: small;">(( <strong>--</strong><em>fsn</em> ))  # j-2 </span>
    <span style="font-size: small;"><em>term2</em>=$( <strong>Fibonacci</strong> <em>$fsn</em> )   #  Fibo(j-2) </span>

    <span style="font-size: small;"><em><strong>echo</strong></em> $((<em> term1 + term2 </em>)) </span>
  <span style="font-size: small;"><strong>fi</strong> </span>
<span style="font-size: small;"><strong>}</strong></span>

<span style="font-size: small;"><strong>for</strong> <em>i</em> <strong>in</strong> $(<strong>seq</strong> 0 <em>$MAX</em>) </span>
<span style="font-size: small;"><strong>do</strong>  # Calculate $MAX+1 terms. </span>
  <span style="font-size: small;"><em>FIBO</em>=$(<strong>Fibonacci</strong> <em>$i</em>) </span>
  <span style="font-size: small;"><em><strong>echo</strong></em> -n "<em>$FIBO</em> " </span>
<span style="font-size: small;"><strong>done</strong> </span>
<span style="font-size: small;"># expected output:</span>
<span style="font-size: small;">#  0 1 1 2 3 5 8 13 21 34 55 89 144 </span><span style="font-size: small;">233 377 610 987 1597 2584 4181 6765</span>

<span style="font-size: small;"><em><strong>echo </strong></em></span> " "
<span style="font-size: small;"><em><strong>exit </strong></em><strong>0</strong></span></pre>
<p>If you copy the script into a file and run it, the first few numbers are found quite rapidly, but you could produce the last 10 places in the sequence on paper or (possibly) in your head without a calculator before the shell script could find them.</p>
<h3>Shell Variables</h3>
<p>Like every other programming language, shells support variables. Shell variables may be assigned values, manipulated, and used. Some variables are automatically assigned for use by the shell.  Some variables are environmental variables.  These variables can effect how programs run outside of the shell, and you might want to be careful naming your shell variables the same as any of these.  The following is a list of the environmental variables on Lab5-ubustudio.  Note: I am calling the <strong>env</strong> list from a different directory, and it is all in my command prompt.  Your machine might only show you only the last directory in the path.  You can customize this by changing the Environmental Variable that holds the prompt information.  That Variable is <strong>PS1</strong> at the top of the abbreviated list below.  You may notice that the Environmental Variables below are all centered around a specific user If somebody else were to log in to this machine, a lot of the Environmental Variables would be changed.   Another way to look at how your system is set up is to type <em><strong>set</strong></em> at the command line.  That will show you even more Environmental Variables.</p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">wolf@Lab5-ubustudio:~/Documents/Projects/basho$ env </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">PS1=&#8217;\[\e]0;\u@\h: \w\a\]${debian_chroot:+($debian_chroot)}\u@\h:\w\$ &#8216;</span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">ORBIT_SOCKETDIR=/tmp/orbit-wolf </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">TERM=xterm </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">SHELL=/bin/bash </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">USER=wolf </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">USERNAME=wolf </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">XDG_CONFIG_DIRS=/usr/share/ubuntustudio-menu/:/etc/xdg/ </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">DESKTOP_SESSION=gnome </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">PWD=/home/wolf/Documents/Projects/basho </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">GDM_KEYBOARD_LAYOUT=us </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">LANG=en_US.UTF-8 </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">GDM_LANG=en_US.UTF-8 </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">GDMSESSION=gnome </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">SHLVL=1 </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">HOME=/home/wolf </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">LOGNAME=wolf </span></p>
<p><span style="font-family: DejaVu Sans Mono,sans-serif;">COLORTERM=gnome-terminal </span></p>
<p>This is the end of episode 3.  Please stay tuned for another riveting episode soon.</p>
<p>== Wolf Halton is CEO of <a href="http://atlantacloudtech.com/" target="_blank">Atlanta Cloud Technology, Inc.</a> ,  a guest writer on <a href="http://www.infosecisland.com/" target="_blank">security topics here</a>, at  and owner of <a href="http://wolfhalton.info/" target="_blank">Wolfhalton.info</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;desc=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;bm_description=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Bash+Scripting+for+Ubuntu%3A+Episode+3+-+http://b2l.me/a5hr38&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;bmtitle=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;Title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;Title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;n=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;d=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;body=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;description=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;desc=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;link=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;type=Article&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;srcUrl=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;srcTitle=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;snippet=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;text=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc+-+http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Bash+Scripting+for+Ubuntu%3A+Episode+3&quot;+-+from+http://b2l.me/a5hr38" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;summary=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc&amp;source=Alonzo Fretwell" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Bash%20Scripting%20for%20Ubuntu%3A%20Episode%203%22&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;u_data[name]=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;n=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;h=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;T=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;b=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;du=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;cn=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;body=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Bash+Scripting+for+Ubuntu%3A+Episode+3+-+http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;selection=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;format=microclip&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/+&quot;Bash+Scripting+for+Ubuntu%3A+Episode+3&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/ %0D%0A%0D%0A %0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fbash-scripting-for-ubuntu-episode-3%2F&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;url=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fbash-scripting-for-ubuntu-episode-3%2F&amp;desc=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc&amp;pcat=Technology&amp;tags=blog" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;body=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;submitHeadline=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;submitSummary=%0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Bash+Scripting+for+Ubuntu%3A+Episode+3&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %0D%0AWelcome%20to%20Episode%203%0D%0AThis%20episode%20is%20mostly%20about%20variables%2C%20which%20are%20names%20for%20places%20in%20memory%20where%20you%20will%20store%20values.%20%20Values%20can%20be%20strings%20of%20characters%20or%20numbers.%20%20Bash%20doesn%27t%20require%20you%20to%20choose%20which%20type%20of%20value%20you%20are%20going%20to%20use%20to%20fill%20your%20variable.%0D%0AVariables%20in%20Bash%20Sc" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/&amp;lname=Bash+Scripting+for+Ubuntu%3A+Episode+3" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bash Scripting for Ubuntu: Episode 1</title>
		<link>http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/</link>
		<comments>http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/#comments</comments>
		<pubDate>Sun, 05 Sep 2010 22:12:43 +0000</pubDate>
		<dc:creator>Wolf Halton</dc:creator>
				<category><![CDATA[Bash]]></category>
		<category><![CDATA[Shell Script]]></category>
		<category><![CDATA[Ubuntu Desktop]]></category>

		<guid isPermaLink="false">http://alonzofretwell.com/?p=1042</guid>
		<description><![CDATA["...If you are in the habit of starting sessions as root, this is a marvelous time to break that dangerous habit. In Ubuntu or Debian Linux distributions, you rarely see the root symbol as they use the sudo command to act as pseudo-root for just as long as you need to...." <a href="http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><!-- 		@page { margin: 0.79in } 		P { margin-bottom: 0.08in } 		H3 { margin-bottom: 0.08in } --></p>
<h4><em><strong>This is the start of a serialized article </strong></em></h4>
<p><em>It was started to explain certain features of the bash shell scripting language.  I will be posting it across several weeks as time permits.  please feel free to ask questions and we can answer them.  When the entire article has been serialized, I will send it for free to people who have offered comments. </em></p>
<h3>(Another) simple bash script</h3>
<p>If you just type a series of commands into a file and make the file executable, the Linux bash shell will try to run the script as if it is a script written for a bash shell since that is the shell you are probably using if you are running Ubuntu, or many other Linuxes.  Scripts for the c-shell or the z-shell might well fail under those conditions, so, to make sure the correct shell is invoked, the first line of the shell-script file should always tell the system what shell is to be invoked. Below is illustrated a simple Bash script: it just outputs the message &#8220;hello Linux User!&#8221;:</p>
<pre><span style="font-size: small;">#!/bin/sh
# hello.sh this is the name of the file, and is just a reminder
# for you what you called it.
</span><span style="font-size: x-small;"><span style="font-size: small;"><em><strong>echo</strong></em></span><span style="font-size: small;"> "hello </span><span style="font-size: small;">Linux User</span><span style="font-size: small;">!</span>"
# This is a comment line, anything that follows a '#' sign
# is a comment.  Comments make a script more readable</span></pre>
<p>Use a text editor, such as <em><strong>vi</strong></em>, <em><strong>nano</strong></em> (for the terminal), <em><strong>gedit</strong></em> or <em><strong>kate</strong></em> (for the GUI), to create a file with the lines above in it.  Personally, I recommend nano and kate in that order.   Save the file, calling it <em>hello.sh</em>. Then make the <em>hello.sh</em> file executable by typing:</p>
<pre><span style="font-size: small;">$ <em><strong>sudo chmod</strong></em> <strong>755</strong> hello.sh</span></pre>
<p>This uses the &#8220;octal permissions&#8221; feature of <em><strong>chmod</strong></em>.  It makes the file executable for the owner (probably you, or root), the group and for everybody else.  You can then run the script by simply typing <em>./hello.sh</em> This tells Linux that the file is a script, it is in the directory from which you are calling it, and runs the Linux commands inside it (in this case, just the <em><strong>echo</strong></em> command).  [Note: if you are hosting multiple users, you will have to put the files somewhere anybody can get at them, such as /usr/local/bin, in which case you would want to make sure they are owned by root.   Then <span style="text-decoration: underline;">anybody</span> with a sign-in can run the file just by typing hello.sh ]</p>
<p>You can give your shell scripts almost any name you like.  There are times when there might be another script built in to your distribution with the same name.   Here is the content of the /bin directory of this Ubuntu 9.10 Linux box.  Please note that your machine will put in the [name]@[computername]:[directory][access-level] sequence for your prompt as mine put in [wolf]@[Lab5-ubustudio]:[~][$].  If your access-level is shown as [#] then you are acting as root, or the administrative user for that sequence.  If you are in the habit of starting sessions as root, this is a marvelous time to break that dangerous habit.  In Ubuntu or Debian Linux distributions, you rarely see the root symbol as they use the sudo command to act as pseudo-root for just as long as you need to.  Acting as root, when it isn&#8217;t required, should be avoided as a general rule.</p>
<table cellspacing="0" cellpadding="4" width="100%">
<colgroup>
<col width="55*"></col>
<col width="60*"></col>
<col width="45*"></col>
<col width="50*"></col>
<col width="45*"></col>
</colgroup>
<tbody>
<tr>
<td colspan="5" width="100%" valign="TOP"><span style="font-family: DejaVu Sans Mono,sans-serif;">wolf@Lab5-ubustudio:~$ 			ls /bin </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bash</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dbus-daemon</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">kill</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">netstat</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">tar </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bunzip2</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dbus-uuidgen</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">less</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">open</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">tempfile </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzcat</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dd</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">lessecho</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">openvt</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">touch </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzcmp</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">df</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">lessfile</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">pidof</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">TRUE</span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzdiff</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dir</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">lesskey</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">ping</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">ulockmgr_server </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzegrep</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dmesg</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">lesspipe</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">ping6</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">umount </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzexe</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dnsdomainname</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">ln</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">ps</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">uname </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzfgrep</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dumpkeys</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">loadkeys</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">pwd</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">uncompress </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzgrep</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">echo</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">login</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">rbash</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">unicode_start </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzip2</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">ed</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">ls</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">readlink</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">vdir </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzip2recover</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">egrep</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">lsmod</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">rm</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">which </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzless</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">FALSE</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">mkdir</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">rmdir</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zcat </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">bzmore</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">fgconsole</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">mknod</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">run-parts</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zcmp </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">cat</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">fgrep</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">mktemp</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">sed</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zdiff </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">chgrp</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">fuser</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">more</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">setfont</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zegrep </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">chmod</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">fusermount</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">mount</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">setupcon</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zfgrep </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">chown</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">grep</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">mountpoint</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">sh</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zforce </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">chvt</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">gunzip</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">mt</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">sh.distrib</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zgrep </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">cp</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">gzexe</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">mt-gnu</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">sleep</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zless </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">cpio</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">gzip</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">mv</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">stty</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">zmore </span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dash</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">hostname</span></td>
<td width="18%"></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">nc</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">su</span></td>
</tr>
<tr valign="TOP">
<td width="21%"><span style="font-family: DejaVu Sans Mono,sans-serif;">date</span></td>
<td width="24%"><span style="font-family: DejaVu Sans Mono,sans-serif;">ip</span></td>
<td colspan="2" width="37%"><span style="font-family: DejaVu Sans Mono,sans-serif;">nc.traditional</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">sync </span></td>
</tr>
<tr valign="TOP">
<td colspan="2" width="45%"><span style="font-family: DejaVu Sans Mono,sans-serif;">dbus-cleanup-sockets</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">kbd_mode</span></td>
<td width="20%"><span style="font-family: DejaVu Sans Mono,sans-serif;">netcat</span></td>
<td width="18%"><span style="font-family: DejaVu Sans Mono,sans-serif;">tailf </span></td>
</tr>
</tbody>
</table>
<p>If you just can&#8217;t avoid using one of these as a filename for your script, add the .sh and keep it in your home directory in a special file, or on your thumb-drive, and invoke your scripts from their own directory with the <em><strong>./</strong></em> sequence.  You can check whether your name exists by using the <em><strong>which</strong></em> command. <em><strong>Which</strong></em><em> </em>tells you where a specific command exists, if it does, and doesn&#8217;t tell you that it doesn&#8217;t exist, if it doesn&#8217;t. For instance to see if there are commands called <em><strong>open</strong></em> and <em><strong>sesame</strong></em>, type:</p>
<pre><span style="font-size: small;">wolf@Lab5-ubustudio:~$ <em><strong>which</strong></em> open </span>
<span style="font-size: small;">/bin/open </span>
<span style="font-size: small;">wolf@Lab5-ubustudio:~$ <em><strong>which</strong></em> sesame </span>
<span style="font-size: small;">wolf@Lab5-ubustudio:~$ </span></pre>
<p>Note the lack of response when you ask for something that doesn&#8217;t exist.</p>
<p>This is the end of episode 1.  Please stay tuned for another riveting episode soon.</p>
<p>== Wolf Halton is CEO of <a href="http://atlantacloudtech.com" target="_blank">Atlanta Cloud Technology, Inc.</a> ,  a guest writer on <a href="http://www.infosecisland.com/" target="_blank">security topics here</a>, at  and owner of <a href="http://wolfhalton.info" target="_blank">Wolfhalton.info</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;desc=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;bm_description=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Bash+Scripting+for+Ubuntu%3A+Episode+1+-+http://b2l.me/apmyd9&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;bmtitle=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;Title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;Title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;n=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;d=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;body=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;description=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;desc=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;link=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;type=Article&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;srcUrl=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;srcTitle=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;snippet=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;text=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22+-+http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Bash+Scripting+for+Ubuntu%3A+Episode+1&quot;+-+from+http://b2l.me/apmyd9" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;summary=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22&amp;source=Alonzo Fretwell" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Bash%20Scripting%20for%20Ubuntu%3A%20Episode%201%22&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;u_data[name]=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;n=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;h=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;T=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;u=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;b=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;du=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;cn=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;body=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Bash+Scripting+for+Ubuntu%3A+Episode+1+-+http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;selection=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;format=microclip&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/+&quot;Bash+Scripting+for+Ubuntu%3A+Episode+1&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/ %0D%0A%0D%0A %22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fbash-scripting-for-ubuntu-episode-1%2F&amp;t=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;url=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fbash-scripting-for-ubuntu-episode-1%2F&amp;desc=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22&amp;pcat=Technology&amp;tags=blog" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;body=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;title=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;submitHeadline=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;submitSummary=%22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Bash+Scripting+for+Ubuntu%3A+Episode+1&amp;body=Link: http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A %22...If%20you%20are%20in%20the%20habit%20of%20starting%20sessions%20as%20root%2C%20this%20is%20a%20marvelous%20time%20to%20break%20that%20dangerous%20habit.%20In%20Ubuntu%20or%20Debian%20Linux%20distributions%2C%20you%20rarely%20see%20the%20root%20symbol%20as%20they%20use%20the%20sudo%20command%20to%20act%20as%20pseudo-root%20for%20just%20as%20long%20as%20you%20need%20to....%22" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/&amp;lname=Bash+Scripting+for+Ubuntu%3A+Episode+1" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://alonzofretwell.com/blog/bash-scripting-for-ubuntu-episode-1/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Install Ubuntu 10.04</title>
		<link>http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/</link>
		<comments>http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/#comments</comments>
		<pubDate>Mon, 03 May 2010 03:00:51 +0000</pubDate>
		<dc:creator>Alonzo Fretwell</dc:creator>
				<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[Ubuntu Desktop]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://alonzofretwell.com/?p=323</guid>
		<description><![CDATA[Welcome to this how to on installing Ubuntu 10.04 LTS. ﻿I will use a IBM Lenovo Think Pad T60 (1951AH4) with an internal WiFi network adapter, 60GB HDD, 1GB RAM, and a Intel Core Duo 1.83MHz processor. Ubuntu GNU/Linux has &#8230; <a href="http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Welcome to this how to on installing <a href="http://ubuntu.com">Ubuntu 10.04 LTS</a>. ﻿I will use a IBM Lenovo Think Pad T60 (1951AH4) with an internal WiFi network adapter, 60GB HDD, 1GB RAM, and a Intel Core Duo 1.83MHz processor.</p>
<p>Ubuntu GNU/Linux has become one of my favorite Open Source operating systems. It is free, easy to install, secure and at the time of this writing has over 29,000 free software packages available which can be easily installed and removed using its GUI software package manager.</p>
<p>If you have some other type of laptop you are advised to check at <a href="http://linux-laptop.net">linux-laptop.net</a> for reports of successful installations of GNU/Linux on it. I would further advise that you should install the distribution of GNU/Linux on your laptop that has the best reports of successful install posted at linux-laptop.net. Another good resource for checking Ubuntu hardware comparability is <a href="http://www.ubuntuhcl.org/">UbuntuHCL.org</a>. Or the  <a href="https://wiki.ubuntu.com/LaptopTestingTeam">Ubuntu Laptop Testing Team</a>. If one can successfully install older versions of Ubuntu onto a particular laptop then they should see good results installing Ubuntu 10.04.</p>
<p><strong>Step 1:</strong> Download the Ubuntu 10.04 installation CD from the <a href="http://www.ubuntu.com/getubuntu/download">Ubuntu 10.04 download</a> page. Visit that page and click &#8220;Begin Download&#8221;. This will begin the download of a .iso file.</p>
<p>Once the download is complete check the size of the .iso file. If the size of the .iso file is not around 699MB in size it will not work and you will need to use a BitTorrent transfer client to download the file instead.</p>
<p>The latest version of .torrent seed files can be found <a href="http://releases.ubuntu.com/10.04/ubuntu-10.04-alternate-i386.iso.torrent">here</a>. Once the .iso.torrent seed file has downloaded add it to your BitTorrent transmission client and download the .iso with the BitTorrent client. If you don&#8217;t already have a BitTorrent client you can get one <a href="http://www.bittorrent.com/">here</a>. BitTorrent offers more reliable downloads of large files, is sometimes faster and I recommend its use.</p>
<p><strong>Step 2:</strong> Once you have obtained a good .iso file you must &#8220;burn&#8221; the .iso image onto a CD. Simply copying the file to a CD is not sufficient. Instructions on how to burn the .iso image can be found&#8230;</p>
<ul>
<li><a href="https://help.ubuntu.com/community/BurningIsoHowto#Windows">Here</a> if you are using Windows XP/Vista.</li>
<li><a href="https://help.ubuntu.com/community/BurningIsoHowto#Mac OS X">Here</a> if you are using Mac OS.</li>
</ul>
<p><strong>Step 3:</strong> Connect the network port on the computer to your router. Insert the CD created from <strong>Step 2</strong> into the CD drive of the computer you wish to install Ubuntu 10.04 onto then restart the machine.</p>
<p>When the machine boots to the install CD one will be presented with a language chooser that allows them to select the language of choice for the install. Choose &#8220;English&#8221; and press &#8220;Enter&#8221; on the keyboard. Next the Ubuntu installer will present five options for one to choose from. One may select any option they desire here, however, we will choose the first option &#8220;Install Ubuntu&#8221; and press &#8220;Enter&#8221;.</p>
<p>Next one will be presented with another language chooser we will again choose &#8220;English&#8221; and press the &#8220;Enter&#8221; key. Next one will be asked to select their location. Select your location and press &#8220;Enter&#8221;. Next you will be asked if you want to check your key-board layout. Accept the recommendation (ours was &#8220;No&#8221;) and press &#8220;Enter&#8221;. Next you will be asked the origin of your keyboard. Here we select &#8220;United States&#8221; and press &#8220;Enter&#8221;. Next you are asked to identify the keyboard layout. We will select &#8220;USA&#8221; and press &#8220;Enter&#8221;.</p>
<p>After some software loads from the CD you will be asked to select the primary network interface. Select eth0 and press &#8220;Enter&#8221;. When the network is successfully configured you will be asked to provide a &#8220;Hostname&#8221;. Choose a hostname for the computer or simply accept the default &#8220;ubuntu&#8221; and press &#8220;Enter&#8221;. Next a time zone chooser will appear. Select your time zone and press &#8220;Enter&#8221;.</p>
<p>Next you will be presented with partition options for the install. We will choose &#8220;Guided &#8211; use entire disk&#8221;, however, one can choose any they wish. Next you will be asked to choose the disk to partition we will choose &#8220;SCSIx &#8230;&#8221; and press &#8220;Enter&#8221;. You will be asked if the new partition scheme is okay. Select &#8220;Yes&#8221; and press &#8220;Enter&#8221;. Now the base system will be installed.</p>
<p>Next one will be asked to enter their full name. Enter your name and press &#8220;Enter&#8221;. Next you will be asked for a user name that will be your login name. You may accept the recommendation or choose your own but it must be all lower-case. Next you will be asked to choose a password and then reenter the password to confirm it. Do that and press &#8220;Enter&#8221;. Next you will be asked if you want to have your home directory encrypted. Accept the recommendation and press &#8220;Enter&#8221;.</p>
<p>Next one will be asked if a network proxy is required. We will leave this blank because I do not use a proxy at my location and press &#8220;Enter&#8221;.</p>
<p>Next the installer will continue and install the required software. This can take some time.</p>
<p>When the software has been installed one will be asked if this is the only operating system on the computer and if they want to install the GRUB boot loader to the master boot record. If you followed these instructions then it is and you should accept the recommendation of &#8220;Yes&#8221; and press &#8220;Enter&#8221;. Next one will be asked if the system clock is set to UTC. Select &#8220;Yes&#8221; and press &#8220;Enter&#8221;. After this the installation is complete. One will be asked to remove the CD from the tray and reboot the machine. Do this when asked to. Select &#8220;Continue&#8221; and press &#8220;Enter&#8221;.</p>
<p>When the machine reboots to the new Ubuntu installation login to your new account.</p>
<p>After one has joined a WiFi network one can now disconnect the network cable from the computer and the router.</p>
<p>At this point one should follow the instructions <a href="http://ubuntuforums.org/showthread.php?t=766683">here</a> to activate all of the multi-media functions.</p>
<p>Now all the Ubuntu 10.04 software is installed and ready for use and the multi-media functions are enabled.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;desc=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;bm_description=How+To+Install+Ubuntu+10.04&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+To+Install+Ubuntu+10.04+-+http://b2l.me/skanq&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;bmtitle=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;Title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;Title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;n=How+To+Install+Ubuntu+10.04&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;t=How+To+Install+Ubuntu+10.04&amp;d=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;body=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;description=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;desc=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;t=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+To+Install+Ubuntu+10.04&amp;link=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;type=Article&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+To+Install+Ubuntu+10.04&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;srcUrl=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;srcTitle=How+To+Install+Ubuntu+10.04&amp;snippet=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;t=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+To+Install+Ubuntu+10.04&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+To+Install+Ubuntu+10.04&amp;text=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas+-+http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+To+Install+Ubuntu+10.04&quot;+-+from+http://b2l.me/skanq" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;summary=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas&amp;source=Alonzo Fretwell" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20To%20Install%20Ubuntu%2010.04%22&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;u_data[name]=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;n=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;t=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+To+Install+Ubuntu+10.04&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;h=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;T=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+To+Install+Ubuntu+10.04&amp;u=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;b=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+To+Install+Ubuntu+10.04&amp;du=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;cn=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;body=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+To+Install+Ubuntu+10.04+-+http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;selection=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;format=microclip&amp;title=How+To+Install+Ubuntu+10.04&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+To+Install+Ubuntu+10.04&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/+&quot;How+To+Install+Ubuntu+10.04&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/ %0D%0A%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fhow-to-install-ubuntu-gnulinux-10-4%2F&amp;t=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+To+Install+Ubuntu+10.04&amp;url=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fhow-to-install-ubuntu-gnulinux-10-4%2F&amp;desc=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04&amp;body=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;title=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;submitHeadline=How+To+Install+Ubuntu+10.04&amp;submitSummary=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+To+Install+Ubuntu+10.04&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%2010.04%20LTS.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20GNU%2FLinux%20has%20become%20one%20of%20my%20favorite%20Open%20Source%20operating%20systems.%20It%20is%20free%2C%20eas" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/&amp;lname=How+To+Install+Ubuntu+10.04" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://alonzofretwell.com/blog/how-to-install-ubuntu-gnulinux-10-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu 10.04 LTS Released</title>
		<link>http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/</link>
		<comments>http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/#comments</comments>
		<pubDate>Fri, 30 Apr 2010 23:51:34 +0000</pubDate>
		<dc:creator>Alonzo Fretwell</dc:creator>
				<category><![CDATA[Ubuntu Desktop]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://alonzofretwell.com/?p=309</guid>
		<description><![CDATA[Ubuntu 10.04 LTS (Long Term Support) was released April 29, 2010 on schedule. This author has upgraded http://alonzofretwell.com:1235 to the new version. The process took about 3 hours to complete. The machine was off-line for the last 90 minutes during &#8230; <a href="http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ubuntu 10.04 LTS (Long Term Support) was released April 29, 2010 on schedule. This author has upgraded <a href="http://alonzofretwell.com:1235">http://alonzofretwell.com:1235</a> to the new version. The process took about 3 hours to complete. The machine was off-line for the last 90 minutes during the upgrade.</p>
<p>Over all I am pleased and impressed with this new version of Ubuntu. If you followed my previous articles on how to install Ubuntu version 9.10 you can upgrade to 10.04 by simply clicking the &#8220;Upgrade&#8221; button in System&gt;Administration&gt;Update Manager.</p>
<p>Once you have completed the upgrade to Ubuntu 10.04 you will have to upgrade the flash player by visiting youtube and trying to watch a video. When you do this you will be told you have to upgrade your flash player. Just follow the link and the subsequent instructions to do get that stuff working.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;desc=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;bm_description=Ubuntu+10.04+LTS+Released&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Ubuntu+10.04+LTS+Released+-+http://b2l.me/r66zk&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;bmtitle=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;Title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;Title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;n=Ubuntu+10.04+LTS+Released&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;t=Ubuntu+10.04+LTS+Released&amp;d=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;body=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;description=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;desc=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;t=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Ubuntu+10.04+LTS+Released&amp;link=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;type=Article&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Ubuntu+10.04+LTS+Released&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;srcUrl=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;srcTitle=Ubuntu+10.04+LTS+Released&amp;snippet=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;t=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Ubuntu+10.04+LTS+Released&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Ubuntu+10.04+LTS+Released&amp;text=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr+-+http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Ubuntu+10.04+LTS+Released&quot;+-+from+http://b2l.me/r66zk" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;summary=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr&amp;source=Alonzo Fretwell" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Ubuntu%2010.04%20LTS%20Released%22&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;u_data[name]=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;n=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;t=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Ubuntu+10.04+LTS+Released&amp;url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;h=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;T=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Ubuntu+10.04+LTS+Released&amp;u=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;b=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Ubuntu+10.04+LTS+Released&amp;du=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;cn=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;body=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Ubuntu+10.04+LTS+Released+-+http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;selection=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr&amp;url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;format=microclip&amp;title=Ubuntu+10.04+LTS+Released&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Ubuntu+10.04+LTS+Released&amp;url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/+&quot;Ubuntu+10.04+LTS+Released&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/ %0D%0A%0D%0A Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fubuntu-10-04-lts-released%2F&amp;t=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Ubuntu+10.04+LTS+Released&amp;url=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fubuntu-10-04-lts-released%2F&amp;desc=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released&amp;body=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;title=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;submitHeadline=Ubuntu+10.04+LTS+Released&amp;submitSummary=Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Ubuntu+10.04+LTS+Released&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Ubuntu%2010.04%20LTS%20%28Long%20Term%20Support%29%20was%20released%20April%2029%2C%202010%20on%20schedule.%20This%20author%20has%20upgraded%20http%3A%2F%2Falonzofretwell.com%3A1235%20to%20the%20new%20version.%20The%20process%20took%20about%203%20hours%20to%20complete.%20The%20machine%20was%20off-line%20for%20the%20last%2090%20minutes%20during%20the%20upgrade.%0D%0A%0D%0AOver%20all%20I%20am%20pleased%20and%20impr" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/&amp;lname=Ubuntu+10.04+LTS+Released" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://alonzofretwell.com/blog/ubuntu-10-04-lts-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu Studio 9.10 Install on Think Pad T60 Laptop</title>
		<link>http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/</link>
		<comments>http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/#comments</comments>
		<pubDate>Sun, 25 Apr 2010 23:59:32 +0000</pubDate>
		<dc:creator>Alonzo Fretwell</dc:creator>
				<category><![CDATA[BitTorrent]]></category>
		<category><![CDATA[Real-time OS]]></category>
		<category><![CDATA[Ubuntu Studio]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[GNU/Linux]]></category>

		<guid isPermaLink="false">http://alonzofretwell.com/?p=286</guid>
		<description><![CDATA[Welcome to this how to on installing Ubuntu Studio. ﻿I will use a IBM Lenovo Think Pad T60 (1951AH4) with an internal WiFi network adapter, 60GB HDD, 1GB RAM, and a Intel Core Duo 1.83MHz processor. Ubuntu Studio is the &#8230; <a href="http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Welcome to this how to on installing <a href="http://ubuntustudio.org">Ubuntu Studio</a>. ﻿I will use a IBM Lenovo Think Pad T60 (1951AH4) with an internal WiFi network adapter, 60GB HDD, 1GB RAM, and a Intel Core Duo 1.83MHz processor.</p>
<p>Ubuntu Studio is the Ubuntu multi-media producer version of Linux. I have found that it works well for audio production. The directions here will install a Digital Audio Workstation (DAW) an assortment of software synthesizers and drum machines all of which are open source free software.</p>
<p>If you have some other brand of laptop you are advised to check at <a href="http://linux-laptop.net">linux-laptop.net</a> for reports of successful installations of Linux on it. I would further advise that you should install the distribution of Linux on your laptop that has the best reports of successful install posted at linux-laptop.net. However Ubuntu has an easy, intuitive dual boot option built into its installer. Another good resource for checking Ubuntu hardware comparability is <a href="http://www.ubuntuhcl.org/">UbuntuHCL.org</a>. Or the  <a href="https://wiki.ubuntu.com/LaptopTestingTeam">Ubuntu Laptop Testing Team</a>. If one can successfully install regular Ubuntu onto a particular laptop then they should see good results installing Ubuntu Studio.</p>
<p><strong>Step 1:</strong> Download the Ubuntu Studio installation DVD from the <a href="http://ubuntustudio.org/downloads">Ubuntu Studio download</a> page. Visit that page, select the appropriate version for your computer and click the &#8220;Download&#8221; link. This will begin the download of a .iso file.</p>
<p>Once the download is complete check the size of the .iso file. If the size of the .iso file is not around 1.4GB in size it will not work and you will need to use a BitTorrent transfer client to download the file instead.</p>
<p>The latest version of .torrent seed files can be found <a href="http://cdimage.ubuntu.com/ubuntustudio/releases/9.10/release/">here</a>. Once the .iso.torrent seed file has downloaded add it to your BitTorrent transmition client and download the .iso with the BitTorrent client. If you don&#8217;t already have a BitTorrent client you can get one <a href="http://www.bittorrent.com/">here</a>. BitTorrent offers more reliable downloads of large files and is sometimes faster.</p>
<p><strong>Step 2:</strong> Once you have obtained a good .iso file you must &#8220;burn&#8221; the .iso image onto a DVD. Simply copying the file to a DVD is not sufficient. Instructions on how to burn the .iso image can be found&#8230;</p>
<ul>
<li><a href="https://help.ubuntu.com/community/BurningIsoHowto#Windows">Here</a> if you are using Windows XP/Vista.</li>
<li><a href="https://help.ubuntu.com/community/BurningIsoHowto#Mac OS X">Here</a> if you are using Mac OS.</li>
</ul>
<p>Be sure that the machine you use to burn the DVD has DVD-RW capability. The IBM T60 does not.</p>
<p><strong>Step 3:</strong> Connect the network port on the computer to your router. Ubuntu Studio 9.10 does not have the wireless stuff included by default. We will install that later. Insert the DVD created from <strong>Step 2</strong> into the CD/DVD drive of the laptop you wish to install Ubuntu Studio onto then restart the machine.</p>
<p>When the machine boots to the install DVD one will be presented with a language chooser that allows them to select the language of choice for the install. Choose the language of your choice and press &#8220;Enter&#8221; on the keyboard. Next the Ubuntu Studio installer will present five options for one to choose from. One may select any option they desire here, however, we will choose the first option &#8220;Install Ubuntu Studio&#8221; and press &#8220;Enter&#8221;.</p>
<p>Next one will be presented with another language chooser we will choose &#8220;English&#8221; and press the &#8220;Enter&#8221; key. Next one will be asked to select their location. Select your location and press &#8220;Enter&#8221;. Next you will be asked if you want to check your key-board layout. Accept the recommendation (ours was &#8220;No&#8221;) and press &#8220;Enter&#8221;. Next you will be asked the origin of your keyboard. Here we select &#8220;United States&#8221; and press &#8220;Enter&#8221;. Next you are asked to identify the keyboard layout. We will select &#8220;USA&#8221; and press &#8220;Enter&#8221;.</p>
<p>After some software loads from the DVD you will be asked to select the primary network interface. Select eth0 and press &#8220;Enter&#8221;. When the network is successfully configured you will be asked to provide a &#8220;Hostname&#8221;. Choose a hostname for the computer or simply accept the default &#8220;ubuntu&#8221; and press &#8220;Enter&#8221;. Next a time zone chooser will appear. Select your time zone and press &#8220;Enter&#8221;.</p>
<p>Next you will be presented with partition options for the install. We will choose &#8220;Guided &#8211; use entire disk&#8221;, however, one can choose any they wish. Next you will be asked to choose the disk to partition we will choose &#8220;SCSI1 &#8230;&#8221; and press &#8220;Enter&#8221;. You will be asked if the new partition scheme is okay. Select &#8220;Yes&#8221; and press &#8220;Enter&#8221;. Now the base system will be installed.</p>
<p>Next one will be asked to enter their full name. Enter your name and press &#8220;Enter&#8221;. Next you will be asked for a user name that will be your login name. You may accept the recommendation or choose your own but it must be all lower-case. Next you will be asked to choose a password and then reenter the password to confirm it. Do that and press &#8220;Enter&#8221;. Next you will be asked if you want to have your home directory encrypted. Accept the recommendation and press &#8220;Enter&#8221;.</p>
<p>Next one will be asked if a network proxy is required. We will leave this blank because I do not use a proxy at my location and press &#8220;Enter&#8221;. Next one will be asked to select the software they want to install. We will use the space-bar to select all packages and press &#8220;Enter&#8221;.</p>
<p>Next the installer will continue and install the software required based on your selections in the last step. This can take some time.</p>
<p>When the software has been installed one will be asked if the clock is set to UTC. Accept the recommendation and press &#8220;Enter&#8221; after this the installation is complete. One will be asked to remove the DVD from the tray and reboot the machine. Do this now.</p>
<p>When the machine reboots to the new Ubuntu Studio install login to your new account. Click on the Ubuntu Studio icon in the upper left corner of the screen then select System&gt;Administration&gt;Synaptic Packgage Manager. Enter your password and press &#8220;Enter&#8221;. Click on &#8220;Search&#8221; and then type &#8220;network-manager&#8221; into the search input box and press &#8220;Enter&#8221;. Click on the check-box to the left of &#8220;network-manager&#8221; in the right-hand column and then select &#8220;mark for installation&#8221;. Click &#8220;Mark&#8221; for the additional required changes. Click the &#8220;Apply&#8221; under the green check mark on the application control panel then click &#8220;Apply&#8221; in the subsequent &#8220;Summary&#8221; dialog. When prompted restart the machine do so.</p>
<p>When one logs into their account now the Network Manager icon will appear in the applet panel on the top right of the screen. One can configure the WiFi network adapters after clicking on this icon.</p>
<p>After one has joined a WiFi network the network cable between the computer and the router can be removed.</p>
<p>At this point one should follow the instructions <a href="http://ubuntuforums.org/showthread.php?t=766683">here</a> to activate all of the multi-media functions.</p>
<p>Now all the Ubuntu Studio 9.10 software is installed and ready for use and the multi-media functions are enabled. Of course if one wants to use peripheral devices they will have to configure the relevant applications for them. One can find instructions on how to do this by searching on the web.</p>
<p>This author has been using a ZOOM G2.1u configured with the instructions <a href="http://www.detector-pro.com/2008/11/how-to-connect-usb-guitar-pedal-or-any.html">here</a> as the guitar interface.</p>
<p>Perhaps the most advanced open source guitar effects application is Rakarrack which can be downloaded <a href="http://sourceforge.net/projects/rakarrack/files/">here</a> then compiled and installed by following the instructions <a href="http://ubuntuforums.org/showthread.php?t=935386">here</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;desc=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;bm_description=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop+-+http://b2l.me/ra9jg&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;bmtitle=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;Title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;Title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;n=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;t=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;d=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;body=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;description=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;desc=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;t=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;link=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;type=Article&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;srcUrl=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;srcTitle=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;snippet=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;t=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;text=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we+-+http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&quot;+-+from+http://b2l.me/ra9jg" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;summary=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we&amp;source=Alonzo Fretwell" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22Ubuntu%20Studio%209.10%20Install%20on%20Think%20Pad%20T60%20Laptop%22&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;u_data[name]=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;n=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;t=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;h=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;T=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;u=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;b=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;du=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;cn=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;body=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop+-+http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;selection=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we&amp;url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;format=microclip&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/+&quot;Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/ %0D%0A%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fubuntu-studio-9-10-install-on-think-pad-t60-laptop%2F&amp;t=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;url=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fubuntu-studio-9-10-install-on-think-pad-t60-laptop%2F&amp;desc=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;body=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;title=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;submitHeadline=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;submitSummary=Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop&amp;body=Link: http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Welcome%20to%20this%20how%20to%20on%20installing%20Ubuntu%20Studio.%20%EF%BB%BFI%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%0D%0A%0D%0AUbuntu%20Studio%20is%20the%20Ubuntu%20multi-media%20producer%20version%20of%20Linux.%20I%20have%20found%20that%20it%20works%20we" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/&amp;lname=Ubuntu+Studio+9.10+Install+on+Think+Pad+T60+Laptop" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://alonzofretwell.com/blog/ubuntu-studio-9-10-install-on-think-pad-t60-laptop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install Ubuntu 9.10 Dual Boot on IBM T60</title>
		<link>http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/</link>
		<comments>http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 00:00:29 +0000</pubDate>
		<dc:creator>Alonzo Fretwell</dc:creator>
				<category><![CDATA[Ubuntu Desktop]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://alonzofretwell.com/?p=119</guid>
		<description><![CDATA[Hello and welcome to this &#8220;How To&#8221; on installing Ubuntu 9.10 Desktop Edition on a laptop with a dual boot configuration. I will use a IBM Lenovo Think Pad T60 (1951AH4) with an internal WiFi network adapter, 60GB HDD, 1GB &#8230; <a href="http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello and welcome to this &#8220;How To&#8221; on installing Ubuntu 9.10 Desktop Edition on a laptop with a dual boot configuration. I will use a IBM Lenovo Think Pad T60 (1951AH4) with an internal WiFi network adapter, 60GB HDD, 1GB RAM, and a Intel Core Duo 1.83MHz processor. The assumption is that you have at least 30GB of free disk space on your laptop but you can get away with less. I would recomend no less than 5GB of free disk space on a machine you wish to setup for dual boot.</p>
<p>Ubuntu has become one of my favorite Open Source operating systems. It is free, easy to install, secure and at the time of this writing has over 29,000 free software packages available which can be easily installed and removed using its GUI software package manager. Ubuntu can install and configure itself for dual-boot during the install process or one can choose to dedicate the entire capacity of the hard-disk to the Ubuntu system. We will accept the recommended dual boot configuration during the install process.</p>
<p>I invite everyone to consider Ubuntu installed on a used laptop as a fall-back from their PC or Mac regardless of type you prefer. You will be glad you did.</p>
<p><strong>About The IBM Lenovo T60 Think Pad (T60):</strong> I have a number of T60 laptops and they have proved to be a robust vehicle for the Ubuntu Linux operating system. At the time of this writing the T60 can be purchased used, in good condition for around $200 on ebay. Be sure to get one with an internal WiFi card already installed. In my opinion this hardware and operating system scenario is one of the best ways for someone to get started with the Linux operating system.</p>
<p>If you have some other brand of laptop you are advised to check at <a href="http://linux-laptop.net">linux-laptop.net</a> for reports of successful installations of Linux on it. I would further advise that you should install the distribution of Linux on your laptop that has the best reports of successful install posted at linux-laptop.net. However Ubuntu has an easy, intuitive dual boot option built into its installer. Another good resource for checking Ubuntu hardware comparability is <a href="http://www.ubuntuhcl.org/">UbuntuHCL.org</a>. Or the  <a href="https://wiki.ubuntu.com/LaptopTestingTeam">Ubuntu Laptop Testing Team</a>.</p>
<p>I have found that older laptops that originally ran Window XP are excellent candidates for use with Ubuntu as are newer Apple &#8220;MacBooks&#8221;.</p>
<p>With the preliminaries out of the way lets begin.</p>
<p><strong>Step 1:</strong> Download the Ubuntu installation CD from the <a href="http://releases.ubuntu.com/9.04/">Ubuntu download</a> page. Visit that page, select the .iso for your architecture (we will use x86). This will begin the download of a .iso file.</p>
<p>Once the download is complete check the size of the .iso file. If the size of the .iso file is not around 690MB in size it will not work and you will need to use a BitTorrent transfer client to download the file instead. The torrent seed file for Ubuntu 9.10 Desktop Edition can be found <a href="http://releases.ubuntu.com/9.10/ubuntu-9.10-desktop-i386.iso.torrent">here</a>. Once the .iso.torrent seed file has downloaded add it to your BitTorrent transmition client and download the .iso with the BitTorrent client. If you don&#8217;t already have a BitTorrent client you can get one <a href="http://www.bittorrent.com/">here</a>. BitTorrent offers more reliable downloads of large files and is sometimes faster.</p>
<p><strong>Step 2:</strong> Once you have obtained a good .iso file you must &#8220;burn&#8221; the .iso image onto a CD. Simply copying the file to a CD is not sufficient. Instructions on how to burn the .iso image to CD can be found&#8230;</p>
<ul>
<li><a href="https://help.ubuntu.com/community/BurningIsoHowto#Windows">Here</a> if you are using Windows XP/Vista.</li>
<li><a href="https://help.ubuntu.com/community/BurningIsoHowto#Mac OS X">Here</a> if you are using Mac OS.</li>
</ul>
<p><strong>Step 3:</strong> Insert the CD created from <strong>Step 2</strong> into the CDROM of the laptop you wish to install Ubuntu onto then restart the machine.</p>
<p>When the machine boots to the install CD one will be presented with a language chooser that allows them to select the language of choice for the install. One has 30 seconds to choose a install language other than English (the default) or the system will boot into an Ubuntu &#8220;Live&#8221; mode where you can try Ubuntu on your laptop without any changes to your hard disk. If you let this happen and you are ready to install Ubuntu onto your computer click the &#8220;Install Ubuntu&#8221; icon on the desktop of the &#8220;Live&#8221; session and you will begin the installation. If you don&#8217;t want to wait 30 seconds choose &#8220;English&#8221; and press &#8220;Enter&#8221; on the keyboard.</p>
<p>Next the Ubuntu installer will present five options for one to choose from. One may select any option they they desire here, however, we will choose the second option &#8220;Install Ubuntu&#8221;. This will start the installation process. After some files are loaded from the install CD you will be presented with a &#8220;Welcome&#8221; screen where you have a second chance to select the install language and if you have internet access review the &#8220;Release Notes&#8221;. Click on the &#8220;Forward&#8221; button. Next you will be asked to select your location with a location chooser screen. Select your location and click the &#8220;Forward&#8221; button. Next you will be asked about your keyboard layout. Just accept the suggested choice and click the &#8220;Forward&#8221; button.</p>
<p>Next you will be asked to specify the new disk partition arrangement. Default is dual boot and the partitioner will suggest that you install Ubuntu side-by-side with the computers current OS. Accept the recommended configuration and click the &#8220;Forward&#8221; button. A warning dialog will pop-up and ask if you are sure you want to accept the new partition scheme because it cannot be undone. Click the &#8220;Continue&#8221; button. The next step can take some time because of the ﻿﻿coalescence required on the disk before a second OS can be installed on it.</p>
<p>After space is made for the new partition that will contain Ubuntu you will be asked &#8220;Who are you?&#8221;. Enter you name, your login name, password and name you would like the machine to display on the network. Accept the recommended &#8220;Require password for login&#8221; and click the &#8220;Forward&#8221; button. You may be asked if you want to &#8220;Migrate documents and settings&#8221; check the ones that you want and click the &#8220;Forward&#8221; button.</p>
<p>The &#8220;Ready to install&#8221; screen will be displayed giving you a chance to review the settings you have selected. Just click the &#8220;Install&#8221; button. Your disk will be partitioned and the new system installed onto the hard disk. This phase may take some time but it is the home stretch of the install.</p>
<p>When the installation is complete a dialog will pop up and ask you to restart the computer.  Click &#8220;Restart Now&#8221;, you will be asked to remove the CD and press &#8220;Enter&#8221; so do it. When the computer reboots select the OS you want to use for the pending session and press &#8220;Enter&#8221;. You will boot to that system.</p>
<p>If you have difficulty you can post questions in the <a href="http://ubuntuforums.org">Ubuntu Forums</a>. If you have comments or questions for me you can leave them as comments below until the time for their submission has expired (a few weeks from the time the article is published).</p>
<p>New Weblog articles are posted on <a href="http://alonzofretwell.com">alonzofretwell.com</a> every Monday morning. <img src='http://alonzofretwell.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ubuntu <a href="http://ubuntuforums.org/showthread.php?t=766683">Comprehensive Multimedia &amp; Video Howto</a>.</p>


<div class="shr-bookmarks shr-bookmarks-expand">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-diigo">
			<a href="http://www.diigo.com/post?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;desc=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;bm_description=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60+-+http://b2l.me/qfpay&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;bmtitle=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="shr-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;Title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="shr-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="shr-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;Title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="shr-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="shr-blogger">
			<a href="http://www.blogger.com/blog_this.pyra?t&amp;u=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;n=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;pli=1" rel="nofollow" class="external" title="Blog this on Blogger">Blog this on Blogger</a>
		</li>
		<li class="shr-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="shr-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="shr-bonzobox">
			<a href="http://bonzobox.com/toolbar/add?pop=1&amp;u=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;t=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;d=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Add this to BonzoBox">Add this to BonzoBox</a>
		</li>
		<li class="shr-boxnet">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-buzzster">
			<a href="" rel="nofollow" title=""></a>
		</li>
		<li class="shr-current">
			<a href="http://current.com/clipper.htm?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Post this to Current">Post this to Current</a>
		</li>
		<li class="shr-designbump">
			<a href="http://designbump.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;body=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="shr-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="shr-dzone">
			<a href="http://www.dzone.com/links/add.html?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;description=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Add this to DZone">Add this to DZone</a>
		</li>
		<li class="shr-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;desc=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="shr-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;t=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="shr-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="shr-fleck">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;link=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="shr-fwisp">
			<a href="http://fwisp.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="shr-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;type=Article&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Email this via Gmail">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlereader">
			<a href="http://www.google.com/reader/link?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;srcUrl=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;srcTitle=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;snippet=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Add this to Google Reader">Add this to Google Reader</a>
		</li>
		<li class="shr-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;t=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="shr-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="shr-hotmail">
			<a href="http://mail.live.com/?rru=compose?subject=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Email this via Hotmail">Email this via Hotmail</a>
		</li>
		<li class="shr-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;text=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a+-+http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="shr-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&quot;+-+from+http://b2l.me/qfpay" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="shr-izeby">
			<a href="http://izeby.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="shr-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="shr-kaevur">
			<a href="http://kaevur.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Share this on Kaevur">Share this on Kaevur</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;summary=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a&amp;source=Alonzo Fretwell" rel="nofollow" class="external" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="shr-mail">
			<a href="mailto:?subject=%22How%20to%20Install%20Ubuntu%209.10%20Dual%20Boot%20on%20IBM%20T60%22&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="shr-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;u_data[name]=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="shr-meneame">
			<a href="http://meneame.net/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="shr-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="shr-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;n=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;t=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="shr-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="shr-netvibes">
			<a href="http://www.netvibes.com/share?title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="shr-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="shr-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;h=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="shr-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;T=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="shr-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;u=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;b=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="shr-oknotizie">
			<a href="http://oknotizie.virgilio.it/post?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on OkNotizie">Share this on OkNotizie</a>
		</li>
		<li class="shr-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;du=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;cn=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
		<li class="shr-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="shr-pingfm">
			<a href="http://ping.fm/ref/?link=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;body=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Share this on Plaxo">Share this on Plaxo</a>
		</li>
		<li class="shr-plurk">
			<a href="http://www.plurk.com/m?content=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60+-+http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;qualifier=shares" rel="nofollow" class="external" title="Share this on Plurk">Share this on Plurk</a>
		</li>
		<li class="shr-posterous">
			<a href="http://posterous.com/share?linkto=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;selection=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="shr-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="shr-propeller">
			<a href="http://www.propeller.com/submit/?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="shr-pusha">
			<a href="http://www.pusha.se/posta?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="shr-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="shr-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="shr-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="shr-springpad">
			<a href="http://springpadit.com/clip.action?body=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;format=microclip&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;isSelected=true" rel="nofollow" class="external" title="Spring this on SpringPad">Spring this on SpringPad</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-strands">
			<a href="http://www.strands.com/tools/share/webpage?title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Submit this to Strands">Submit this to Strands</a>
		</li>
		<li class="shr-stumpedia">
			<a href="http://www.stumpedia.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Add this to Stumpedia">Add this to Stumpedia</a>
		</li>
		<li class="shr-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/+&quot;How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&quot;&amp;source=shareaholic" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="shr-tipd">
			<a href="http://tipd.com/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="shr-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New+tip+submitted+via+the+SexyBookmarks+Plugin%21&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/ %0D%0A%0D%0A Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fhow-to-install-ubuntu-9-10-dual-boot-on-a-laptop%2F&amp;t=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on Tumblr">Share this on Tumblr</a>
		</li>
		<li class="shr-twittley">
			<a href="http://twittley.com/submit/?title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;url=http%3A%2F%2Falonzofretwell.com%2Fblog%2Fhow-to-install-ubuntu-9-10-dual-boot-on-a-laptop%2F&amp;desc=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="shr-viadeo">
			<a href="http://www.viadeo.com/shareit/share/?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;urlaffiliate=31138" rel="nofollow" class="external" title="Share this on Viadeo">Share this on Viadeo</a>
		</li>
		<li class="shr-virb">
			<a href="http://virb.com/share?external&amp;v=2&amp;url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Share this on Virb">Share this on Virb</a>
		</li>
		<li class="shr-webblend">
			<a href="http://thewebblend.com/submit?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;body=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="shr-wikio">
			<a href="" rel="nofollow" class="external" title=""></a>
		</li>
		<li class="shr-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="shr-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;title=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;submitHeadline=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;submitSummary=Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60&amp;body=Link: http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hello%20and%20welcome%20to%20this%20%22How%20To%22%20on%20installing%20Ubuntu%209.10%20Desktop%20Edition%20on%20a%20laptop%20with%20a%20dual%20boot%20configuration.%20I%20will%20use%20a%20IBM%20Lenovo%20Think%20Pad%20T60%20%281951AH4%29%20with%20an%20internal%20WiFi%20network%20adapter%2C%2060GB%20HDD%2C%201GB%20RAM%2C%20and%20a%20Intel%20Core%20Duo%201.83MHz%20processor.%20The%20assumption%20is%20that%20you%20have%20a" rel="nofollow" class="external" title="Email this via Yahoo! Mail">Email this via Yahoo! Mail</a>
		</li>
		<li class="shr-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/&amp;lname=How+to+Install+Ubuntu+9.10+Dual+Boot+on+IBM+T60" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="shr-zabox">
			<a href="http://www.zabox.net/submit.php?url=http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/" rel="nofollow" class="external" title="Box this on Zabox">Box this on Zabox</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

]]></content:encoded>
			<wfw:commentRss>http://alonzofretwell.com/blog/how-to-install-ubuntu-9-10-dual-boot-on-a-laptop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

