<?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>UH.LEE.KA &#187; VirtualBox</title>
	<atom:link href="http://www.uhleeka.com/blog/tag/virtualbox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.uhleeka.com/blog</link>
	<description>If you think nobody cares about you, try missing a few car payments.</description>
	<lastBuildDate>Wed, 25 Aug 2010 01:35:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>VirtualBox 3.1 &#8211; Install Windows XP Guest on Ubuntu 9.04 Host</title>
		<link>http://www.uhleeka.com/blog/2009/12/virtualbox-3-1-install-windows-xp-guest-on-ubuntu-9-04-host/</link>
		<comments>http://www.uhleeka.com/blog/2009/12/virtualbox-3-1-install-windows-xp-guest-on-ubuntu-9-04-host/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 03:50:54 +0000</pubDate>
		<dc:creator>uhleeka</dc:creator>
				<category><![CDATA[Installs and Configs]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Windows XP]]></category>

		<guid isPermaLink="false">http://www.uhleeka.com/blog/?p=472</guid>
		<description><![CDATA[VirtualBox 3.1 significantly changed the way that harddisks, dvd/cd drives and floppies are mounted. The following steps are to install Windows XP as a guest on an Ubuntu 9.04 host with a IntelAhci SATA controller. Make sure you download the Windows XP Intel SATA Drivers and unzip to extract &#8220;F32.IMA&#8221;. sudo -i To begin the [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;width:93px;height:93px;margin:8px 8px 16px 0px;border:solid 1px #036;background-repeat:no-repeat;background-position:center center;background-image:url('http://www.uhleeka.com/blog/wp-content/uploads/2009/02/virtualbox.png');"></div>
<p>VirtualBox 3.1 significantly changed the way that harddisks, dvd/cd drives and floppies are mounted.  The following steps are to install Windows XP as a guest on an Ubuntu 9.04 host with a IntelAhci SATA controller.</p>
<p>Make sure you download the <a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=1809&#038;DwnldID=14796&#038;strOSs=44&#038;OSFullName=Windows*%20XP%20Professional&#038;lang=eng" target="_blank">Windows XP Intel SATA Drivers</a> and unzip to extract &#8220;F32.IMA&#8221;.<br />
<span id="more-472"></span></p>
<div style="clear:both;height:1px;overflow:hidden;"><!-- --></div>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>sudo -i</pre></div></div>

<p>To begin the install process, do the following steps:</p>
<ul>
<li>Create a new VirtualMachine.</li>
<li>Add three controllers (sata, ide, floppy).</li>
<li>Attach the Intel SATA floppy and the Windows XP dvd iso.</li>
<li>Set the memory, boot order and bridged network connection.</li>
</ul>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>VBoxManage createhd --filename /srv/virtualbox/harddisks/CHANGEME.vdi --size 20480 \
    --variant Standard
VBoxManage createvm --name CHANGEME --ostype "WindowsXP" --register \
    --basefolder /srv/virtualbox/machines
VBoxManage storagectl CHANGEME --name "SATA Controller" --add sata \
    --controller IntelAhci
VBoxManage storageattach CHANGEME --storagectl "SATA Controller" \
    --port 0 --device 0 --type hdd \
    --medium /srv/virtualbox/harddisks/CHANGEME.vdi
VBoxManage storagectl CHANGEME --name "IDE Controller" --add ide
VBoxManage storagectl CHANGEME --name "Floppy Controller" --add floppy
VBoxManage storageattach CHANGEME --storagectl "IDE Controller" \
    --port 0 --device 0 --type dvddrive \
    --medium "/srv/virtualbox/isos/WindowsXP_sp3.iso"
VBoxManage storageattach CHANGEME --storagectl "Floppy Controller" \
    --port 0 --device 0 --type fdd --medium /srv/virtualbox/floppy/F32.IMA
VBoxManage modifyvm CHANGEME --memory 1024 --nic1 bridged --bridgeadapter1 eth0 \
    --boot1 dvd --boot2 disk --boot3 none --boot4 none</pre></div></div>

<p>Start the VM using a specified port (8888) for VRDP.  You will then be able to attach via RDP to the Host IP on the specified port.</p>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>VBoxHeadless --startvm CHANGEME --vrdpport 8888 --vrdp on &</pre></div></div>

<p>When the Windows XP installation begins, Hit F6 during setup and select the <strong>Intel(R) 82801HEM/HBM SATA AHCI Controller (Mobile ICH8M-E/M)</strong> driver.  Proceed with the Windows XP install until reboot is required.  </p>
<p>At some point, post install, you may optionally take the following steps:</p>
<ul>
<li>Eject the Windows XP dvd iso.</li>
<li>Attach (and then install) the VirtualBox Guest Additions dvd iso.</li>
<li>Eject the Intel SATA floppy.  Note: it can only be ejected while the machine is powered off; it should be ejected because it will otherwise be locked, such that other VM&#8217;s cannot use it.</li>
<li>Change the boot order.</li>
</ul>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>VBoxManage storageattach CHANGEME --storagectl "IDE Controller" \
    --port 0 --device 0 --medium none
VBoxManage storageattach CHANGEME --storagectl "IDE Controller" \
    --port 0 --device 0 --type dvddrive \
    --medium /usr/share/virtualbox/VBoxGuestAdditions.iso 
VBoxManage storageattach CHANGEME --storagectl "FLOPPY Controller" \
    --port 0 --device 0 --type fdd --medium none
VBoxManage modifyvm CHANGEME --boot1 disk --boot2 none</pre></div></div>

<p>Don&#8217;t forget to run windows updates!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.uhleeka.com/blog/2009/12/virtualbox-3-1-install-windows-xp-guest-on-ubuntu-9-04-host/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>VirtualBox BSOD p3.sys</title>
		<link>http://www.uhleeka.com/blog/2009/10/virtualbox-bsod-p3-sys/</link>
		<comments>http://www.uhleeka.com/blog/2009/10/virtualbox-bsod-p3-sys/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 05:29:31 +0000</pubDate>
		<dc:creator>uhleeka</dc:creator>
				<category><![CDATA[Installs and Configs]]></category>
		<category><![CDATA[BSOD]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://www.uhleeka.com/blog/2009/10/virtualbox-bsod-p3-sys/</guid>
		<description><![CDATA[After converting a physical machine to .vmdk via VMWare Converter, I got a BSOD indicating that there was a problem with p3.sys when trying to boot. The Windows XP system was running on a PII 600mHz Dell Optiplex from the year 2000. To fix, boot in Safe Mode and run the following at a command [...]]]></description>
			<content:encoded><![CDATA[<div style="float:left;width:93px;height:93px;margin:8px 8px 16px 0px;border:solid 1px #036;background-repeat:no-repeat;background-position:center center;background-image:url('http://www.uhleeka.com/blog/wp-content/uploads/2009/02/virtualbox.png');"></div>
<p>After converting a physical machine to .vmdk via VMWare Converter, I got a BSOD indicating that there was a problem with <strong>p3.sys</strong> when trying to boot.  The Windows XP system was running on a PII 600mHz Dell Optiplex from the year 2000.</p>
<div style="clear:both;"></div>
<p>To fix, boot in Safe Mode and run the following at a command prompt:</p>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>sc config p3 start= disabled</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.uhleeka.com/blog/2009/10/virtualbox-bsod-p3-sys/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Install Windows XP Guest on Ubuntu 9.04 Host</title>
		<link>http://www.uhleeka.com/blog/2009/10/install-windows-xp-guest-on-ubuntu-9-04-host/</link>
		<comments>http://www.uhleeka.com/blog/2009/10/install-windows-xp-guest-on-ubuntu-9-04-host/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 04:46:26 +0000</pubDate>
		<dc:creator>uhleeka</dc:creator>
				<category><![CDATA[Installs and Configs]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://www.uhleeka.com/blog/?p=416</guid>
		<description><![CDATA[Create a Windows XP VirtualBox guest from scratch using a SATA harddrive. Download the Windows XP Intel SATA Drivers and unzip to extract F32.IMA Hit F6 during setup to select the Intel(R) 82801HEM/HBM SATA AHCI Controller (Mobile ICH8M-E/M) sudo -i VBoxManage createhd --filename /srv/virtualbox/harddisks/CHANGEME.vdi --size 20480 \ --variant Standard VBoxManage createvm --name CHANGEME --ostype "WindowsXP" [...]]]></description>
			<content:encoded><![CDATA[<p>Create a Windows XP VirtualBox guest from scratch using a SATA harddrive.  </p>
<ul>
<li>Download the <a href="http://downloadcenter.intel.com/Detail_Desc.aspx?agr=Y&#038;ProductID=1809&#038;DwnldID=14796&#038;strOSs=44&#038;OSFullName=Windows*%20XP%20Professional&#038;lang=eng" target="_blank">Windows XP Intel SATA Drivers</a> and unzip to extract F32.IMA</li>
<li>Hit F6 during setup to select the <strong>Intel(R) 82801HEM/HBM SATA AHCI Controller (Mobile ICH8M-E/M)</strong></li>
</ul>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>sudo -i</pre></div></div>


<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>VBoxManage createhd --filename /srv/virtualbox/harddisks/CHANGEME.vdi --size 20480 \
    --variant Standard
VBoxManage createvm --name CHANGEME --ostype "WindowsXP" --register \
    --basefolder /srv/virtualbox/machines
VBoxManage modifyvm CHANGEME --memory 1024 \
    --boot1 dvd --boot2 disk --boot3 none --boot4 none \
    --sata on --sataportcount 1 \
    --sataport1 /srv/virtualbox/harddisks/CHANGEME.vdi \
    --dvd /srv/virtualbox/iso/WindowsXP_sp3.iso \
    --floppy /srv/virtualbox/floppy/F32.IMA \
    --nic1 bridged --bridgeadapter1 eth0</pre></div></div>

<p><span id="more-416"></span>Start the VM without a gui (note: the ampersand executes the command and returns you to the prompt)</p>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>VBoxHeadless --startvm CHANGEME &</pre></div></div>

<p>Start the VM without a gui and without VRDP (after you have loaded the os and configured remote desktop accessability).</p>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>VBoxHeadless --startvm CHANGEME --vrdp off &</pre></div></div>

<p>Stop the VM in a saved state</p>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>VBoxManage controlvm CHANGEME savestate</pre></div></div>

<p>Power off the VM (like pulling the plug)</p>

<div class="uhleeka_codebox"><div class="uhleeka_codebox_in"><pre>VBoxManage controlvm CHANGEME poweroff</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.uhleeka.com/blog/2009/10/install-windows-xp-guest-on-ubuntu-9-04-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

