<?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>Third Error &#187; Ubuntu</title>
	<atom:link href="http://www.thirderror.com/category/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thirderror.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 27 Jul 2009 04:08:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Sync Host and Guest Folders in VirtualBox</title>
		<link>http://www.thirderror.com/sync-host-and-guest-folders-in-virtualbox/</link>
		<comments>http://www.thirderror.com/sync-host-and-guest-folders-in-virtualbox/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 06:33:41 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Frontpage]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=433</guid>
		<description><![CDATA[
As a follow up to our seamless Ubuntu in Windows tutorials, we&#8217;re going to show you how to sync a Windows (host) folder to a folder in the Ubuntu (guest). You&#8217;ll need to have guest additions installed on the guest OS for this one.
For this tutorial we&#8217;ll be syncing the H: drive on Windows (yours [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://thirderror.com/wp-content/uploads/2008/08/win_prog_files_in_ubuntu.png"><img class="size-medium wp-image-439 aligncenter" style="margin-left: 10px; margin-right: 10px; float: left;" title="H:\\Program Files in /home/jason/windows/Program Files" src="http://thirderror.com/wp-content/uploads/2008/08/win_prog_files_in_ubuntu-300x239.png" alt="H:\\Program Files in /home/jason/windows/Program Files" width="300" height="239" /></a></p>
<p>As a follow up to our <a href="http://thirderror.com/run-ubuntu-and-windows-seamlessly/">seamless Ubuntu in Windows tutorials</a>, we&#8217;re going to show you how to sync a Windows (host) folder to a folder in the Ubuntu (guest). You&#8217;ll need to have guest additions installed on the guest OS for this one.</p>
<p>For this tutorial we&#8217;ll be syncing the <strong>H:</strong> drive on Windows (yours will probably be C:) with <strong>/home/jason/windows</strong> in Ubuntu.<span id="more-433"></span></p>
<h2>Create a New Share</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/shared_folders_icon.png"><img class="img1 size-medium wp-image-438 alignnone" title="Shared Folders Icon" src="http://thirderror.com/wp-content/uploads/2008/08/shared_folders_icon-300x98.png" alt="Shared Folders Icon" width="300" height="98" /></a></p>
<p>When you boot up into Ubuntu, do not switch to Seamless Mode just yet. <strong>Right click</strong> the blue folder icon at the bottom right hand corner.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/add_new_share.png"><img class="img1 size-medium wp-image-435 alignnone" title="Add New Share" src="http://thirderror.com/wp-content/uploads/2008/08/add_new_share-300x213.png" alt="Add New Share" width="300" height="213" /></a></p>
<p>The <strong>Shared Folders</strong> dialog will popup. Click the folder icon with the plus sign to add a new share.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/add_h_share.png"><img class="img1 size-medium wp-image-434 alignnone" title="Add Share: H_DRIVE" src="http://thirderror.com/wp-content/uploads/2008/08/add_h_share.png" alt="Add Share: H_DRIVE" width="217" height="188" /></a></p>
<p>Browse for a folder using the yellow folder icon next to <strong>Folder Path</strong>. I chose the location of my Windows installation, <strong>H:</strong>.</p>
<p>VirtualBox will then automatically fill the <strong>Folder Name</strong>, which you can change if you don&#8217;t like it. I kept the default. Make sure <strong>Make Permanent</strong> is checked. Click <strong>OK</strong>.</p>
<h2>Mount the Share in Ubuntu</h2>
<p>You can switch to seamless mode if you want now.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/mkdir_win.png"><img class="img1 size-medium wp-image-436 alignnone" title="Create Directory: Windows" src="http://thirderror.com/wp-content/uploads/2008/08/mkdir_win-300x67.png" alt="Create Directory: Windows" width="300" height="67" /></a></p>
<p>Open up <strong>Terminal</strong> (Applications → Accessories → Terminal). You&#8217;ll default automatically to your home folder. For the sake of simplicity, we&#8217;re going to mount the Windows drive inside your home folder.</p>
<p>Type the following to create a <strong>windows</strong> directory:</p>
<pre>mkdir windows</pre>
<p>You&#8217;ll have created <strong>/home/YOUR_USERNAME/windows</strong></p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/mount_h.png"><img class="img1 size-medium wp-image-437 alignnone" title="Mount H_DRIVE in /home/jason/windows" src="http://thirderror.com/wp-content/uploads/2008/08/mount_h-300x46.png" alt="Mount H_DRIVE in /home/jason/windows" width="300" height="46" /></a></p>
<p>To mount your new drive, type the following:</p>
<pre>sudo mount -t vboxsf <strong>YOUR_SHARE_NAME_GOES_HERE</strong> /home/<strong>YOUR_USERNAME</strong>/windows</pre>
<p>For example, I&#8217;d type:</p>
<pre>sudo mount -t vboxsf H_DRIVE /home/jason/windows</pre>
<p>That&#8217;s about it to syncing a folder on your host Windows machine to an Ubuntu guest. If you have any question, direct them to the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/sync-host-and-guest-folders-in-virtualbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Configuring Synergy Server on Linux</title>
		<link>http://www.thirderror.com/configuring-synergy-server-on-linux/</link>
		<comments>http://www.thirderror.com/configuring-synergy-server-on-linux/#comments</comments>
		<pubDate>Thu, 14 Aug 2008 05:44:35 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Frontpage]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=430</guid>
		<description><![CDATA[
In this tutorial we&#8217;re going to explain the setup of the Synergy server on Ubuntu. If you haven&#8217;t already installed it, open Terminal and type the following:
sudo apt-get install synergy
Configuration
Synergy will be installed, but there&#8217;s no graphical interface for configuring the configuration file. We&#8217;ll help you configure the server.
gksudo gedit /home/your_username/.synergy.conf
We&#8217;ll need the names of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://thirderror.com/wp-content/uploads/2008/08/screenshot1.png"><img class="img1 size-medium wp-image-431 aligncenter" title="Terminal: synergys" src="http://thirderror.com/wp-content/uploads/2008/08/screenshot1.png" alt="Terminal: synergys" width="258" height="87" /></a></p>
<p>In this tutorial we&#8217;re going to explain the setup of the Synergy server on Ubuntu. If you haven&#8217;t already installed it, open Terminal and type the following:</p>
<pre>sudo apt-get install synergy<span id="more-430"></span></pre>
<h2>Configuration</h2>
<p>Synergy will be installed, but there&#8217;s no graphical interface for configuring the configuration file. We&#8217;ll help you configure the server.</p>
<pre>gksudo gedit /home/your_username/.synergy.conf</pre>
<p>We&#8217;ll need the names of the computers that will be connecting (the name of the current computer which will act as the server and any client computers). Type the following:</p>
<pre>section: screens
	server:
	client:
end</pre>
<p>Add more screens as necessary. In this example setup, <strong>server</strong> will be to the left of <strong>client</strong>.</p>
<pre>section: links
	server:
		right = client
	client:
		left = server
end</pre>
<p>The <strong>server:</strong> section designates that the entire right side of <strong>server</strong> will go to <strong>client</strong>. The <strong>client:</strong> section designates that the entire left side of <strong>client</strong> will go to <strong>server</strong>.</p>
<p>If you have a more complex setup of computers, <a href="http://synergy2.sourceforge.net/configuration.html">the official configuration manual might help</a>. The manual describes a situation where &#8220;moe&#8221; is to the right of &#8220;larry&#8221; and &#8220;curly&#8221; is on top of both screens.</p>
<h2>Starting the Server</h2>
<p>Starting the server is simple. Head to the terminal, and type:</p>
<pre>synergys</pre>
<p>Clients will now be able to connect to the server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/configuring-synergy-server-on-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Entertainer Media Center on Ubuntu</title>
		<link>http://www.thirderror.com/installing-entertainer-media-center-on-ubuntu/</link>
		<comments>http://www.thirderror.com/installing-entertainer-media-center-on-ubuntu/#comments</comments>
		<pubDate>Sun, 10 Aug 2008 06:12:16 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Frontpage]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=399</guid>
		<description><![CDATA[
Entertainer is a relatively new media center for Gnome and XFCE desktops, currently at version 0.1 as of this writing. This tutorial will focus on the installation of Entertainer on Ubuntu with as little command line use as possible. If you&#8217;re comfortable with the command line, this tutorial should suffice. We&#8217;ll assume you&#8217;ve downloaded the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://thirderror.com/wp-content/uploads/2008/08/entertainer_gui.png"><img class="size-medium wp-image-400 alignleft" style="margin-left: 10px; margin-right: 10px; float:left;" title="Entertainer Menu" src="http://thirderror.com/wp-content/uploads/2008/08/entertainer_gui-214x300.png" alt="Entertainer Menu" width="106" height="149" /></a></p>
<p>Entertainer is a relatively new media center for Gnome and XFCE desktops, currently at version 0.1 as of this writing. This tutorial will focus on the installation of Entertainer on Ubuntu with as little command line use as possible. If you&#8217;re <a href="https://answers.launchpad.net/entertainer/+question/39028/+index">comfortable with the command line, this tutorial should suffice</a>. We&#8217;ll assume you&#8217;ve <a href="http://www.entertainer-project.com/">downloaded the tar.gz from the Entertainer website</a>.<span id="more-399"></span></p>
<h2>Extract Entertainer</h2>
<p>We&#8217;ve saved the .tar.gz to <strong>/home/jason</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/extract_entertainer.png"><img class="img1 size-medium wp-image-404 alignnone" title="Extract Entertainer from .tar.gz" src="http://thirderror.com/wp-content/uploads/2008/08/extract_entertainer-287x300.png" alt="Extract Entertainer from .tar.gz" width="287" height="300" /></a></p>
<p>Right click the .tar.gz and hit <strong>Extract Here</strong>. You should have a new folder called <strong>entertainer-0.1</strong>.</p>
<h2>Install Dependencies</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/install_entertainer_dependencies.png"><img class="img1 size-medium wp-image-405 alignnone" title="Install Entertainer Dependencies" src="http://thirderror.com/wp-content/uploads/2008/08/install_entertainer_dependencies-300x60.png" alt="Install Entertainer Dependencies" width="300" height="60" /></a></p>
<p>We&#8217;ll need to install some files before we&#8217;re able to run Entertainer. Copy and paste the following into the Terminal (no changes needed):</p>
<pre>sudo apt-get install python-gobject python-gtk2 python-gst0.10 python-clutter \
python-pysqlite2 python-cddb python-glade2 python-cairo python-feedparser \
python-pyinotify python-eyed3 python-pyvorbis python-imaging python-imdbpy \
python-notify</pre>
<p>Hit Enter, and enter your password. Wait for all the files to be downloaded and installed (when it&#8217;s finished you&#8217;ll be able to execute commands again). Close the Terminal.</p>
<h2>Setup Entertainer</h2>
<p>Head into your <strong>entertainer-0.1</strong> directory, then head into the <strong>src</strong> folder.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/execute_content_manage.png"><img class="img1 size-medium wp-image-403 alignnone" title="Run Entertainer Content Manager" src="http://thirderror.com/wp-content/uploads/2008/08/execute_content_manage-300x116.png" alt="Run Entertainer Content Manager" width="300" height="116" /></a></p>
<p>Double click the <strong>entertainer-content-management.py</strong> file, and click <strong>Run</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/add_music_library_entertain.png"><img class="img1 size-medium wp-image-401 alignnone" title="Add Folder to the Music Library, Entertainer Content Management" src="http://thirderror.com/wp-content/uploads/2008/08/add_music_library_entertain-300x202.png" alt="Add Folder to the Music Library, Entertainer Content Management" width="300" height="202" /></a></p>
<p>Click an applicable tab. We chose <strong>Music</strong>. Click <strong>Add</strong>, and choose a folder where you keep music files. Do the same with Videos, Images, and you can configure RSS feeds and Weather if you wish. When you&#8217;re done, click <strong>Close</strong>.</p>
<h2>Start Entertainer</h2>
<p>Double click <strong>entertainer-backend.py</strong>, and choose <strong>Run</strong>. Now double click <strong>entertainer-frontend.py</strong>, and choose <strong>Run</strong>. If all went well, the program should start. Direct any questions to the comments section below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/installing-entertainer-media-center-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Enable Auto Login For Ubuntu</title>
		<link>http://www.thirderror.com/enable-auto-login-for-ubuntu/</link>
		<comments>http://www.thirderror.com/enable-auto-login-for-ubuntu/#comments</comments>
		<pubDate>Thu, 07 Aug 2008 06:28:17 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=376</guid>
		<description><![CDATA[Single user on a desktop and local security isn&#8217;t a concern? Enable autologin for Ubuntu to avoid having to type in your details at boot.

Hit System, Administration, then Login Window.

Go to the Security tab, check the Enable Automatic Login, and select your user name from the list. That&#8217;s it. When your system loads up it [...]]]></description>
			<content:encoded><![CDATA[<p>Single user on a desktop and local security isn&#8217;t a concern? Enable autologin for Ubuntu to avoid having to type in your details at boot.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/system-admin-login-window.png"><img class="img1 size-medium wp-image-379 alignnone" title="System - Administration - Login Window" src="http://thirderror.com/wp-content/uploads/2008/08/system-admin-login-window-300x151.png" alt="System - Administration - Login Window" width="300" height="151" /></a></p>
<p>Hit <strong>System</strong>, <strong>Administration</strong>, then <strong>Login Window</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/08/screenshot-login-window-preferences.png"><img class="img1 size-medium wp-image-377 alignnone" title="Login Window Preferences - Security" src="http://thirderror.com/wp-content/uploads/2008/08/screenshot-login-window-preferences-219x300.png" alt="Login Window Preferences - Security" width="219" height="300" /></a></p>
<p>Go to the <strong>Security</strong> tab, check the <strong>Enable Automatic Login</strong>, and select your user name from the list. That&#8217;s it. When your system loads up it should head automatically to the desktop.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/enable-auto-login-for-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wallpaper Tagging in Vista</title>
		<link>http://www.thirderror.com/wallpaper-tagging-in-vista/</link>
		<comments>http://www.thirderror.com/wallpaper-tagging-in-vista/#comments</comments>
		<pubDate>Sun, 27 Jul 2008 18:19:06 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Frontpage]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Vista]]></category>
		<category><![CDATA[Wallpaper]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=259</guid>
		<description><![CDATA[Everyone knows about the Windows Wallpaper section in Vista, which is categorized by tags, unlike the rest of the sections presented in the Wallpaper dialog. This tutorial will go over how to add your own wallpaper to the Windows Wallpaper dialog, and tag it so that it appears under a category. Here&#8217;s a YouTube explaining [...]]]></description>
			<content:encoded><![CDATA[<p>Everyone knows about the Windows Wallpaper section in Vista, which is categorized by tags, unlike the rest of the sections presented in the Wallpaper dialog. This tutorial will go over how to add your own wallpaper to the Windows Wallpaper dialog, and tag it so that it appears under a category. Here&#8217;s <a href="http://youtube.com/watch?v=jjsQlfpagj0">a YouTube explaining the steps from downloading the wallpaper to adding it to Vista&#8217;s wallpaper dialog</a>.</p>
<p>Regular boring tutorial with pictures follows ahead.<span id="more-259"></span></p>
<h2>Move Your Picture to the Wallpaper Folder</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/cut_picture.png"><img class="img1 size-medium wp-image-260 alignnone" title="Cut Picture" src="http://thirderror.com/wp-content/uploads/2008/07/cut_picture-200x300.png" alt="Cut Picture" width="200" height="300" /></a></p>
<p>Right click your picture, and hit <strong>Cut </strong>(or alternatively drag and drop it into the folder in the next step).</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/paste_into_wallpaper.png"><img class="img1 size-medium wp-image-261 alignnone" title="Paste Picture in to C:WINDOWSWebWallpaper" src="http://thirderror.com/wp-content/uploads/2008/07/paste_into_wallpaper-300x225.png" alt="Paste Picture in to C:WINDOWSWebWallpaper" width="300" height="225" /></a></p>
<p>Head over to <strong>C:\WINDOWS\Web\Wallpaper</strong> and right click on a spot and select <strong>Paste</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/uac.png"><img class="img1 size-medium wp-image-264 alignnone" title="UAC Prompt For Pasting into Wallpaper" src="http://thirderror.com/wp-content/uploads/2008/07/uac-300x148.png" alt="UAC Prompt For Pasting into Wallpaper" width="300" height="148" /></a></p>
<blockquote><p>You are pointing out Vista&#8217;s flaws. Cancel or Allow?</p>
<p>- UAC Prompt in <a href="http://www.youtube.com/watch?v=VKM1cAtAdtQ">Mac Ad</a></p></blockquote>
<p>Click <strong>Continue</strong>, then authorize it.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/tag.png"><img class="img1 size-medium wp-image-263 alignnone" title="Adding Tag &quot;Road&quot; to Wallpaper" src="http://thirderror.com/wp-content/uploads/2008/07/tag-300x178.png" alt="Adding Tag &quot;Road&quot; to Wallpaper" width="300" height="178" /></a></p>
<p>Select your picture, then add an appropriate tag. Then hit Save.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/result2.png"><img class="img1 size-medium wp-image-262 alignnone" title="Wallpaper Categorized Under &quot;Road&quot;" src="http://thirderror.com/wp-content/uploads/2008/07/result2-300x225.png" alt="Wallpaper Categorized Under &quot;Road&quot;" width="300" height="225" /></a></p>
<p>Head over to the Wallpaper dialog, and see the results of your work. <em>This tutorial originally posted by Sean.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/wallpaper-tagging-in-vista/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speech Recognition for XP</title>
		<link>http://www.thirderror.com/speech-recognition-for-xp/</link>
		<comments>http://www.thirderror.com/speech-recognition-for-xp/#comments</comments>
		<pubDate>Fri, 25 Jul 2008 17:24:26 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Frontpage]]></category>
		<category><![CDATA[Site Related]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Speech]]></category>
		<category><![CDATA[XP]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=206</guid>
		<description><![CDATA[
One of the features included with Windows Vista was speech recognition, a supposed feature that would revolutionize how we use computers:
We totally believe speech recognition will go mainstream somewhere over the next decade.
- Bill Gates, Sept. 2005 (view more quotes here)
This tutorial will show you how to install speech recognition for XP using the Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://thirderror.com/wp-content/uploads/2008/07/lang_bar.png"><img class="img1 size-medium wp-image-209 alignnone" title="Language Bar with Speech" src="http://thirderror.com/wp-content/uploads/2008/07/lang_bar-300x20.png" alt="Language Bar with Speech" width="300" height="20" /></a></p>
<p>One of the features included with Windows Vista was speech recognition, a supposed feature that would revolutionize how we use computers:</p>
<blockquote><p>We totally believe speech recognition will go mainstream somewhere over the next decade.</p>
<p>- Bill Gates, Sept. 2005 <a href="http://mpt.net.nz/archive/2005/12/30/gates">(view more quotes here)</a></p></blockquote>
<p>This tutorial will show you how to install speech recognition for XP using the Microsoft Speech SDK. <a href="http://www.microsoft.com/windowsxp/using/setup/expert/moskowitz_02september23.mspx">If you&#8217;ve got a copy of <strong>Office XP or 2003</strong> handy, please follow this tutorial on Microsoft&#8217;s website</a>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/correct_file.png"><img class="img1 size-medium wp-image-208 alignnone" title="Download the Microsoft Speech SDK - Correct File" src="http://thirderror.com/wp-content/uploads/2008/07/correct_file-300x90.png" alt="Download the Microsoft Speech SDK - Correct File" width="300" height="90" /></a></p>
<p>For everyone else, <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=5E86EC97-40A7-453F-B0EE-6583171B4530&amp;displaylang=en">please download the Microsoft Speech SDK here</a> (see picture above for correct file).<span id="more-206"></span></p>
<h2>Extracting the Speech SDK</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/extract_wizard.png"><img class="img1 size-medium wp-image-221 alignnone" title="Speech SDK Extractor File" src="http://thirderror.com/wp-content/uploads/2008/07/extract_wizard-300x178.png" alt="Speech SDK Extractor File" width="300" height="178" /></a></p>
<p>The file you download is an executable zip file. Double click it, and tell it a path to extract to. We chose <strong>\My Documents\Downloads\speech</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/run_setup.png"><img class="img1 size-medium wp-image-222 alignnone" title="Run setup.exe" src="http://thirderror.com/wp-content/uploads/2008/07/run_setup-300x224.png" alt="Run setup.exe" width="300" height="224" /></a></p>
<p>Head into the folder you extracted the files to, and double click <strong>setup.exe</strong>.</p>
<h2>Installation of the Speech SDK</h2>
<p>It&#8217;s a pretty standard installation, but for your convenience we&#8217;ve put a picture tutorial below.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/welcome_wizard.png"><img class="img1 size-medium wp-image-215 alignnone" title="Welcome to Speech SDK Installation" src="http://thirderror.com/wp-content/uploads/2008/07/welcome_wizard-300x230.png" alt="Welcome to Speech SDK Installation" width="300" height="230" /></a></p>
<p>Click <strong>Next</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/accept_eula.png"><img class="img1 size-medium wp-image-211 alignnone" title="Microsoft Speech SDK End User License Agreement" src="http://thirderror.com/wp-content/uploads/2008/07/accept_eula-300x230.png" alt="Microsoft Speech SDK End User License Agreement" width="300" height="230" /></a></p>
<p>Accept the license agreement (unless you don&#8217;t), then click <strong>Next</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/enter_info.png"><img class="img1 size-medium wp-image-212 alignnone" title="Enter Name and Company" src="http://thirderror.com/wp-content/uploads/2008/07/enter_info-300x230.png" alt="Enter Name and Company" width="300" height="230" /></a></p>
<p>Optional. Just click <strong>Next</strong> if you&#8217;d like.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/verify_path.png"><img class="img1 size-medium wp-image-214 alignnone" title="Verify Install Path" src="http://thirderror.com/wp-content/uploads/2008/07/verify_path-300x230.png" alt="Verify Install Path" width="300" height="230" /></a></p>
<p>Keep the default, unless you dislike it. Click <strong>Next</strong>. The installation will start, and show you a finish screen when you&#8217;re done.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/speech_recognition_settings.png"><img class="img1 size-medium wp-image-213 alignnone" title="Speech Recognition Settings" src="http://thirderror.com/wp-content/uploads/2008/07/speech_recognition_settings-300x295.png" alt="Speech Recognition Settings" width="300" height="295" /></a></p>
<p>When it&#8217;s done, head to the <strong>Control Panel</strong> and double click on <strong>Speech</strong>. You&#8217;ll be greeted with the <strong>Speech Recognition</strong> dialog. Before you can start using Speech Recognition, click <strong>Train Profile</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/configure_regional.png"><img class="img1 size-medium wp-image-218 alignnone" title="Regional and Language Options - Language Tab" src="http://thirderror.com/wp-content/uploads/2008/07/configure_regional-249x300.png" alt="Regional and Language Options - Language Tab" width="249" height="300" /></a></p>
<p>Once you&#8217;re finished training your profile, head back to the <strong>Control Panel</strong> and double-click <strong>Regional and Language Options</strong>. Click the <strong>Language</strong> tab. Click <strong>Details</strong>. Verify that <strong>Speech Recognition</strong> is listed under English.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/conf_lang_bar.png"><img class="img1 size-medium wp-image-220 alignnone" title="Configure Language Bar Settings" src="http://thirderror.com/wp-content/uploads/2008/07/conf_lang_bar-300x166.png" alt="Configure Language Bar Settings" width="300" height="166" /></a></p>
<p>Click the <strong>Language Bar&#8230;</strong> under <strong>Preferences</strong>. Make sure the language bar is set to display on the desktop.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/extend_speech_support.png"><img class="img1 size-medium wp-image-217 alignnone" title="Extend Speech Support to All Programs" src="http://thirderror.com/wp-content/uploads/2008/07/extend_speech_support-249x300.png" alt="Extend Speech Support to All Programs" width="249" height="300" /></a></p>
<p>Click the <strong>Advanced</strong> tab, and make sure <strong>Extend support of advanced text services to all programs</strong> is checked. Click <strong>OK</strong>.</p>
<p>Once you&#8217;re done, a language bar should appear and you should be able to hit <strong>Speech</strong> to enable it. Unforutunately, speech recognition does not appear to be as full featured as within Vista. In a future post we&#8217;ll show you how to make the best of XP speech recognition.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/speech-recognition-for-xp/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Installing Ubuntu 8.04</title>
		<link>http://www.thirderror.com/installing-ubuntu-804/</link>
		<comments>http://www.thirderror.com/installing-ubuntu-804/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 07:01:20 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=183</guid>
		<description><![CDATA[This is a follow up to our first tutorial on creating a virtual machine for Ubuntu (See part 3 here if you know how to install Ubuntu). It can also be used as a tutorial to install Ubuntu 8.04, but you&#8217;ll need to know more in depth about partitioning (as use entire disk would wipe [...]]]></description>
			<content:encoded><![CDATA[<p>This is a follow up to <a href="http://thirderror.com/run-ubuntu-and-windows-seamlessly/">our first tutorial on creating a virtual machine for Ubuntu</a> (<a href="http://thirderror.com/run-ubuntu-and-windows-seamlessly-part-3/">See part 3 here if you know how to install Ubuntu</a>). It can also be used as a tutorial to install Ubuntu 8.04, but you&#8217;ll need to know more in depth about partitioning (as use entire disk would wipe out everything and install Ubuntu on it)</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_language.png"><img class="img1 size-medium wp-image-168 alignnone" title="Select Language for Ubuntu CD" src="http://thirderror.com/wp-content/uploads/2008/07/select_language-300x254.png" alt="Select Language for Ubuntu CD" width="300" height="254" /></a></p>
<p>Click into the screen so that VirtualBox tells you that you&#8217;re now controlling it. Select your language. (We&#8217;re assuming English)</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/install_ubuntu.png"><img class="img1 size-medium wp-image-157 alignnone" title="Ubuntu CD Menu - Install Ubuntu" src="http://thirderror.com/wp-content/uploads/2008/07/install_ubuntu-300x254.png" alt="Ubuntu CD Menu - Install Ubuntu" width="300" height="254" /></a></p>
<p>Select <strong>Install Ubuntu</strong>, unless you&#8217;d like to try it inside a tiny window. You&#8217;ll be shown a little progress bar, and it&#8217;ll load up to an orange/brown desktop with a bird on it.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_ubuntu_language.png"><img class="img1 size-medium wp-image-171 alignnone" title="Select Language for Ubuntu Installation" src="http://thirderror.com/wp-content/uploads/2008/07/select_ubuntu_language-300x248.png" alt="Select Language for Ubuntu Installation" width="300" height="248" /></a></p>
<p>Select the language again. Yes, it&#8217;s redundant. Click <strong>Forward</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_timezone.png"><img class="img1 size-medium wp-image-169 alignnone" title="Select Ubuntu Timezone" src="http://thirderror.com/wp-content/uploads/2008/07/select_timezone-300x248.png" alt="Select Ubuntu Timezone" width="300" height="248" /></a></p>
<p>Select your location for timezone purposes. I live on the Pacific coast, so I choose Los Angeles. Click <strong>Forward.</strong></p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_keyboard_layout.png"><img class="img1 size-medium wp-image-167 alignnone" title="Select Ubuntu Keyboard Layout" src="http://thirderror.com/wp-content/uploads/2008/07/select_keyboard_layout-300x248.png" alt="Select Ubuntu Keyboard Layout" width="300" height="248" /></a></p>
<p>Pick a keyboard layout. I&#8217;m fine with the defaults. Click <strong>Forward</strong> once you&#8217;re done.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_entire_disk.png"><img class="img1 size-medium wp-image-166 alignnone" title="Guided Partition - Use Entire Disk" src="http://thirderror.com/wp-content/uploads/2008/07/select_entire_disk-300x248.png" alt="Guided Partition - Use Entire Disk" width="300" height="248" /></a></p>
<p>Ubuntu will prepare a partitioner. Since this is a virtual machine, and you&#8217;re using an empty virtual disk, just use the entire disk.</p>
<p>If you&#8217;re not using a virtual machine, we recommend learning what you&#8217;re doing before taking action.</p>
<p>Click <strong>Forward</strong> when you&#8217;re done.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/ubuntu_user_info.png"><img class="img1 size-medium wp-image-176 alignnone" title="Ubuntu User Info" src="http://thirderror.com/wp-content/uploads/2008/07/ubuntu_user_info-300x248.png" alt="Ubuntu User Info" width="300" height="248" /></a></p>
<p>Ubuntu will prompt you for some details (your name, username for logging in, password, and name of the computer). Once you&#8217;re done, press <strong>Forward</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/confirm_install.png"><img class="img1 size-medium wp-image-153 alignnone" title="Confirm Ubuntu Installation" src="http://thirderror.com/wp-content/uploads/2008/07/confirm_install-300x248.png" alt="Confirm Ubuntu Installation" width="300" height="248" /></a></p>
<p>At the end, Ubuntu will show you everything and ask for confirmation before installing. Satisfied? Click <strong>Install</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/installing_ubuntu.png"><img class="img1 size-medium wp-image-158 alignnone" title="Ubuntu Install Progress" src="http://thirderror.com/wp-content/uploads/2008/07/installing_ubuntu-300x248.png" alt="Ubuntu Install Progress" width="300" height="248" /></a></p>
<p>Ubuntu will proceed to install. This will take some time, so get up and do something. At the end, Ubuntu will prompt to restart. Follow all onscreen directives and the virtual machine will reboot. At this point, you can <a href="http://thirderror.com/run-ubuntu-and-windows-seamlessly-part-3/">move on to part 3, where we tell you how to make it seamless with Windows</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/installing-ubuntu-804/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Ubuntu and Windows Seamlessly &#8211; Part 3</title>
		<link>http://www.thirderror.com/run-ubuntu-and-windows-seamlessly-part-3/</link>
		<comments>http://www.thirderror.com/run-ubuntu-and-windows-seamlessly-part-3/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 07:00:04 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=185</guid>
		<description><![CDATA[Now that we&#8217;ve setup Ubuntu on our virtual machine (see here if you missed setting up the virtual machine), we can go ahead and configure it to become seamless.
Login to Ubuntu

Login to Ubuntu as soon as it starts.
Setup Guest Additions

In the window with Ubuntu in it, click Devices → Install Guest Additions&#8230;
These guest additions will [...]]]></description>
			<content:encoded><![CDATA[<p>Now that <a href="http://thirderror.com/installing-ubuntu-804/">we&#8217;ve setup Ubuntu on our virtual machine</a> (<a href="http://thirderror.com/run-ubuntu-and-windows-seamlessly/">see here if you missed setting up the virtual machine</a>), we can go ahead and configure it to become seamless.</p>
<h2>Login to Ubuntu</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/login.png"><img class="img1 alignnone size-medium wp-image-189" title="Login to Ubuntu" src="http://thirderror.com/wp-content/uploads/2008/07/login-300x248.png" alt="Login to Ubuntu" width="300" height="248" /></a></p>
<p>Login to Ubuntu as soon as it starts.</p>
<h2>Setup Guest Additions</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/install_guest_additions.png"><img class="img1 size-medium wp-image-188 alignnone" title="Install Guest Additions" src="http://thirderror.com/wp-content/uploads/2008/07/install_guest_additions.png" alt="Install Guest Additions" width="253" height="293" /></a></p>
<p>In the window with Ubuntu in it, click <strong>Devices → Install Guest Additions&#8230;</strong></p>
<p>These guest additions will allow you to select seamless mode. A window should popup with the CD contents. If not, check that the correct CD is mounted in Places. (If it&#8217;s the Ubuntu CD, shut down, and reconfigure the mounted CD to use the Guest Additions.)</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/open_terminal.png"><img class="img1 size-medium wp-image-190 alignnone" title="Open Terminal" src="http://thirderror.com/wp-content/uploads/2008/07/open_terminal-300x291.png" alt="Open Terminal" width="300" height="291" /></a></p>
<p>Open Terminal (Applications → Accessories → Terminal). It&#8217;s a command line interface, but it&#8217;ll be easy.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/commands.png"><img class="img1 size-medium wp-image-186 alignnone" title="Terminal - Installing Guest Additions" src="http://thirderror.com/wp-content/uploads/2008/07/commands-300x248.png" alt="Terminal - Installing Guest Additions" width="300" height="248" /></a></p>
<p>We&#8217;ll need to switch to the CD directory. Type the following:</p>
<pre>cd /media/cdrom0</pre>
<p>Then type the following to install Guest additions:</p>
<pre>sudo sh ./VBoxLinuxAdditions.run</pre>
<p>Ubuntu will prompt you for your password. It will not show up (no asterisks, no plain text). Hit Enter after that, and the installation should run.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/finish_installing_guest.png"><img class="img1 size-medium wp-image-187 alignnone" title="Finished Installing Guest Additions" src="http://thirderror.com/wp-content/uploads/2008/07/finish_installing_guest-300x248.png" alt="Finished Installing Guest Additions" width="300" height="248" /></a></p>
<p>You should see a screen like the above. Restart, as directed.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_seamless_mode.png"><img class="img1 size-medium wp-image-191 alignnone" title="Select Seamless Mode" src="http://thirderror.com/wp-content/uploads/2008/07/select_seamless_mode-300x290.png" alt="Select Seamless Mode" width="300" height="290" /></a></p>
<p>Once you login again and it loads up the desktop, click <strong>Machine → Seamless Mode</strong>. You&#8217;re done! If you want, you can reconfigure the panels (taskbars) to complement your Windows desktop. There&#8217;s a few quirks here and there, but for the most part it works well.</p>
<p>Note: After we updated, we had to reconfigure the guest additions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/run-ubuntu-and-windows-seamlessly-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run Ubuntu and Windows Seamlessly</title>
		<link>http://www.thirderror.com/run-ubuntu-and-windows-seamlessly/</link>
		<comments>http://www.thirderror.com/run-ubuntu-and-windows-seamlessly/#comments</comments>
		<pubDate>Sun, 20 Jul 2008 06:59:40 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Frontpage]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://thirderror.com/?p=151</guid>
		<description><![CDATA[We&#8217;re going to show you how to install Ubuntu on a virtual machine using Sun&#8217;s VirtualBox, and then setup seamless mode to allow running Windows and Ubuntu applications within the same environment (see the picture to the left). Why is this useful? You can run both operating systems within the same environment. We think it [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://thirderror.com/wp-content/uploads/2008/07/result1.png"><img class="img1 size-medium wp-image-164 alignleft" style="margin-left: 10px; margin-right: 10px; float:left;" title="Seamless Windows and Ubuntu" src="http://thirderror.com/wp-content/uploads/2008/07/result1-294x300.png" alt="Seamless Windows and Ubuntu" width="294" height="300" /></a>We&#8217;re going to show you how to install Ubuntu on a virtual machine <a href="http://www.virtualbox.org/">using Sun&#8217;s VirtualBox</a>, and then setup seamless mode to allow running Windows and Ubuntu applications within the same environment (see the picture to the left). <strong>Why is this useful?</strong> You can run both operating systems within the same environment. We think it beats using Wubi, configuring your computer to install Ubuntu, and running Windows inside Ubuntu.</p>
<p>For this tutorial, we suggest you have at least 8GB free space and at least 1GB of RAM. You&#8217;ll need to have <a href="http://ubuntu.com">downloaded the Ubuntu ISO file</a> and <a href="http://www.virtualbox.org/">VirtualBox. We assume you have installed VirtualBox</a>.</p>
<p>This is going to be a long tutorial, but <span style="text-decoration: line-through;">we hope</span> we&#8217;re positive we&#8217;ve made it easy to follow with an abundance of screenshots. However, some settings may need to be changed to reflect your computer setup.</p>
<p>Oh, and as a big huge tutorial, we&#8217;ve split it into 3 parts: this current part, which describes setup of the virtual machine, <a href="http://thirderror.com/installing-ubuntu-804/">part 2 for installing Ubuntu</a>, and <a href="http://thirderror.com/run-ubuntu-and-windows-seamlessly-part-3/">part 3 for configuring it to become seamless</a>.<span id="more-151"></span></p>
<h2>Creating a New Virtual Machine</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/new_vm.png"><img class="img1 size-medium wp-image-162 alignnone" title="Create a New Virtual Machine" src="http://thirderror.com/wp-content/uploads/2008/07/new_vm-300x196.png" alt="Create a New Virtual Machine" width="300" height="196" /></a></p>
<p>Open up VirtualBox. Click the button that says <strong>New</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/name_type_vm.png"><img class="img1 size-medium wp-image-160 alignnone" title="Name and Type of the Virtual Machine" src="http://thirderror.com/wp-content/uploads/2008/07/name_type_vm-300x212.png" alt="Name and Type of the Virtual Machine" width="300" height="212" /></a></p>
<p>The <strong>Create New Virtual Machine</strong> wizard will appear. Click <strong>Next </strong>to the welcome screen, and type in a <strong>Name</strong> (we chose Ubuntu) and select <strong>Ubuntu for OS Type</strong>. Click <strong>Next.</strong></p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/ram.png"><img class="img1 size-medium wp-image-163 alignnone" title="Select Virtual Machine RAM" src="http://thirderror.com/wp-content/uploads/2008/07/ram-300x212.png" alt="Select Virtual Machine RAM" width="300" height="212" /></a></p>
<p>You&#8217;ll have to select the amount of <strong>RAM</strong>. About <strong>half the RAM you have</strong> is a good idea, so 512MB for systems with 1GB of RAM should suffice. We chose 700MB (we have 2GB of RAM). Click <strong>Next</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/new_virtual_disk.png"><img class="img1 size-medium wp-image-161 alignnone" title="Create a New Virtual Disk" src="http://thirderror.com/wp-content/uploads/2008/07/new_virtual_disk-300x212.png" alt="Create a New Virtual Disk" width="300" height="212" /></a></p>
<p>The wizard will tell you to select a virtual hard disk. Since we&#8217;ve assumed you&#8217;ve never used VirtualBox before, we need to create a new one. Click <strong>New&#8230;</strong></p>
<h2>The Create New Virtual Disk Wizard</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/welcome_new_virtual_disk.png"><img class="img1 size-medium wp-image-178 alignnone" title="New Virtual Disk Wizard" src="http://thirderror.com/wp-content/uploads/2008/07/welcome_new_virtual_disk-300x212.png" alt="New Virtual Disk Wizard" width="300" height="212" /></a></p>
<p>The Welcome screen for the <strong>Create New Virtual Disk</strong> wizard. Click <strong>Next.</strong></p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_dynamic_disk.png"><img class="img1 size-medium wp-image-165 alignnone" title="Select Dynamic Disk for Virtual Disk Creation" src="http://thirderror.com/wp-content/uploads/2008/07/select_dynamic_disk-300x212.png" alt="Select Dynamic Disk for Virtual Disk Creation" width="300" height="212" /></a></p>
<p>You&#8217;ll be asked to select a type of virtual hard disk image. For purposes of &#8220;I want it done now,&#8221; I chose <strong>the dynamically expanding image</strong>. Choose one or the other, and click <strong>Next.</strong></p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/size_disk.png"><img class="img1 size-medium wp-image-174 alignnone" title="Select Size of Disk" src="http://thirderror.com/wp-content/uploads/2008/07/size_disk-300x212.png" alt="Select Size of Disk" width="300" height="212" /></a></p>
<p>Select a size for the virtual disk. I kept the default of 8GB. Then choose a name. I chose Ubuntu. Click <strong>Next.</strong></p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/finish_virtual_disk_create.png"><img class="img1 size-medium wp-image-156 alignnone" title="Finish Creating Virtual Disk" src="http://thirderror.com/wp-content/uploads/2008/07/finish_virtual_disk_create-300x212.png" alt="Finish Creating Virtual Disk" width="300" height="212" /></a></p>
<p>The wizard gives you details of what you chose. If you&#8217;re satisfied, click <strong>Finish.</strong></p>
<h2>Back to the Virtual Machine Wizard</h2>
<p><strong></strong><a href="http://thirderror.com/wp-content/uploads/2008/07/ubuntu_virtual_disk_select.png"><img class="img1 size-medium wp-image-177 alignnone" title="Select Virtual Disk for Virtual Machine" src="http://thirderror.com/wp-content/uploads/2008/07/ubuntu_virtual_disk_select-300x212.png" alt="Select Virtual Disk for Virtual Machine" width="300" height="212" /></a></p>
<p>Back in the Virtual Machine wizard, pick the virtual hard disk you just created and click <strong>Next.</strong></p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/finish_new_vm.png"><img class="img1 size-medium wp-image-155 alignnone" title="Finish Creating New Virtual Machine" src="http://thirderror.com/wp-content/uploads/2008/07/finish_new_vm-300x212.png" alt="Finish Creating New Virtual Machine" width="300" height="212" /></a></p>
<p>You&#8217;re done. Click <strong>Finish.</strong> We&#8217;re now going to configure some important settings for the virtual machine.</p>
<h2>Configuring Settings</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/settings_of_vm.png"><img class="img1 size-medium wp-image-173 alignnone" title="Virtual Machine Settings" src="http://thirderror.com/wp-content/uploads/2008/07/settings_of_vm.png" alt="Virtual Machine Settings" width="298" height="206" /></a></p>
<p>Right-click on your new Ubuntu virtual machine, and click <strong>Settings</strong>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/mount_cd.png"><img class="img1 size-medium wp-image-159 alignnone" title="Mount CD (Virtual Machine Settings)" src="http://thirderror.com/wp-content/uploads/2008/07/mount_cd-299x129.png" alt="Mount CD (Virtual Machine Settings)" width="299" height="129" /></a></p>
<p>Click <strong>CD/DVD-ROM</strong>. Check the <strong>Mount CD/DVD Drive</strong>, then select <strong>ISO Image File</strong>. Click the yellow folder button next to the <strong>ISO Image File</strong> field.</p>
<p>We&#8217;re doing this so when you boot the machine, you can boot into the Ubuntu install CD (Ubuntu does NOT come pre-installed on the virtual machine).</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/add_cd_image.png"><img class="img1 size-medium wp-image-152 alignnone" title="Add New CD/DVD Image" src="http://thirderror.com/wp-content/uploads/2008/07/add_cd_image.png" alt="Add New CD/DVD Image" width="253" height="153" /></a></p>
<p>You&#8217;ll come to the <strong>Virtual Disk Manager</strong>. Click <strong>Add.</strong></p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_ubuntu_iso.png"><img class="img1 size-medium wp-image-170 alignnone" title="Select Ubuntu ISO For Mounting" src="http://thirderror.com/wp-content/uploads/2008/07/select_ubuntu_iso-300x218.png" alt="Select Ubuntu ISO For Mounting" width="300" height="218" /></a></p>
<p>Select the Ubuntu desktop install ISO you have. <a href="http://ubuntu.com">If you don&#8217;t, download it</a>.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/select_ubuntu_mount.png"><img class="img1 size-medium wp-image-181 alignnone" title="Select Ubuntu Install CD to Mount" src="http://thirderror.com/wp-content/uploads/2008/07/select_ubuntu_mount-300x232.png" alt="Select Ubuntu Install CD to Mount" width="300" height="232" /></a></p>
<p>Select the new Ubuntu CD in the window, and click <strong>OK</strong>.</p>
<h2>Enabling Sound</h2>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/enable_sound.png"><img class="img1 size-medium wp-image-154 alignnone" title="Enable Virtual Machine Sound" src="http://thirderror.com/wp-content/uploads/2008/07/enable_sound.png" alt="Enable Virtual Machine Sound" width="284" height="156" /></a></p>
<p>Back in the settings pane, choose <strong>Audio</strong>. For <strong>Host Audio Driver</strong>, select Windows DirectSound. Click <strong>OK </strong>on the settings window.</p>
<p><a href="http://thirderror.com/wp-content/uploads/2008/07/start_vm.png"><img class="img1 size-medium wp-image-175 alignnone" title="Start Virtual Machine" src="http://thirderror.com/wp-content/uploads/2008/07/start_vm.png" alt="Start Virtual Machine" width="295" height="128" /></a></p>
<p>Back in the main VirtualBox window, select Ubuntu and click <strong>Start</strong>. Follow into <a href="http://thirderror.com/installing-ubuntu-804/">part 2 for information on installing Ubuntu on your new virtual machine</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.thirderror.com/run-ubuntu-and-windows-seamlessly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
