<?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>Make Tech Easier &#187; virtual machine</title>
	<atom:link href="http://maketecheasier.com/tag/virtual-machine/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Fri, 20 Nov 2009 13:39:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How To Shrink Your Virtualbox VM And Free Up Space For Your Hard Disk</title>
		<link>http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06</link>
		<comments>http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06#comments</comments>
		<pubDate>Mon, 06 Apr 2009 13:43:49 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[shrink]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[VirtualBox]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=3885</guid>
		<description><![CDATA[While using Virtualbox, one thing that I have found is that the size of the VM (a file with .VDI extension) expands over time. If you have selected the &#8220;Dynamically Expanding Storage&#8221; option when first creating the VM, you will find that the file size expands whenever you install new applications in the VM. That [...]<p><strong><a href="http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06">How To Shrink Your Virtualbox VM And Free Up Space For Your Hard Disk</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/clean-up-and-regain-your-disk-space-with-bleachbit/2009/03/13' rel='bookmark' title='Permanent Link: Clean Up And Regain Your Disk Space With Bleachbit'>Clean Up And Regain Your Disk Space With Bleachbit</a></li><li><a href='http://maketecheasier.com/5-reasons-why-you-should-use-virtualbox-over-vmware-server/2008/07/21' rel='bookmark' title='Permanent Link: 5 Reasons Why You Should Use VirtualBox Over VMware Server'>5 Reasons Why You Should Use VirtualBox Over VMware Server</a></li><li><a href='http://maketecheasier.com/share-your-virtualbox-vm-across-different-os/2008/09/30' rel='bookmark' title='Permanent Link: Share Your Virtualbox VM Across Different OS'>Share Your Virtualbox VM Across Different OS</a></li><li><a href='http://maketecheasier.com/treesize-free-makes-disk-space-analysis-a-breeze/2008/12/10' rel='bookmark' title='Permanent Link: TreeSize Free Makes Disk Space Analysis a Breeze'>TreeSize Free Makes Disk Space Analysis a Breeze</a></li><li><a href='http://maketecheasier.com/enable-3d-acceleration-in-virtualbox/2009/05/21' rel='bookmark' title='Permanent Link: How To Enable 3D Acceleration In VirtualBox'>How To Enable 3D Acceleration In VirtualBox</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-3890" title="shrink-virtualbox" src="http://images.maketecheasier.com/2009/04/shrink-virtualbox.jpg" alt="shrink-virtualbox" width="260" height="160" />While using Virtualbox, one thing that I have found is that the size of the VM (a file with .VDI extension) expands over time. If you have selected the &#8220;<em>Dynamically Expanding Storage</em>&#8221; option when first creating the VM, you will find that the file size expands whenever you install new applications in the VM. That is perfectly normal. However, when you uninstall or delete applications in the VM, the file size does not shrink or return to its previous size. That is to say, if you are constantly installing and uninstalling applications in your VM, the VDI file could be taking up more space than it is actually using.</p>
<p>If you have a great deal of hard disk space to spare, you can simply ignore this. However, if you find yourself always running short of hard disk space, you might want to consider shrinking the VM and free up unused disk space.</p>
<p>This tutorial will go through the steps to shrink your Virtualbox VM.</p>
<p>It doesn&#8217;t matter if you are using Windows/Linux host. The instructions for a Windows and Linux guest are slightly different though. (I have not tried this on a Mac host yet. Theoretically it should work, but do it at your own risk.)</p>
<h3>For Windows guest</h3>
<p>If you are using Windows guest, do the following:</p>
<ul>
<li>Uninstall all unnecessary applications</li>
<li>Perform a hard disk defragmentation. If you are using WinXP, you You can access the inbuilt disk fragmenter from <em>Start -&gt; All Programs -&gt; Accessories -&gt; System Tools -&gt; Disk Defragmenter</em>.</li>
</ul>
<p>Download <a href="http://technet.microsoft.com/en-us/sysinternals/bb897443.aspx" target="_blank">sdelete</a> and extract it to your desktop.</p>
<p>Open a command prompt and <em>cd</em> to the sdelete directory. Type in the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">sdelete <span style="color: #660033;">-c</span> c:<span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>This will add zeroes to all the free space in your C: drive.</p>
<p>Once it is done, shutdown the VM.</p>
<h3>For Linux guest</h3>
<p>If you are using Linux guest (this tutorial assumes you are using Ubuntu and is running on ext2/ext3 filesytem. It does not work on ext4), here is what you need to do:</p>
<ul>
<li>Remove any unused applications.</li>
<li><a href="http://maketecheasier.com/8-ways-to-maintain-a-clean-lean-ubuntu-machine/2008/10/07" target="_blank">Clean up your Linux</a> VM</li>
</ul>
<p>Install zerofree</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">apt-get</span> zerofree</pre></div></div>

<p>Restart and boot your Linux VM into Recovery mode. (This is generally the second option in the Grub boot up screen.)</p>
<p>In the root shell prompt, type</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">df</span></pre></div></div>

<p>This will display all the available filesystem in your OS. Record down the filesystem where the main directory lies. (it should be in <em>/dev/sdaX</em> or <em>/dev/hdaX</em> format)</p>
<p><img class="alignnone size-full wp-image-3887" title="vdi-filesystem" src="http://images.maketecheasier.com/2009/04/vdi-filesystem.jpg" alt="vdi-filesystem" width="577" height="151" /></p>
<p>Mount the filesystem in read-only mode with the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-n</span> <span style="color: #660033;">-o</span> remount,ro <span style="color: #660033;">-t</span> ext3 <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sda1 <span style="color: #000000; font-weight: bold;">/</span></pre></div></div>

<p>replacing the <em>/dev/sda1</em> with the filesytem info that you have recorded just now.</p>
<p>Next, type the following command to zero out all the free space.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">zerofree <span style="color: #000000; font-weight: bold;">/</span>dev<span style="color: #000000; font-weight: bold;">/</span>sda1</pre></div></div>

<p>Once again, replace the <em>/dev/sda1</em> with your own filesystem info.</p>
<p>Once you are done, shutdown the Linux VM:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">shutdown <span style="color: #660033;">-h</span> now</pre></div></div>

<h3>Shrinking the VM</h3>
<p>Now that we are done with clearing up the VM and zero out all the free space, it&#8217;s time to shrink the file size using the <em>VboxManage</em> command.</p>
<p>If you are still using the older Virtualbox 2.0.x version, you can easily shrink the hard disk with the following command:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">VboxManage modifyvdi <span style="color: #000000; font-weight: bold;">/</span>path<span style="color: #000000; font-weight: bold;">/</span>to<span style="color: #000000; font-weight: bold;">/</span>your<span style="color: #000000; font-weight: bold;">/</span>VM.vdi compact</pre></div></div>

<p>If you have upgraded your Virtualbox to the 2.1.x version, you will find that the above command will no longer work. There is a bug in the software that disable the use of the <em>modifyhd</em> command. An alternative solution is to use the <em>clonehd</em> command to creat a smaller clone copy of the original VM.</p>
<p>In your terminal (or command prompt), type the following:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">VboxManage clonehd name-of-original-vm.vdi name-of-clone-vm.vdi</pre></div></div>

<p>This will create a clone of the original VM with the name that you have specified in the command above.</p>
<h3>Result</h3>
<p>After shrinking my VM, I manage to shave 45% off the size of the oirginal VM and free up a whopping 4.5GB of hard disk space to store my other stuff.</p>
<p>The original VDI: 10GB</p>
<p><img class="alignnone" src="http://images.maketecheasier.com/2009/04/vdi-original.jpg" alt="" width="538" height="361" /></p>
<p>The cloned VDI: 5.5GB</p>
<p><img class="alignnone" src="http://images.maketecheasier.com/2009/04/vdi-resize.jpg" alt="" width="538" height="361" /></p>
<h3>Importing the clone VM into Virtualbox</h3>
<p>The whole process is not finished yet. You still need to import the clone VM into Virtualbox and remove/delete the original VM from your system.</p>
<p>In your Virtualbox console, click on the <em>New</em> button.</p>
<p>Follow the instructions to create a new VM. When it reaches the screen to ask you to choose the hard disk, select <em>Existing</em>.</p>
<p><img class="alignnone" src="http://images.maketecheasier.com/2009/04/vdi-new-vm.jpg" alt="vdi-new-vm" width="520" height="464" /></p>
<p>In the Virtual media manager window, click <em>Add</em> to add the newly cloned VM.</p>
<p><img class="alignnone" src="http://images.maketecheasier.com/2009/04/vdi-add-vm.jpg" alt="" width="577" height="448" /></p>
<p>Highlight the newly added VM and click <em>Select</em>.</p>
<p>Back to the Hard disk selection window, you should see your new VM in the dropdown selection. Click on <em>Next</em> to finish up the import.</p>
<p>Once everything is in place, run the newly added VM to make sure that it is working fine.</p>
<p>On the main Virtualbox screen, highlight  the original VM and go to <em>Machine -&gt; Delete</em>. This will remove the entry from the console.</p>
<p>Go to <em>File -&gt; Virtual Media Manager</em>. Highlight the original VM and click the <em>Remove</em> button. When prompt if you want to keep the file, select <em>Delete</em>. This will delete the vdi file from your system.</p>
<p>That&#8217;s it.</p>
<p><!--adsense#468x60--></p>
<p><strong><a href="http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06">How To Shrink Your Virtualbox VM And Free Up Space For Your Hard Disk</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/clean-up-and-regain-your-disk-space-with-bleachbit/2009/03/13' rel='bookmark' title='Permanent Link: Clean Up And Regain Your Disk Space With Bleachbit'>Clean Up And Regain Your Disk Space With Bleachbit</a></li><li><a href='http://maketecheasier.com/5-reasons-why-you-should-use-virtualbox-over-vmware-server/2008/07/21' rel='bookmark' title='Permanent Link: 5 Reasons Why You Should Use VirtualBox Over VMware Server'>5 Reasons Why You Should Use VirtualBox Over VMware Server</a></li><li><a href='http://maketecheasier.com/share-your-virtualbox-vm-across-different-os/2008/09/30' rel='bookmark' title='Permanent Link: Share Your Virtualbox VM Across Different OS'>Share Your Virtualbox VM Across Different OS</a></li><li><a href='http://maketecheasier.com/treesize-free-makes-disk-space-analysis-a-breeze/2008/12/10' rel='bookmark' title='Permanent Link: TreeSize Free Makes Disk Space Analysis a Breeze'>TreeSize Free Makes Disk Space Analysis a Breeze</a></li><li><a href='http://maketecheasier.com/enable-3d-acceleration-in-virtualbox/2009/05/21' rel='bookmark' title='Permanent Link: How To Enable 3D Acceleration In VirtualBox'>How To Enable 3D Acceleration In VirtualBox</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>How to Create a Ubuntu Virtual Machine With QEMU Manager</title>
		<link>http://maketecheasier.com/how-to-create-a-ubuntu-virtual-machine-with-qemu-manager/2008/12/28</link>
		<comments>http://maketecheasier.com/how-to-create-a-ubuntu-virtual-machine-with-qemu-manager/2008/12/28#comments</comments>
		<pubDate>Sun, 28 Dec 2008 13:39:18 +0000</pubDate>
		<dc:creator>fasil</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[QEMU]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[virtualization]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=1754</guid>
		<description><![CDATA[QEMU is a CPU and process emulator which allows you to create virtual machines that can run on any platform. QEMU manager uses this emulator to virtualize Linux on windows systems. In this post we show you how to create an Ubuntu virtual machine on Windows using QEMU manager.
Summary of steps involved and software needed:
1. [...]<p><strong><a href="http://maketecheasier.com/how-to-create-a-ubuntu-virtual-machine-with-qemu-manager/2008/12/28">How to Create a Ubuntu Virtual Machine With QEMU Manager</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/create-virtual-machine-of-windows-os/2009/11/12' rel='bookmark' title='Permanent Link: How to Create a Virtual Machine of Your Existing Windows Operating System'>How to Create a Virtual Machine of Your Existing Windows Operating System</a></li><li><a href='http://maketecheasier.com/sync-ipod-touch-with-win-xp-vm-in-ubuntu-intrepid/2008/12/16' rel='bookmark' title='Permanent Link: How To Sync iPod Touch With Win XP Virtual Machine In Ubuntu Intrepid'>How To Sync iPod Touch With Win XP Virtual Machine In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/share-your-virtualbox-vm-across-different-os/2008/09/30' rel='bookmark' title='Permanent Link: Share Your Virtualbox VM Across Different OS'>Share Your Virtualbox VM Across Different OS</a></li><li><a href='http://maketecheasier.com/resize-create-partitions-with-gnome-partition-editor-gparted/2009/01/06' rel='bookmark' title='Permanent Link: How To Resize And Create Partitions With Gnome Partition Editor (GParted)'>How To Resize And Create Partitions With Gnome Partition Editor (GParted)</a></li><li><a href='http://maketecheasier.com/install-ubuntu-in-windows/2009/07/28' rel='bookmark' title='Permanent Link: How to Install Ubuntu in Windows'>How to Install Ubuntu in Windows</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="qemu_logo" src="http://images.maketecheasier.com/2008/12/qemu_logo.png" alt="qemu_logo" width="268" height="74" /><a title="QEMU Emulator" href="http://www.qemu.org" target="_blank">QEMU</a> is a CPU and process emulator which allows you to create virtual machines that can run on any platform. QEMU manager uses this emulator to virtualize Linux on windows systems. In this post we show you how to create an Ubuntu virtual machine on Windows using QEMU manager.</p>
<p><strong>Summary of steps involved and software needed:</strong></p>
<p>1. Download QEMU manager and Install on windows platform</p>
<p>2. Create Linux Virtual Machine and Install Ubuntu on virtual hard disk</p>
<p>3. Run the Virtual hard disk from windows platform.</p>
<p>4. QEMU manager and Ubuntu <a href="http://www.ubuntu.com/GetUbuntu/download" target="_blank">ISO</a> image are needed as software requirements.</p>
<p><strong>Steps to Install QEMU manager and Create Virtual Machine</strong></p>
<p>1. Download <a title="QEMU Manager" href="http://www.davereyn.co.uk/" target="_blank">QEMU manager</a> and install on Windows platform. Screen shot of QEMU manager with virtual machines are shown below.</p>
<p><a rel="lightbox" href="http://images.maketecheasier.com/2008/12/qemu-manager.png"><img class="aligncenter size-medium wp-image-1755" src="http://images.maketecheasier.com/2008/12/qemu-manager-300x256.png" alt="qemu-manager" width="300" height="256" /></a><br />
<small>Click to enlarge</small></p>
<p>2. Create a new Ubuntu Virtual machine by clicking <em>Options -&gt; Create New Virtual Machine</em> or by clicking the &#8216;+&#8217; sign.</p>
<p><img class="aligncenter size-full wp-image-1756" src="http://maketecheasier.com/wp-content/uploads/2008/12/create-virtual-machine.png" alt="create-virtual-machine" width="318" height="162" /></p>
<p>3. After creating the virtual machine, configure the virtual machine by setting the memory size required and choose the location of the ISO image which is to be installed into the virtual machine. Set the boot option as shown below</p>
<p><img class="aligncenter size-full wp-image-1757" src="http://maketecheasier.com/wp-content/uploads/2008/12/virtual-machine.png" alt="virtual-machine" width="599" height="297" /></p>
<p><img class="aligncenter size-full wp-image-1758" src="http://maketecheasier.com/wp-content/uploads/2008/12/virtual-disk.png" alt="virtual-disk" width="522" height="343" /></p>
<p>4. Once boot parameters are configured properly, click the &#8216;<em>Run</em>&#8216; virtual machine icon to launch the virtual machine.</p>
<p><img class="aligncenter size-full wp-image-1759" src="http://maketecheasier.com/wp-content/uploads/2008/12/lauch-vm.png" alt="lauch-vm" width="366" height="123" /></p>
<p>5. QEMU will run the emulator and boot Ubuntu from the ISO image. Follow the onscreen instructions to install Ubuntu</p>
<p><img class="aligncenter size-full wp-image-1760" src="http://images.maketecheasier.com/2008/12/qemu-start.jpg" alt="qemu-start" width="580" height="435" /></p>
<p><img class="aligncenter size-medium wp-image-1761" src="http://images.maketecheasier.com/2008/12/installing-ubuntu.jpg" alt="installing-ubuntu" width="580" height="435" /></p>
<p>6. Proceed with the standard Ubuntu installation procedure by choosing the keyboard map, region settings as per your preference.</p>
<p><img class="aligncenter size-full wp-image-1764" src="http://images.maketecheasier.com/2008/12/install-ubuntu-menu.jpg" alt="install-ubuntu-menu" width="580" height="435" /></p>
<p>7. Select <em>Guided</em> partition option and click <em>Forward</em> to proceed further</p>
<p><img class="alignnone size-full wp-image-1762" src="http://images.maketecheasier.com/2008/12/ubuntu-partition.jpg" alt="partitionining virtual machine" width="580" height="395" /></p>
<p>8. Enter your login option and proceed to install Ubuntu to the virtual hard disk.</p>
<p><img class="alignnone size-full wp-image-1763" src="http://images.maketecheasier.com/2008/12/login-information.jpg" alt="login-information" width="580" height="386" /></p>
<p><img class="aligncenter size-full wp-image-1765" src="http://images.maketecheasier.com/2008/12/virtual-disk-partition.png" alt="virtual-disk-partition" width="560" height="243" /></p>
<p>9. Once the installation is completed, you will be able to run the virtual machine from the virtual hardisk. Make sure you select the correct boot parameters .</p>
<p><img class="alignnone size-full wp-image-1766" src="http://images.maketecheasier.com/2008/12/complete-ubutu.png" alt="complete-ubuntu" width="580" height="422" /></p>
<p>Note : The keyboard shortcut to switch focus and return back to Windows is <em>CTRL +ALT</em> .</p>
<p><strong>Some of the advantages of using QEMU:</strong></p>
<p>1. Easy to use and run with minimal system memory, say 512MB RAM.</p>
<p>2. There are option that allows you to create VMware virtual disk.</p>
<p>3. Plenty of options provided for optimal virtualization.</p>
<p>As for the disadvantage, there is no option for you to save the state of the Virtual machine  or to pause the virtual machine and shut the system.</p>
<p>Have you tried QEMU before? How do you find it?</p>
<p><!--adsense#468x60--></p>
<p><strong><a href="http://maketecheasier.com/how-to-create-a-ubuntu-virtual-machine-with-qemu-manager/2008/12/28">How to Create a Ubuntu Virtual Machine With QEMU Manager</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/create-virtual-machine-of-windows-os/2009/11/12' rel='bookmark' title='Permanent Link: How to Create a Virtual Machine of Your Existing Windows Operating System'>How to Create a Virtual Machine of Your Existing Windows Operating System</a></li><li><a href='http://maketecheasier.com/sync-ipod-touch-with-win-xp-vm-in-ubuntu-intrepid/2008/12/16' rel='bookmark' title='Permanent Link: How To Sync iPod Touch With Win XP Virtual Machine In Ubuntu Intrepid'>How To Sync iPod Touch With Win XP Virtual Machine In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/share-your-virtualbox-vm-across-different-os/2008/09/30' rel='bookmark' title='Permanent Link: Share Your Virtualbox VM Across Different OS'>Share Your Virtualbox VM Across Different OS</a></li><li><a href='http://maketecheasier.com/resize-create-partitions-with-gnome-partition-editor-gparted/2009/01/06' rel='bookmark' title='Permanent Link: How To Resize And Create Partitions With Gnome Partition Editor (GParted)'>How To Resize And Create Partitions With Gnome Partition Editor (GParted)</a></li><li><a href='http://maketecheasier.com/install-ubuntu-in-windows/2009/07/28' rel='bookmark' title='Permanent Link: How to Install Ubuntu in Windows'>How to Install Ubuntu in Windows</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/how-to-create-a-ubuntu-virtual-machine-with-qemu-manager/2008/12/28/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Share Files In VirtualBox With Vista Guest And Ubuntu Host</title>
		<link>http://maketecheasier.com/share-files-in-virtualbox-between-vista-guest-ubuntu-host/2008/11/12</link>
		<comments>http://maketecheasier.com/share-files-in-virtualbox-between-vista-guest-ubuntu-host/2008/11/12#comments</comments>
		<pubDate>Wed, 12 Nov 2008 08:32:20 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[windows vista]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=1079</guid>
		<description><![CDATA[For some of you who have setup Windows Vista as the guest VM in your Ubuntu Virtualbox, you might have some difficulties in getting the Vista guest to access the shared folder in your Ubuntu host. If you are having this problem, here is the way to mount the shared folder on your Vista guest.
First [...]<p><strong><a href="http://maketecheasier.com/share-files-in-virtualbox-between-vista-guest-ubuntu-host/2008/11/12">How To Share Files In VirtualBox With Vista Guest And Ubuntu Host</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/sharing-files-between-ubuntu-host-and-virtual-machines/2007/12/17' rel='bookmark' title='Permanent Link: Sharing Files Between Ubuntu Host and Virtual Machines'>Sharing Files Between Ubuntu Host and Virtual Machines</a></li><li><a href='http://maketecheasier.com/virtualbox-fix-mouse-integration-issue-in-ubuntu-intrepid-guest/2009/01/26' rel='bookmark' title='Permanent Link: Virtualbox: Fix Mouse Integration Issue In Ubuntu Intrepid Guest'>Virtualbox: Fix Mouse Integration Issue In Ubuntu Intrepid Guest</a></li><li><a href='http://maketecheasier.com/upgrading-to-virtualbox-21-in-ubuntu-intrepid/2009/01/01' rel='bookmark' title='Permanent Link: Upgrading to Virtualbox 2.1 In Ubuntu Intrepid'>Upgrading to Virtualbox 2.1 In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/share-your-virtualbox-vm-across-different-os/2008/09/30' rel='bookmark' title='Permanent Link: Share Your Virtualbox VM Across Different OS'>Share Your Virtualbox VM Across Different OS</a></li><li><a href='http://maketecheasier.com/enable-3d-acceleration-in-virtualbox/2009/05/21' rel='bookmark' title='Permanent Link: How To Enable 3D Acceleration In VirtualBox'>How To Enable 3D Acceleration In VirtualBox</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="microsoft_vista-logo" src="http://images.maketecheasier.com/2008/11/microsoft_vista-logo.jpg" alt="microsoft_vista-logo" width="180" height="180"/>For some of you who have setup Windows Vista as the guest VM in your Ubuntu Virtualbox, you might have some difficulties in getting the Vista guest to access the shared folder in your Ubuntu host. If you are having this problem, here is the way to mount the shared folder on your Vista guest.</p>
<p>First of all, make sure you have already installed both VirtualBox and Windows Vista guest. If you have not, here is the <a href="http://maketecheasier.com/how-to-install-windows-in-ubuntu-hardy-with-virtualbox/2008/07/02">complete installation guide</a>.</p>
<p>Secondly, make sure you have updated your VirtualBox to the latest version (2.0.4). There are some issues in the earlier version which will cause the mounting to fail.</p>
<p>In your Ubuntu machine, open up Virtualbox (<em>Applications -&gt; System Tools -&gt; virtualBox</em>).</p>
<p>Highlight the Vista VM entry (make sure that it is in <em>Powered off</em> state) and click on the <em>Settings</em> icon at the top.</p>
<p><img class="alignnone size-full wp-image-1084" title="vista-setting" src="http://images.maketecheasier.com/2008/11/vista-setting.jpg" alt="Virtualbox Vista Settings" width="335" height="298" /></p>
<p>On the left, click on the <em>Network</em>. On the right, make sure that the <em>Enable Network Adaptor</em> and <em>Cable Connected</em> are checked.</p>
<p><img class="alignnone size-full wp-image-1081" title="vb-setting-network" src="http://images.maketecheasier.com/2008/11/vb-setting-network.jpg" alt="Virtualbox Network setting" width="580" height="455" /></p>
<p>On the left, click on the <em>Shared Folders</em>. Then, click on the <img class="alignnone size-full wp-image-1080" title="virtualbox-add-folder" src="http://images.maketecheasier.com/2008/11/virtualbox-add-folder.jpg" alt="virtualbox add share folder" width="30" height="25" /> icon on the far right.</p>
<p>Select the folder that you want to use as a share point. Give it a name.</p>
<p><img class="alignnone size-full wp-image-1082" title="vb-share-path" src="http://images.maketecheasier.com/2008/11/vb-share-path.jpg" alt="Virtualbox add share path" width="314" height="213" /></p>
<p><img class="alignnone size-full wp-image-1083" title="vb-share" src="http://images.maketecheasier.com/2008/11/vb-share.jpg" alt="Virtualbox share folder" width="580" height="361" /></p>
<p>Click <em>OK</em> to close the Settings window.</p>
<p>Boot up your Vista VM.</p>
<p>Install the guest addition. (Skip this step if you have already done so)</p>
<p><img class="alignnone size-full wp-image-1085" title="vb-guest-addition" src="http://images.maketecheasier.com/2008/11/vb-guest-addition.jpg" alt="virtualbox-guest-addition" width="485" height="334" /></p>
<p>Restart the Vista VM.</p>
<p>Open your Windows Explorer, click on the <em>Map Network Drive</em></p>
<p><img class="alignnone size-full wp-image-1087" title="vista-map-network" src="http://images.maketecheasier.com/2008/11/vista-map-network.jpg" alt="vista-map-network" width="580" height="351" /></p>
<p>In the Folder input text, enter</p>
<p class="codeblock">\\vboxsvr\sharename</p>
<p>where <em>sharename</em> is the name of the share folder that you add just now. Make sure that the <em>Reconnect at logon</em> is checked. Click <em>Finish</em></p>
<p><img class="alignnone size-full wp-image-1088" title="vista-map-drive" src="http://images.maketecheasier.com/2008/11/vista-map-drive.jpg" alt="vista-map-drive" width="580" height="419" /></p>
<p>You should now see the shared folder mounted as a network drive.</p>
<p><img class="alignnone size-full wp-image-1089" title="vista-windows-explorer" src="http://images.maketecheasier.com/2008/11/vista-windows-explorer.jpg" alt="vista-windows-explorer" width="580" height="455" /></p>
<p>That&#8217;s it.</p>
<p><!--adsense#468x60--></p>
<p><strong><a href="http://maketecheasier.com/share-files-in-virtualbox-between-vista-guest-ubuntu-host/2008/11/12">How To Share Files In VirtualBox With Vista Guest And Ubuntu Host</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/sharing-files-between-ubuntu-host-and-virtual-machines/2007/12/17' rel='bookmark' title='Permanent Link: Sharing Files Between Ubuntu Host and Virtual Machines'>Sharing Files Between Ubuntu Host and Virtual Machines</a></li><li><a href='http://maketecheasier.com/virtualbox-fix-mouse-integration-issue-in-ubuntu-intrepid-guest/2009/01/26' rel='bookmark' title='Permanent Link: Virtualbox: Fix Mouse Integration Issue In Ubuntu Intrepid Guest'>Virtualbox: Fix Mouse Integration Issue In Ubuntu Intrepid Guest</a></li><li><a href='http://maketecheasier.com/upgrading-to-virtualbox-21-in-ubuntu-intrepid/2009/01/01' rel='bookmark' title='Permanent Link: Upgrading to Virtualbox 2.1 In Ubuntu Intrepid'>Upgrading to Virtualbox 2.1 In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/share-your-virtualbox-vm-across-different-os/2008/09/30' rel='bookmark' title='Permanent Link: Share Your Virtualbox VM Across Different OS'>Share Your Virtualbox VM Across Different OS</a></li><li><a href='http://maketecheasier.com/enable-3d-acceleration-in-virtualbox/2009/05/21' rel='bookmark' title='Permanent Link: How To Enable 3D Acceleration In VirtualBox'>How To Enable 3D Acceleration In VirtualBox</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/share-files-in-virtualbox-between-vista-guest-ubuntu-host/2008/11/12/feed</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>5 Reasons Why You Should Use VirtualBox Over VMware Server</title>
		<link>http://maketecheasier.com/5-reasons-why-you-should-use-virtualbox-over-vmware-server/2008/07/21</link>
		<comments>http://maketecheasier.com/5-reasons-why-you-should-use-virtualbox-over-vmware-server/2008/07/21#comments</comments>
		<pubDate>Mon, 21 Jul 2008 04:21:16 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=596</guid>
		<description><![CDATA[Ever since I started using Ubuntu two years back, I have been an avid user of VMware server. It  fascinated me to a great extent that I could actually run an OS inside an OS. Recently, I tried out VirtualBox, another virtualization software like VMware server, and I was greatly impressed by it. Even [...]<p><strong><a href="http://maketecheasier.com/5-reasons-why-you-should-use-virtualbox-over-vmware-server/2008/07/21">5 Reasons Why You Should Use VirtualBox Over VMware Server</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/upgrading-to-virtualbox-21-in-ubuntu-intrepid/2009/01/01' rel='bookmark' title='Permanent Link: Upgrading to Virtualbox 2.1 In Ubuntu Intrepid'>Upgrading to Virtualbox 2.1 In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/enable-3d-acceleration-in-virtualbox/2009/05/21' rel='bookmark' title='Permanent Link: How To Enable 3D Acceleration In VirtualBox'>How To Enable 3D Acceleration In VirtualBox</a></li><li><a href='http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06' rel='bookmark' title='Permanent Link: How To Shrink Your Virtualbox VM And Free Up Space For Your Hard Disk'>How To Shrink Your Virtualbox VM And Free Up Space For Your Hard Disk</a></li><li><a href='http://maketecheasier.com/share-your-virtualbox-vm-across-different-os/2008/09/30' rel='bookmark' title='Permanent Link: Share Your Virtualbox VM Across Different OS'>Share Your Virtualbox VM Across Different OS</a></li><li><a href='http://maketecheasier.com/review-of-opera-unite-putting-a-web-server-in-a-browser/2009/06/20' rel='bookmark' title='Permanent Link: Review of Opera Unite: Putting a Web Server In a Browser'>Review of Opera Unite: Putting a Web Server In a Browser</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>Ever since I started using Ubuntu two years back, I have been an avid user of <a href="http://www.vmware.com/" target="_blank">VMware server</a>. It  fascinated me to a great extent that I could actually run an OS inside an OS. Recently, I tried out <a href="http://www.virtualbox.org" target="_blank">VirtualBox</a>, another virtualization software like VMware server, and I was greatly impressed by it. Even though I love VMware server, I can&#8217;t deny the fact that VirtualBox actually runs faster and smoother, with less crashes.  Here is my top 5 reasons why VirtualBox is better than VMware server.</p>
<h3>1) File size</h3>
<p>How long do you need to download a 20MB file with a broadband connection? A snap of finger! Yes, that is how small VirtualBox is: slighly over 20MB where you can download it in a snap. VMware server? About 102MB, well&#8230;not too long either, mayber after you have finished your tea session.</p>
<h3>2) Installation</h3>
<p>Ubuntu users can simply install VirtualBox from the repository. Simply open the <em>Synaptic Package Manager</em>, check the VirtualBox and click <em>Apply</em> to install. For other Linux disro, there is also debian and rpm package available for download. For VMware server, only if you like to compile and build the source code from command line.</p>
<h3>3) Speed Boost</h3>
<p>The real advantage of VirtualBox over VMware server lies in its performance. VirtualBox apparently runs faster than VMware server. A timed experiment of an installation of Windows XP as the guest OS took 20 mins in VirtualBox and 35 mins on VMware server. A similar test on the booting time of the guest OS also shows favor to VirtualBox with a timing of 45secs compared to 1min 39 secs on VMware server.</p>
<h3>4) Remote File Sharing</h3>
<p>When I was using VMware server, I have to install and configure Samba on my Ubuntu host so as to access the files in my guest OS. In VirtualBox, the remote file sharing feature is built right in the package. Setting up remote file sharing is easy and you only need to do it once: point the file path to the directory that you want to share.</p>
<h3>5) Integration with Host OS</h3>
<p>In VirtualBox, there is this mode call &#8216;<em>seamless mode</em>&#8216; where you can integrate the guest OS with the host OS. With this mode on, you can access the applications from the guest OS right from the host&#8217;s desktop. There is no need for you to traverse between the guest and the host. VMware server does not have this feature, although you can find the &#8216;<em>unity</em>&#8216; mode that does the same thing in VMware Workstation.</p>
<h3><em>My Feel&#8230;</em></h3>
<p>I have not tested VirtualBox on a server setting, thus I can&#8217;t comment on its performance for corporate use. However, for personal use, I would strongly recommend VirtualBox over VMware server because of its faster speed and user-friendliness.</p>
<p><p><script type="text/javascript"><!--
google_ad_client = "pub-8765285789552883";
/* MTE body ad300x250, created 5/17/09 */
google_ad_slot = "3980792036";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p></p>
<p><strong><a href="http://maketecheasier.com/5-reasons-why-you-should-use-virtualbox-over-vmware-server/2008/07/21">5 Reasons Why You Should Use VirtualBox Over VMware Server</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/upgrading-to-virtualbox-21-in-ubuntu-intrepid/2009/01/01' rel='bookmark' title='Permanent Link: Upgrading to Virtualbox 2.1 In Ubuntu Intrepid'>Upgrading to Virtualbox 2.1 In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/enable-3d-acceleration-in-virtualbox/2009/05/21' rel='bookmark' title='Permanent Link: How To Enable 3D Acceleration In VirtualBox'>How To Enable 3D Acceleration In VirtualBox</a></li><li><a href='http://maketecheasier.com/shrink-your-virtualbox-vm/2009/04/06' rel='bookmark' title='Permanent Link: How To Shrink Your Virtualbox VM And Free Up Space For Your Hard Disk'>How To Shrink Your Virtualbox VM And Free Up Space For Your Hard Disk</a></li><li><a href='http://maketecheasier.com/share-your-virtualbox-vm-across-different-os/2008/09/30' rel='bookmark' title='Permanent Link: Share Your Virtualbox VM Across Different OS'>Share Your Virtualbox VM Across Different OS</a></li><li><a href='http://maketecheasier.com/review-of-opera-unite-putting-a-web-server-in-a-browser/2009/06/20' rel='bookmark' title='Permanent Link: Review of Opera Unite: Putting a Web Server In a Browser'>Review of Opera Unite: Putting a Web Server In a Browser</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/5-reasons-why-you-should-use-virtualbox-over-vmware-server/2008/07/21/feed</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Sharing Files Between Ubuntu Host and Virtual Machines</title>
		<link>http://maketecheasier.com/sharing-files-between-ubuntu-host-and-virtual-machines/2007/12/17</link>
		<comments>http://maketecheasier.com/sharing-files-between-ubuntu-host-and-virtual-machines/2007/12/17#comments</comments>
		<pubDate>Mon, 17 Dec 2007 04:26:22 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[virtual machine]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/sharing-files-between-ubuntu-host-and-virtual-machines/2007/12/17</guid>
		<description><![CDATA[After installing Windows Vista on Ubuntu using VMware, one of the problems that you&#8217;re likely to face is that your virtual machine has completely no access to your host folder. This means you cannot view/edit your favorite photos (or any other files) in your Vista VM. Come to think of it, what is the use [...]<p><strong><a href="http://maketecheasier.com/sharing-files-between-ubuntu-host-and-virtual-machines/2007/12/17">Sharing Files Between Ubuntu Host and Virtual Machines</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/installing-kubuntu-in-ubuntu-with-vmware-server/2008/02/05' rel='bookmark' title='Permanent Link: Installing (K)Ubuntu In Ubuntu With VMware Server'>Installing (K)Ubuntu In Ubuntu With VMware Server</a></li><li><a href='http://maketecheasier.com/share-files-in-virtualbox-between-vista-guest-ubuntu-host/2008/11/12' rel='bookmark' title='Permanent Link: How To Share Files In VirtualBox With Vista Guest And Ubuntu Host'>How To Share Files In VirtualBox With Vista Guest And Ubuntu Host</a></li><li><a href='http://maketecheasier.com/how-to-install-windows-vista-in-ubuntu-gutsy-using-vmware/2007/11/29' rel='bookmark' title='Permanent Link: How To Install Windows Vista In Ubuntu Gutsy Using VMware'>How To Install Windows Vista In Ubuntu Gutsy Using VMware</a></li><li><a href='http://maketecheasier.com/upgrading-to-virtualbox-21-in-ubuntu-intrepid/2009/01/01' rel='bookmark' title='Permanent Link: Upgrading to Virtualbox 2.1 In Ubuntu Intrepid'>Upgrading to Virtualbox 2.1 In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/how-to-install-windows-in-ubuntu-hardy-with-virtualbox/2008/07/02' rel='bookmark' title='Permanent Link: How to Install Windows In Ubuntu Hardy with VirtualBox'>How to Install Windows In Ubuntu Hardy with VirtualBox</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>After <a href="http://maketecheasier.com/how-to-install-windows-vista-in-ubuntu-gutsy-using-vmware/2007/11/29">installing Windows Vista on Ubuntu using VMware</a>, one of the problems that you&#8217;re likely to face is that your virtual machine has completely no access to your host folder. This means you cannot view/edit your favorite photos (or any other files) in your Vista VM. Come to think of it, what is the use of installing a VM if you can&#8217;t access your local hard disk where all your documents are kept?</p>
<p>Luckily, there are several solutions to this.</p>
<p><strong>1) Transfer files using a USB drive.</strong></p>
<p>Open up your VMware Server Console. Make sure that your VM is powered off (not in suspend mode). Click <em>&#8220;Edit Virtual Machine Setting&#8221;</em>. Under the <em>Hardware</em> tab, click <em>Add</em> -&gt; <em>USB Controller</em>. This will install the USB driver and allow you to connect up to two USB devices to your VM.</p>
<p>Insert in your USB disk and power on your VM. Once the VM has finished loading. On the menu bar, Click <em>VM</em> -&gt; <em>Removable device</em> -&gt; <em>USB Device</em> -&gt; <em>your USB drive name</em>.</p>
<p>Done. You have now access to your USB disk from your VM. A point to note is that you can&#8217;t access your USB disk from the host desktop and the VM at the same time. If you are adding USB disk in your VM, the host will automatically dismount your USB disk. Thus, if you want to transfer files between host and VM, you will need to transfer files from host to USB disk, then dismount USB disk from host and add removable device in VM.</p>
<p><strong>2) Setting up networking via Samba</strong></p>
<p>All virtual machines use shared networking to gain network access from the host. Thus, if configured properly, you can create a shared network to share files between the host and the VM. Here is a detailed instruction to <a href="http://2tap.com/2007/04/22/sharing-files-between-a-windows-guest-and-ubuntu-host-using-vmware-and-samba/" title="sharing file via samba" target="_blank">configure file sharing via samba.</a></p>
<p><strong>3) Buying license software</strong><br />
If you rely heavily on your VM for work, then you want want to consider buying a licensed VMware. This paid software enables you to access your virtual machine from the host desktop and you can even drag and drop your files from your VM to anywhere in the host without any further configuration. Parallels (another paid VM solution) also offers this service.</p>
<p><p><script type="text/javascript"><!--
google_ad_client = "pub-8765285789552883";
/* MTE body ad300x250, created 5/17/09 */
google_ad_slot = "3980792036";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p></p>
<p><strong><a href="http://maketecheasier.com/sharing-files-between-ubuntu-host-and-virtual-machines/2007/12/17">Sharing Files Between Ubuntu Host and Virtual Machines</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/installing-kubuntu-in-ubuntu-with-vmware-server/2008/02/05' rel='bookmark' title='Permanent Link: Installing (K)Ubuntu In Ubuntu With VMware Server'>Installing (K)Ubuntu In Ubuntu With VMware Server</a></li><li><a href='http://maketecheasier.com/share-files-in-virtualbox-between-vista-guest-ubuntu-host/2008/11/12' rel='bookmark' title='Permanent Link: How To Share Files In VirtualBox With Vista Guest And Ubuntu Host'>How To Share Files In VirtualBox With Vista Guest And Ubuntu Host</a></li><li><a href='http://maketecheasier.com/how-to-install-windows-vista-in-ubuntu-gutsy-using-vmware/2007/11/29' rel='bookmark' title='Permanent Link: How To Install Windows Vista In Ubuntu Gutsy Using VMware'>How To Install Windows Vista In Ubuntu Gutsy Using VMware</a></li><li><a href='http://maketecheasier.com/upgrading-to-virtualbox-21-in-ubuntu-intrepid/2009/01/01' rel='bookmark' title='Permanent Link: Upgrading to Virtualbox 2.1 In Ubuntu Intrepid'>Upgrading to Virtualbox 2.1 In Ubuntu Intrepid</a></li><li><a href='http://maketecheasier.com/how-to-install-windows-in-ubuntu-hardy-with-virtualbox/2008/07/02' rel='bookmark' title='Permanent Link: How to Install Windows In Ubuntu Hardy with VirtualBox'>How to Install Windows In Ubuntu Hardy with VirtualBox</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/sharing-files-between-ubuntu-host-and-virtual-machines/2007/12/17/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
