<?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>blog.watashii &#187; ubuntu</title>
	<atom:link href="http://blog.watashii.com/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.watashii.com</link>
	<description></description>
	<lastBuildDate>Wed, 02 Nov 2011 02:23:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>Install and Run Ubuntu on VMWare Player</title>
		<link>http://blog.watashii.com/2008/11/run-ubuntu-on-vmware-player/</link>
		<comments>http://blog.watashii.com/2008/11/run-ubuntu-on-vmware-player/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 14:29:12 +0000</pubDate>
		<dc:creator>watashii</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vmdk]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmx]]></category>

		<guid isPermaLink="false">http://blog.watashii.com/?p=87</guid>
		<description><![CDATA[This was my first attempt installing a Linux operating system, and I decided to run it over VMWare on top of my Windows XP system.  Its the perfect way for me to trial an operating system without changes to my system boot-up.  This post shows how I got the Guest OS Ubuntu 8.10 (Desktop) running [...]


Related Posts:<ol><li><a href='http://blog.watashii.com/2009/11/enable-setup-sharing-folders-in-vmware-player-2-0/' rel='bookmark' title='Permanent Link: Enable &#038; Setup Sharing Folders in VMWare Player 2.0+'>Enable &#038; Setup Sharing Folders in VMWare Player 2.0+</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img src="http://blog.watashii.com/wp-content/uploads/2008/11/ubuntu_vmware.png" alt="" title="ubuntu_vmware" width="450" height="365" class="alignnone size-full wp-image-97" /></p>
<p>This was my first attempt installing a Linux operating system, and I decided to run it over VMWare on top of my Windows XP system.  Its the perfect way for me to trial an operating system without changes to my system boot-up.  This post shows how I got the <em>Guest OS</em> Ubuntu 8.10 (Desktop) running on the <em>Host OS</em> Windows XP (32-bit).  And it was fairly easy it turned out.</p>
<p>Source files: [<a href='http://blog.watashii.com/wp-content/uploads/2008/11/ubuntu_watashiicom.zip'>Ubuntu.zip</a>]</p>
<p><span id="more-87"></span></p>
<h3>Step 1 &#8211; Download the ISO Live CD image</h3>
<p><a href="http://www.ubuntu.com/getubuntu/download" target="_blank">Download</a> the Ubuntu ISO / Live CD image, <em>ubuntu-8.10-desktop-i386.iso</em></p>
<h3>Step 2 &#8211; Create the VMWare disk image (.vmdk) file</h3>
<p>This is the hard disk file for VMWare which is initially &lt; 1MB in size and growable to a limit which is setup during creation, 4.7Gb for this example.  There are a various tools/ways to create this file.  The hassle-free way is using <a href="http://www.easyvmx.com/" target="_self">EasyVMX</a>, an online utility to create the necessary files for VMWare.  Select the &#8220;EasyVMX&#8221; flavour and fill in &#8220;Virtual Hardware&#8221;, &#8220;Hard Disk Drives&#8221;, and &#8220;CD-ROM&#8221; as per below.  The other options is up to you to fill in.</p>
<p><img src="http://blog.watashii.com/wp-content/uploads/2008/11/ubuntu_vmware_easyvmx.png" alt="" title="ubuntu_vmware_easyvmx" width="533" height="474" class="alignnone size-full wp-image-96" /></p>
<p>Create the virtual machine and save the zip file that it generates.  You should end up having a bunch of .vmdk and .vmx files.  These all the files you&#8217;ll need for VMWare.  Place them all in the same folder with the iso file.</p>
<p><img class="alignnone size-full wp-image-89" title="ubuntu_vmware_files" src="http://blog.watashii.com/wp-content/uploads/2008/11/ubuntu_vmware_files.png" alt="" width="360" height="288" /></p>
<h3>Step 3 &#8211; Modify the VM descriptor (.vmx) file</h3>
<p>The <em>Ubuntu.vmx</em> file created above may not always work depending on your hardware setup.  In that case, you will need to manually modify it.  In my setup, i mapped the hard disk as the 1st virtual SCSI device, and the ISO download on the 1st virtual IDE device.  This will boot Ubuntu from the Live CD.</p>
<pre><code>#!/usr/bin/vmplayer

# Basic Info
config.version = "8"
virtualHW.version = "4"
displayName = "Ubuntu"
guestOS = "ubuntu"
nvram = "Ubuntu.nvram"
memsize = "320"
MemAllowAutoScaleDown = "FALSE"
MemTrimRate = "-1"
workingDir = "."

# Hard disk
scsi0.present = "TRUE"
scsi0.virtualDev = "lsilogic"
scsi0:0.present = "TRUE"
scsi0:0.filename = "Ubuntu.vmdk"
scsi0:0.mode = "independent-persistent"
scsi0:0.redo = ""

# CD-ROM
ide0:0.present = "TRUE"
ide0:0.startConnected = "TRUE"
ide0:0.autodetect = "TRUE"

ide0:0.fileName = "ubuntu-8.10-desktop-i386.iso"
ide0:0.deviceType = "cdrom-image"

#ide0:0.fileName = "auto detect"
#ide0:0.deviceType = "cdrom-raw"

# Other devices
floppy0.present = "FALSE"
usb.present = "TRUE"
sound.present = "TRUE"
sound.virtualDev = "es1371"
ethernet0.present = "TRUE"
ethernet0.addressType = "generated"</code></pre>
<p>Run the VMWare player, and open <em>Ubuntu.vmx</em>, and it should boot from the Ubuntu Live CD.  You can run the Live CD without modifications to the virtual SCSI hard disk device (non-persistance), or you can install Ubuntu on the hard disk (persistance).</p>
<p><img class="alignnone size-full wp-image-90" title="ubuntu_vmware_player01" src="http://blog.watashii.com/wp-content/uploads/2008/11/ubuntu_vmware_player01.png" alt="" width="450" height="373" /></p>
<h3>Step 4 &#8211; Install Ubuntu on the Virtual SCSI Device (Optional)</h3>
<p>On the Ubuntu bootup welcome screen, select &#8216;Install Ubuntu&#8217;.</p>
<p><img class="alignnone size-full wp-image-93" title="ubuntu_vmware_player03" src="http://blog.watashii.com/wp-content/uploads/2008/11/ubuntu_vmware_player03.png" alt="" width="450" height="365" /></p>
<p>Go through the installation steps and select the entire SCSI disk for the Ubuntu installation partition.</p>
<p><img class="alignnone size-full wp-image-94" title="ubuntu_vmware_player04" src="http://blog.watashii.com/wp-content/uploads/2008/11/ubuntu_vmware_player04.png" alt="" width="450" height="365" /></p>
<p>After installation, the ISO image is no longer needed.  To prevent the Live CD from booting up again, the <em>Ubuntu.vmx</em> file should be modified by commenting out the lines:</p>
<pre><code>#ide0:0.fileName = "ubuntu-8.10-desktop-i386.iso"
#ide0:0.deviceType = "cdrom-image"</code></pre>
<p>And un-commenting the following lines:</p>
<pre><code>ide0:0.fileName = "auto detect"
ide0:0.deviceType = "cdrom-raw"</code></pre>
<p>The next time VMWare loads Ubuntu it should boot over the SCSI hard disk with the virtual CD-ROM mounted.</p>


<p>Related Posts:<ol><li><a href='http://blog.watashii.com/2009/11/enable-setup-sharing-folders-in-vmware-player-2-0/' rel='bookmark' title='Permanent Link: Enable &#038; Setup Sharing Folders in VMWare Player 2.0+'>Enable &#038; Setup Sharing Folders in VMWare Player 2.0+</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.watashii.com/2008/11/run-ubuntu-on-vmware-player/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

