<?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>Spirit of Change &#187; Virtualization</title>
	<atom:link href="http://vavai.net/category/server/virtualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://vavai.net</link>
	<description>Tutorial About Blog, Linux &#038; Open Source Application</description>
	<lastBuildDate>Fri, 30 Dec 2011 08:32:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Installing VirtualBox VBoxHeadless &amp; PHPVirtualBox on openSUSE 12.1 Minimalis</title>
		<link>http://vavai.net/2011/12/installing-virtualbox-vboxheadless-phpvirtualbox-on-opensuse-12-1-minimalis/</link>
		<comments>http://vavai.net/2011/12/installing-virtualbox-vboxheadless-phpvirtualbox-on-opensuse-12-1-minimalis/#comments</comments>
		<pubDate>Fri, 02 Dec 2011 01:23:44 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Minimal]]></category>
		<category><![CDATA[VboxHeadlless]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=1355</guid>
		<description><![CDATA[VirtualBox is one of the tools that are used for Desktop Virtualization : running an OS within the OS. VirtualBox usually installed on the operating system that already has the VirtualBox GUI to manage it. But, how to manage VirtualBox without VirtualBox GUI? VBoxHeadless is the answer if we want to install VirtualBox on minimal [...]]]></description>
			<content:encoded><![CDATA[<p>VirtualBox is one of the tools that are used for Desktop Virtualization : running an OS within the OS. VirtualBox usually installed on the operating system that already has the VirtualBox GUI to manage it. But, how to manage VirtualBox without VirtualBox GUI? VBoxHeadless is the answer if we want to install VirtualBox on minimal Linux server and manage it via Browser.</p>
<p>I&#8217;m using openSUSE 12.1 64 bit on this tutorial but the steps can also be applied to earlier versions (11.x) as well as on SLES 11 SP1. I also use VirtualBox for All distributions binary package, although for openSUSE we can also use an RPM-binary package.</p>
<p><a href="http://vavai.net/wp-content/uploads/2011/12/virtualbox.jpg"><img class="alignnone size-full wp-image-1360" title="virtualbox" src="http://vavai.net/wp-content/uploads/2011/12/virtualbox.jpg" alt="" width="392" height="263" /></a></p>
<p><span id="more-1355"></span><br />
Lets get started :</p>
<ol>
<li>Install openSUSE 12.1 Minimal Server (Text Mode)</li>
<li>Installing package for VirtualBox Kernel Modul
<pre class="brush: bash">zypper in kernel-source make gcc gcc-c++ pam-devel kernel-syms SDL</pre>
</li>
<li>Download VirtualBox binary package with the Extension Pack from <a href="http://www.virtualbox.org">www.virtualbox.org</a>
<pre class="brush: bash">
cd /opt/
wget -c http://download.virtualbox.org/virtualbox/4.1.6/VirtualBox-4.1.6-74727-Linux_amd64.run
wget -c http://download.virtualbox.org/virtualbox/4.1.6/Oracle_VM_VirtualBox_Extension_Pack-4.1.6-74713.vbox-extpack
</pre>
</li>
<li>Install Virtualbox
<pre class="brush: bash">
chmod +x VirtualBox-4.1.6-74727-Linux_amd64.run
./VirtualBox-4.1.6-74727-Linux_amd64.run
</pre>
</li>
<li>Install the Extension Pack
<pre class="brush: bash">
chmod +x Oracle_VM_VirtualBox_Extension_Pack-4.1.6-74713.vbox-extpack
VBoxManage extpack install Oracle_VM_VirtualBox_Extension_Pack-4.1.6-74713.vbox-extpack
</pre>
</li>
<li>Create a user for VirtualBox web access
<pre class="brush: bash">
useradd vbox
passwd vbox
New Password : vbox
Reenter New Password : vbox
</pre>
</li>
<li>Create a VirtualBox web configuration on /etc/default/
<pre class="brush: bash">
vi /etc/default/virtualbox
</pre>
<p>with the following contents :</p>
<pre class="brush: bash">
VBOXWEB_USER=vbox
</pre>
</li>
<li>Install LAMPP server and php5-soap package by using zypper
<pre class="brush: bash">
zypper in -t pattern &#039;lamp_server&#039;
zypper in php5-soap
</pre>
</li>
<li>Edit /etc/apache2/default-server.conf and replace <strong>Options None</strong> to <strong>Options ALL</strong> so Apache will display the contents of the directory index
<pre class="brush: bash">
vi /etc/apache2/default-server.conf
</pre>
</li>
<li>Download latest phpvirtualbox package
<pre class="brush: bash">
cd /opt
wget http://phpvirtualbox.googlecode.com/files/phpvirtualbox-4.1-5.zip
unzip phpvirtualbox-4.1-5.zip -d /srv/www/htdocs
cd /srv/www/htdocs
mv phpvirtualbox-4.1-5 phpvirtualbox
cd phpvirtualbox
</pre>
</li>
<li>Rename <strong>config.php-example</strong> to <strong>config.php</strong> and modify the contents to an appropriate configuration
<pre class="brush: bash">
mv config.php-example config.php
vi config.php
</pre>
<pre class="brush: bash">
var $username = &#039;vbox&#039;;
var $password = &#039;vbox&#039;;
var $location = &#039;http://192.168.1.111:18083/&#039;;
var $consoleHost = &#039;192.168.1.111&#039;;
</pre>
<p>Note : 192.168.1.111 is my VBoxHeadless Server</li>
<li>Restart web server and run the VirtualBox services
<pre class="brush: bash">
service apache2 restart
vboxwebsrv --host 192.168.1.111 -b
</pre>
</li>
<li>Open a browser and go to http://VBOXHeadLess-Address/phpvirtualbox, login with the default user: admin with password : admin</li>
</ol>
<p><a href="http://vavai.net/wp-content/uploads/2011/12/vavai-vboxheadless-1.jpeg"><img class="alignnone size-full wp-image-1361" title="vavai-vboxheadless-1" src="http://vavai.net/wp-content/uploads/2011/12/vavai-vboxheadless-1.jpeg" alt="" width="443" height="253" /></a></p>
<p>On the client side, access the VirtualBox VM by using rdesktop or krdc with following examples :</p>
<p><strong>rdesktop 192.168.1.111:3389</strong></p>
<p>Here is the view of VM on VBoxHeadless, running <a href="http://vavai.net/2011/11/suse-linux-enterprise-server-11-sp1-minimal-server-appliance/">Minimal Server Appliance</a>.</p>
<p><strong><a href="http://vavai.net/wp-content/uploads/2011/12/vavai-vboxheadless-2.jpeg"><img class="alignnone size-full wp-image-1362" title="vavai-vboxheadless-2" src="http://vavai.net/wp-content/uploads/2011/12/vavai-vboxheadless-2.jpeg" alt="" width="436" height="339" /></a><br />
</strong></p>
<p>Note :</p>
<ol>
<li>If you encounter an error message: <strong><em>PHP does not have the SOAP extension enabled</em></strong>, install php5-soap package from openSUSE 11.2 OSS repository</li>
<li>If the Console does not open or error, power off the virtual OS then click on Settings -&gt; Select Display -&gt; Remote Display -&gt; Checklist on the Enable Server and give the port on the Server Port, for example 3389 -&gt; OK then run again. If you have more than one virtual OS,  do the similar process and change Server Port to 3390 and so on</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2011/12/installing-virtualbox-vboxheadless-phpvirtualbox-on-opensuse-12-1-minimalis/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SUSE Linux Enterprise Server 11 SP1 Minimal Server Appliance</title>
		<link>http://vavai.net/2011/11/suse-linux-enterprise-server-11-sp1-minimal-server-appliance/</link>
		<comments>http://vavai.net/2011/11/suse-linux-enterprise-server-11-sp1-minimal-server-appliance/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 07:07:05 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Zimbra]]></category>
		<category><![CDATA[SLES]]></category>
		<category><![CDATA[SUSE Studio]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=1311</guid>
		<description><![CDATA[I&#8217;m currently working as an IT system integrator on a small company based on Bekasi, a small town near Jakarta Indonesia. The company founded by me and my young brother and covering on various jobs regarding server setting, implementation, maintenance and workshop/training. At first, installing server is an interesting jobs but after similar works on [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m currently working as an IT system integrator on a <a href="http://www.excellent.co.id">small company</a> based on Bekasi, a small town near Jakarta Indonesia. The company founded by me and my young brother and covering on various jobs regarding server setting, implementation, maintenance and workshop/training.</p>
<p>At first, installing server is an interesting jobs but after similar works on some client, I feel bored with the process, ie :</p>
<ol>
<li>Virtualization Server (VMWare, KVM, OpenVZ, Xen, etc) Installation</li>
<li>Server OS installation</li>
<li>Application Installation</li>
<li>Customizing the configuration</li>
</ol>
<p>I think I could reduce the time for processing the above task by making an appliance using SUSE Studio. An appliance will contains my default server setup and all of packages required by application. The results are <a href="http://susestudio.com/a/veav1Y/minimal-server-appliance"><strong>Minimal Server Appliance</strong></a>.</p>
<p><span id="more-1311"></span></p>
<p><a href="http://vavai.net/wp-content/uploads/2011/11/vavai-minimal-server-appliance.jpeg"><img class="size-full wp-image-1312 alignnone" title="vavai-minimal-server-appliance" src="http://vavai.net/wp-content/uploads/2011/11/vavai-minimal-server-appliance.jpeg" alt="" width="480" height="360" /></a></p>
<p>Minimal Server Appliance based on SUSE Linux Enterprise Server 11 SP1 64 bit Just Enough Operating System (JeOS). It has all minimal server package with DRBD+Heartbeat from High Availability Extension (HAE) Addons.</p>
<p>The Appliance was successfully tested to running Zimbra Collaboration Suite 7.×.x (latest testing with Zimbra 7.1.3) on VMWare ESXi, Proxmox VE, VirtualBox and KVM Virtualization. Use the following user name and password credentials to make modification to the appliance configuration :</p>
<p>User Name : root<br />
Password : opensuse</p>
<p>By using this application I can reduce the installation time to just a few minutes only. If you wish to make some modification, feel free to clone the appliance and making your own.</p>
<p>Notes from latest releases :</p>
<p>001 : Change Appliance Size to 50 GB (Dynamic Size)<br />
002 : Add netcat package, required by Zimbra zmconfigd<br />
003 : Add Indonesian Local Mirror for SLES 11 SP1 64 bit<br />
004 : Add imapsync package for mail migration and synchronization<br />
005 : Add nmap package for port tracking<br />
006 : Add opendkim package for Zimbra DKIM signature<br />
007 : Add ntp and yast2-ntp-client for time synchronization<br />
008 : Add sqlite3 package, required by Zimbra 7.×.x</p>
<p>I&#8217;m intended and mostly using the appliance for Zimbra mail server deployment on top of SLES 11 SP1 64 bit but the appliance itself could be setting up as web server, database server, proxy server, file server, etc.</p>
<p>Minimal Server Appliance available on ISO LiveCD, Preload ISO for physical server deployment and Virtual Image (OVF and VMX extension) for virtual server deployment.</p>
<p>Please let me know if you found any bugs regarding the appliance.</p>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2011/11/suse-linux-enterprise-server-11-sp1-minimal-server-appliance/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Oracle VirtualBox 3.2.6 on openSUSE 11.3</title>
		<link>http://vavai.net/2010/08/oracle-virtualbox-3-2-6-on-opensuse-11-3/</link>
		<comments>http://vavai.net/2010/08/oracle-virtualbox-3-2-6-on-opensuse-11-3/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 10:05:04 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=1231</guid>
		<description><![CDATA[Installing VirtualBox on openSUSE 11.3 has similar method as on openSUSE 11.2 with only a few changes : VirtualBox on openSUSE 11.3 need openSSL and PNG library as dependencies package. I&#8217;m using VirtualBox 3.2.6 64 bit on openSUSE 11.3 64 bit on this article. You may also use this guide for installing VirtualBox 32 bit, [...]]]></description>
			<content:encoded><![CDATA[<p><a class="highslide" onclick="return vz.expand(this)" href="http://vavai.net/wp-content/uploads/2010/08/virtualbox.jpg"><img class="alignnone size-full wp-image-1247" title="virtualbox" src="http://vavai.net/wp-content/uploads/2010/08/virtualbox.jpg" alt="" width="480" height="320" /></a></p>
<p>Installing VirtualBox on openSUSE 11.3 has similar method as on <a href="http://vavai.net/2009/12/21/installing-virtualbox-3-1-2-on-opensuse-11-2/">openSUSE 11.2</a> with only a few changes : VirtualBox on openSUSE 11.3 need openSSL and PNG library as dependencies package.</p>
<p>I&#8217;m using VirtualBox 3.2.6 64 bit on  openSUSE 11.3 64 bit on this article. You may also use this guide for installing VirtualBox 32 bit, there is no major difference between 2 version.</p>
<ol>
<li>Install required library and package : <strong>kernel-source,  make, gcc, gcc-c++, pam-devel, kernel-syms </strong>by using YAST |  Software | Software Management or  Zypper  package manager :
<pre class="brush: cpp">
zypper in kernel-source make gcc gcc-c++ pam-devel kernel-syms
</pre>
<p>`<a class="highslide" onclick="return vz.expand(this)" href="http://vavai.com/wp-content/uploads/2010/07/install-virtualbox1.jpeg"><img class="alignnone size-full wp-image-1729" title="install-virtualbox1" src="http://vavai.com/wp-content/uploads/2010/07/install-virtualbox1.jpeg" alt="" width="432" height="309" /></a></p>
<p><span id="more-1231"></span></li>
<li>Download <a href="http://www.virtualbox.org/wiki/Linux_Downloads">VirtualBox binary  installer</a>. Choose an appropriate version whether 32 bit or 64 bit depending your processor.</li>
<li>Install VirtualBox using Zypper with the following command (I&#8217;m using /opt as base folder, adjust with your download folder) :
<pre class="brush: cpp">
cd /opt
zypper in ./VirtualBox-3.2-3.2.6_63112_openSUSE111-1.x86_64.rpm
</pre>
<p>`<a class="highslide" onclick="return vz.expand(this)" href="http://vavai.com/wp-content/uploads/2010/07/install-virtualbox2.jpeg"><img class="alignnone size-full wp-image-1730" title="install-virtualbox2" src="http://vavai.com/wp-content/uploads/2010/07/install-virtualbox2.jpeg" alt="" width="432" height="437" /></a></li>
<li>Add your user as VirtualBox group member by using  YAST | Security &amp; User | User &amp; Group Management. Choose user name, click Edit and then move to Details tab and give a mark on vboxusers checkbox, cdrom and disk.</li>
<li>Logout re-login so new group will be updated to your profile</li>
<li>Run  VirtualBox from system menu or by using konsole/terminal  : VirtualBox (case sensitive)</li>
</ol>
<p><strong>NOTE :</strong></p>
<ol>
<li>Installation process may failed while compiling VirtualBox module for kernel. Check the version of your running kernel and kernel source using uname  -r and zypper if kernel-source as below  :
<pre class="brush: cpp">
vavai:/home/vavai # zypper if kernel-source
Loading repository data...
Reading installed packages...Information for package kernel-source:

Repository: @System
Name: kernel-source
Version: 2.6.34-12.3
Arch: noarch
Vendor: openSUSE
Installed: Yes
Status: up-to-date
Installed Size: 334.4 MiB
Summary: The Linux Kernel Sources
Description:
Linux kernel sources with many fixes and improvements.

Source Timestamp: 2010-06-29 02:39:08 +0200
GIT Revision: 7a744773dd7c2539b7757435d0108cb701dd0165
GIT Branch: openSUSE-11.3
</pre>
<pre class="brush: cpp">
vavai:/home/vavai # uname -r
2.6.34-12-desktop
</pre>
<p>See that I&#8217;m using same version for both running kernel and kernel-source. If you found different version, try to updating the lower version to be same version as another one.</li>
<li>VirtualBox will automatically remove old package if found previous installation without deleting your existing image but it&#8217;s highly recommended to create a backup before installing and updating VirtualBox.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2010/08/oracle-virtualbox-3-2-6-on-opensuse-11-3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>KVM Virtualization on openSUSE 11.3</title>
		<link>http://vavai.net/2010/08/kvm-virtualization-on-opensuse-11-3/</link>
		<comments>http://vavai.net/2010/08/kvm-virtualization-on-opensuse-11-3/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 03:50:33 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[KVM]]></category>
		<category><![CDATA[Xen Hypervisor]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=1216</guid>
		<description><![CDATA[It&#8217;s looks like that I&#8217;m off and hiatus from blog for a while so it&#8217;s time to starting a new article and hope it&#8217;s not for the last one . KVM (Kernel-based Virtual Machine) is currently popular terms among the virtualization technology. What makes it popular and become the strong competitor for Xen Hypervisor are [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s looks like that I&#8217;m off and hiatus from blog for a while so it&#8217;s time to starting a new  article and hope it&#8217;s not for the last one <img src='http://vavai.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' />  .</p>
<p>KVM (<em>Kernel-based Virtual Machine) </em>is currently popular terms among the virtualization technology. What makes it popular and become the strong competitor for Xen Hypervisor are the technology behind KVM and Red Hat decision to move focus on KVM instead of Xen for next release Red Hat Enterprise Linux 6.0. What makes KVM gains an advantage on the technology side are the inclusion KVM module into Linux kernel so we do not need a patch or different kernel as we need for Xen Hypervisor. Beside the two virtualization technology above, those are various virtualization technology running on Linux : VMWare, VirtualBox, OpenVZ etc but Xen and KVM are quite popular among others.</p>
<p>SUSE Linux Enterprise Server 11 was added KVM beside Xen Hypervisor on Service Pack 1 release. openSUSE 11.3 released on July 15, 2010 also append  KVM as Virtualization package beside the default Xen Hypervisor. Following article covers KVM installation on openSUSE 11.3 64 bit (the 32 bit installation should be similar).</p>
<p><span id="more-1216"></span></p>
<ol>
<li>Install KVM module by using YAST or  Zypper.  Install following package : <strong>kvm, libvirt, libvirt-python, virt-utils, yast2-vm, virt-manager, virt-viewer, bridge-utils, vm-install</strong>. We may also install virtualization stuff by using <strong>YAST | Virtualization | Install Hypervisor and Tools</strong> and then adds KVM package within  YAST | Software | Software Management, but the second tips will also installing  Xen Hypervisor  <img src='http://vavai.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  . SLES 11 SP1 has different way to install KVM by asking which Virtualization technology should be install if we choose second tips. I don&#8217;t know why openSUSE take different method to install and not as simple as SLES 11 SP1 has.</li>
<li>Activate Virtual Daemon. Open <strong>YAST |  System | System Services (runlevel)</strong> and mark <strong>libvirtd</strong> as enable services<br />
`<br />
<a class="highslide" onclick="return vz.expand(this)" href="http://vavai.com/wp-content/uploads/2010/08/kvm-runlevel.jpeg"><img class="alignnone size-full wp-image-1887" title="kvm-runlevel" src="http://vavai.com/wp-content/uploads/2010/08/kvm-runlevel.jpeg" alt="" width="473" height="475" /></a></li>
<li>Open YAST | Virtualization | Virtual Machine Manager<br />
`<br />
<a class="highslide" onclick="return vz.expand(this)" href="http://vavai.com/wp-content/uploads/2010/08/kvm-virt-manager.jpeg"><img class="alignnone size-full wp-image-1888" title="kvm-virt-manager" src="http://vavai.com/wp-content/uploads/2010/08/kvm-virt-manager.jpeg" alt="" width="480" height="319" /></a></li>
<li>If Virtual Machine Manager has no  &#8220;localhost (QEMU) option, add the KVM instance by clicking  menu <strong>File | Add Connection</strong> and choose KVM/QEMU and then click <strong>Connect</strong><br />
`<br />
<a class="highslide" onclick="return vz.expand(this)" href="http://vavai.com/wp-content/uploads/2010/08/kvm1.jpeg"><img class="alignnone size-full wp-image-1889" title="kvm1" src="http://vavai.com/wp-content/uploads/2010/08/kvm1.jpeg" alt="" width="353" height="445" /></a></li>
<li>After that, we may create a new virtual appliance by click  <strong>New</strong> and follows the  wizard.<br />
<a class="highslide" onclick="return vz.expand(this)" href="http://vavai.com/wp-content/uploads/2010/08/kvm2.jpeg"><img class="alignnone size-full wp-image-1890" title="kvm2" src="http://vavai.com/wp-content/uploads/2010/08/kvm2.jpeg" alt="" width="463" height="388" /></a></li>
</ol>
<p>Managing KVM on openSUSE/SLES seems to be similar as managing Xen Hypervisor because both virtualization using same front-end application (libvirt) on openSUSE/SLES YAST. KVM need a motherboard supporting virtualization extensions as it&#8217;s feature, e.g : Intel VT (Virtualization technology) or AMD-V. To check whether your motherboard supporting virtualization extension, run the following command on konsole/terminal :</p>
<p>Intel VT :</p>
<pre class="brush: cpp">
grep --color vmx /proc/cpuinfo
</pre>
<p><a class="highslide" onclick="return vz.expand(this)" href="http://vavai.net/wp-content/uploads/2010/08/virtualization-extension.jpeg"><img class="alignnone size-full wp-image-1217" title="virtualization-extension" src="http://vavai.net/wp-content/uploads/2010/08/virtualization-extension.jpeg" alt="" width="480" height="239" /></a></p>
<p>AMD-V</p>
<pre class="brush: cpp">
grep --color svm /proc/cpuinfo
</pre>
<p>Some motherboard disable virtualization extension by default so you must check BIOS setting to see whether virtualization extension has been activated or not.</p>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2010/08/kvm-virtualization-on-opensuse-11-3/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Need a Feedback : Zimbra Appliance on openSUSE</title>
		<link>http://vavai.net/2010/01/need-a-feedback-zimbra-appliance-on-opensuse/</link>
		<comments>http://vavai.net/2010/01/need-a-feedback-zimbra-appliance-on-opensuse/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 09:28:53 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Appliance]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[Zimbra]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=1057</guid>
		<description><![CDATA[I&#8217;m thinking about a project for a week end. Updating Zimbra Appliance to the latest version seems to be nice but I need a few feedback about the specification of appliance. On previous version, I&#8217;m using Zimbra 5.0.18 on openSUSE 11.1 JeOS. It has minimum specification but it works pretty well (please let me know [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vavai.net/2009/08/31/zimbra-appliance-with-opensuse-11-1-vmwarevirtualbox-image/"><img class="alignnone size-full wp-image-1058" title="opensuse-zimbra" src="http://vavai.net/wp-content/uploads/2010/01/opensuse-zimbra1.jpg" alt="Zimbra Appliance on openSUSE" width="150" height="150" /></a></p>
<p>I&#8217;m thinking about a project for a week end. Updating <a href="http://vavai.net/2009/08/31/zimbra-appliance-with-opensuse-11-1-vmwarevirtualbox-image/">Zimbra Appliance</a> to the latest version seems to be nice but I need a few feedback about the specification of appliance.</p>
<p>On previous version, I&#8217;m using Zimbra 5.0.18 on openSUSE 11.1 JeOS. It has minimum specification but it works pretty well (please let me know if you&#8217;ve failed on installing the Appliance). My colleagues in Indonesia sent me some feedback whether it&#8217;s possible or no to add the minimal GUI environment to manage the administration and give some testing.</p>
<p>Below are my plans for next appliance :</p>
<ol>
<li>Build on openSUSE 11.1 32 bit with KDE3 basis with text editor and browser (FF or Chrome) installed by default. The previous version has no GUI installed and build on JeOS (Just Enough Operating System) basis.</li>
<li>Zimbra has installed by default with predefined domain, IP and DNS records but also give you a chance to change domain, IP and DNS. The previous version build with predefined install script to install Zimbra</li>
<li>Bundle with predefine setting on <a href="http://vavai.net/2009/12/22/improving-zimbra-anti-spam-on-opensuse/">Zimbra anti spam improvement</a>. The previous version didn&#8217;t have any anti spam improvement and built with standard setup</li>
<li>Use Zimbra version 5.0.21. The previous version using version 5.0.18. 5.0.21 is a stable and currently latest version. In other project, I&#8217;m also thinking about building Zimbra 6.0.4 64 bit on openSUSE 11.1.</li>
</ol>
<p>So, which one you agree,</p>
<ul>
<li>Minimal JeOS or minimal GUI</li>
<li>32 bit or 64 bit</li>
<li>Pre-installed Zimbra or an install script only</li>
<li>Predefined anti spam or leave it as is</li>
<li>Zimbra 5.0.21 or Zimbra 6.0.4</li>
<li>VMWare VMX format or VirtualBox VDI format (or maybe an ovf format)</li>
</ul>
<p>Please give the feedback on my comment form. I&#8217;ll be starting to update the Zimbra appliance tomorrow and upload the appliance into my host server as soon as possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2010/01/need-a-feedback-zimbra-appliance-on-opensuse/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>VMWare Acquired Zimbra</title>
		<link>http://vavai.net/2010/01/vmware-acquired-zimbra/</link>
		<comments>http://vavai.net/2010/01/vmware-acquired-zimbra/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 02:14:06 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Zimbra]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=1042</guid>
		<description><![CDATA[Rumors that Yahoo will selling Zimbra has been discussed on mail server world for a month or two. The rumors caused some controversy regarding the issue that Yahoo will released Zimbra to Microsoft. The rumors has finally ended : Yahoo selling Zimbra but not for Microsoft, Yahoo sell it to VMWare instead. As announced by  [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vavai.net/wp-content/uploads/2010/01/zimbra-vmware.png"><img class="alignright size-full wp-image-1043" title="zimbra-vmware" src="http://vavai.net/wp-content/uploads/2010/01/zimbra-vmware.png" alt="" width="280" height="200" /></a>Rumors that Yahoo will selling Zimbra has been discussed on mail server world for a month or two. The rumors caused some controversy regarding the issue that Yahoo will released Zimbra to Microsoft. The rumors has finally ended : Yahoo selling Zimbra but not for Microsoft, Yahoo sell it to VMWare instead.</p>
<p>As announced by  <a href="http://www.vmware.com/company/news/releases/zimbra.html">VMWare</a> and <a href="http://www.zimbrablog.com/blog/archives/2010/01/zimbra-to-join-vmware.html">Zimbra</a>, the acquisition will further VMware’s mission of taking complexity out of the datacenter, desktop, application development and core IT services, and delivering a fundamentally more efficient and new  approach to IT. Steve Herrord has published <a href="http://blogs.vmware.com/console/2010/01/vmware-to-acquire-zimbra.html">his blog post</a> regarding the reason why Zimbra decided to acquire Zimbra.</p>
<p>I&#8217;ve read a positive response to the acquisition. It may (and should be) better than lets Zimbra acquired by Microsoft. Microsoft has their own product : Microsoft Exchange Server. One of the stronger competitors for their product are Zimbra. The Dual License providing by Zimbra (Network Edition and Open Source Edition) mat not be really appropriate for Microsoft business model.</p>
<p>Beside the positive response, we must wait an update for VMWare strategy to expanding Zimbra popularity and market share. Hope VMWare has better attention for Zimbra than what Yahoo shows off for 2 years.</p>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2010/01/vmware-acquired-zimbra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving Physical Linux Server into Virtual Image</title>
		<link>http://vavai.net/2010/01/moving-physical-linux-server-into-virtual-image/</link>
		<comments>http://vavai.net/2010/01/moving-physical-linux-server-into-virtual-image/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 06:15:44 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[CloneZilla]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=924</guid>
		<description><![CDATA[These are various reason why I decided to move the physical server into Virtualization. Below are some of the reasons : Simplify system backup &#38; restore. We do not need to reinstall everything because we could backup all system in an image. The restore process should be as simple as copying the image into new [...]]]></description>
			<content:encoded><![CDATA[<p>These are various reason why I decided to move the physical server into Virtualization. Below are some of the reasons :</p>
<ol>
<li><strong>Simplify system backup &amp; restore</strong>. We do not need to reinstall everything because we could backup all system in an image. The restore process should be as simple as copying the image into new server</li>
<li><strong>Reduces power &amp; electricity consumes</strong>. Virtualization need a few physical server as host to run some virtual machine. Less physical server means a lower power and electricity needed</li>
<li><strong>Minimal impact while trying to upgrade to better hardware</strong>. Moving virtual server into better server will need a few changes than moving physical into physical server.</li>
<li><strong>Standard Driver &amp; Management</strong>. Virtualization do not need different driver for different model. The driver would same as others because Virtualization will emulate the host driver.</li>
<li><strong>Reduce hardware &amp; peripheral cost</strong>. We do not need a new server to host different service</li>
</ol>
<p>Moving physical into virtual better known as  P2V means Physical To Virtual. The popular application to do this are VMWare Converter, that free of charge for open source edition. Anyway, I don&#8217;t have the VMWare server (VMWare ESXor VMWare server) to act as destination place for converted image, so I take another way by using CloneZilla Linux with  VMWare Workstation as described below :</p>
<p><strong>Transferring  Physical Disc into Virtual Image<br />
</strong></p>
<ol>
<li>Prepare the second physical disk as the destination disk where the converted image will be saved. You may also use network share folder as the destination but in this tutorial I&#8217;ll be using physical disk. Please be aware that you must have a bigger disk than the converted disk or you may seen an insufficient disk space error message.</li>
<li>Download <a href="http://clonezilla.org/">CloneZilla LiveCD</a> and burn it with your CD burner.</li>
<li>Start your server with CloneZilla LiveCD as top priority boots<br />
`<br />
<a href="http://vavai.net/wp-content/uploads/2010/01/clonezilla-start-up-menu.jpeg"><img class="alignnone size-full wp-image-938" title="clonezilla-start-up-menu" src="http://vavai.net/wp-content/uploads/2010/01/clonezilla-start-up-menu.jpeg" alt="clonezilla-start-up-menu" width="446" height="335" /></a></li>
<li>Choose  <strong>Device-Image Work with disk or Partitions using Images </strong>as selected menu after CloneZilla completely started</li>
<li>Choose the secondary disk as target to saved the converted image</li>
<li>Follow the wizard. CloneZilla will take a moment and ask you some question and confirmation. I need about 30 minutes to convert 250 GB of disk with about 80 GB used space.</li>
</ol>
<p><strong>Converting  Image into Virtual Disk</strong></p>
<ol>
<li>Create a virtual machine with 2 virtual disk. The first virtual disk has 250 GB of size and made as dynamic disk (so the real space would not full 250 GB but depends on how much space would prepare to saved the content of virtual disk). The second virtual disk are a mounted physical disk where the converted image resides. I used VMWare Workstation over VirtualBox because AFAIK (CMIIW) VMWare Workstation has a feature to mount the physical disk or partition as virtual disk. I could not find how to mount the physical disk or partition as virtual disk with VirtualBox</li>
<li>Start your virtual machine with CloneZilla LiveCD as top priority boot up</li>
<li>Choose <strong>Restore image</strong> from CloneZilla menu and mount the secondary disk (the mounted physical disk where converted image resides). Choose the mount disk as image source.</li>
<li>Restore the image and follows the CloneZilla wizard until finish. The process itself would similar as converting physical disk into converted image.</li>
<li>Shut down the virtual machine</li>
<li>Remove the CloneZilla LiveCD</li>
<li>Remove the physical disk (the mounted physical disk where converted image resides)</li>
<li>Start your virtual machine</li>
</ol>
<p><strong>Note :</strong></p>
<ol>
<li>The above tutorial use physical server with openSUSE 11.1 64 bit contains Samba PDC + OpenLDAP services. I&#8217;m converting the system into virtual image and run the virtual machine with openSUSE 11.2 64 bit as host machine</li>
<li>I&#8217;m currently using VMWare Workstation 6.5.3 64 bit. The vmdk converted image would be run with VirtualBox without problem</li>
<li>I haven&#8217;t try it with 32 bit processor but I think the process would be similar</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2010/01/moving-physical-linux-server-into-virtual-image/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Solved : Problem Installing VMWare Workstation 6.5.3 64 bit on openSUSE 11.2 64 bit</title>
		<link>http://vavai.net/2010/01/solved-problem-installing-vmware-workstation-6-5-3-64-bit-on-opensuse-11-2-64-bit/</link>
		<comments>http://vavai.net/2010/01/solved-problem-installing-vmware-workstation-6-5-3-64-bit-on-opensuse-11-2-64-bit/#comments</comments>
		<pubDate>Fri, 01 Jan 2010 03:34:02 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=909</guid>
		<description><![CDATA[I found an error while installing VMWare Workstation 6.5.3 64 bit on openSUSE 11.2 64 bit, both with the rpm or the executable bundle installation file (Actually, the rpm just wrapping the bundle version ). The problem occurred while trying to configure the VMWare Player. It stuck and after waiting for a a hours or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vavai.net/wp-content/uploads/2010/01/vmware-opensuse.jpeg"><img class="alignnone size-full wp-image-912" title="VMWare Workstation Installation Wizard" src="http://vavai.net/wp-content/uploads/2010/01/vmware-opensuse.jpeg" alt="VMWare Workstation Installation Wizard" width="452" height="355" /></a></p>
<p>I found an error while installing VMWare Workstation 6.5.3 64 bit on openSUSE 11.2 64 bit, both with the rpm or the executable bundle installation file (Actually, the rpm just wrapping the bundle version <img src='http://vavai.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />  ). The problem occurred while trying to configure the VMWare Player. It stuck and after waiting for a a hours or more without any progress, I think it would be an installation problem.</p>
<p>Searching for a while, I found the solution as below :</p>
<ol>
<li>Install the bundle version with the following command on konsole/terminal :
<pre class="brush: cpp">
sh VMware-Workstation-6.5.3-185404.x86_64.bundle --custom --console
</pre>
<p>Note : You may also installing the rpm version with rpm -ivh command.</li>
<li>If the installation stop while configuring VMWare Player (about 62% on konsole progress), open a new konsole/terminal tab and run the following command :
<pre class="brush: cpp">
mv /etc/vmware/database /etc/vmware/database_temp
</pre>
<p>The above command will temporarily moving the database directory and installation should continue without problem</li>
<li>After the installation finished successfully, moving back the database folder and run a configuration update :
<pre class="brush: cpp">
mv /etc/vmware/database_temp /etc/vmware/database
vmware-modconfig --console --install-all
</pre>
<p>VMWare will updating the configuration and if you haven&#8217;t found any error message, the configuration should be updated successfully.</li>
<li>Run the VMWare Workstation from your start menu</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2010/01/solved-problem-installing-vmware-workstation-6-5-3-64-bit-on-opensuse-11-2-64-bit/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installing VirtualBox 3.1.2 on openSUSE 11.2</title>
		<link>http://vavai.net/2009/12/installing-virtualbox-3-1-2-on-opensuse-11-2/</link>
		<comments>http://vavai.net/2009/12/installing-virtualbox-3-1-2-on-opensuse-11-2/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 01:59:35 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=818</guid>
		<description><![CDATA[VirtualBox released in 2 edition, the Open Source Edition (OSE) that available in openSUSE repository or openSUSE Build Service (OBS) and the Personal Use and Evaluation License (PUEL), which closed source but free for personal use. The main different between both edition are the RDP Server, USB support and USB Support over RDP. Below is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://vavai.net/wp-content/uploads/2009/12/virtualbox-logo.jpg"><img class="alignright size-full wp-image-820" title="virtualbox-logo" src="http://vavai.net/wp-content/uploads/2009/12/virtualbox-logo.jpg" alt="" width="150" height="155" /></a>VirtualBox released in 2 edition, the Open Source Edition (OSE) that available in openSUSE repository or openSUSE Build Service (OBS) and the Personal Use and Evaluation License (PUEL), which closed source but free for personal use. The <a href="http://www.virtualbox.org/wiki/Editions">main different</a> between both edition are the RDP Server, USB support and USB Support over RDP.</p>
<p>Below is the step-by-step tutorial covering installation of VirtualBox PUEL Edition version 3.1.2 on openSUSE 11.2</p>
<ol>
<li>Preparing &amp; installing dependencies package, install the following package using YAST | Software | Software Management or by using Zypper : <strong>kernel-source, make, gcc, gcc-c++, pam-devel, kernel-syms, SDL</strong></li>
<li>Download the <a href="http://www.virtualbox.org/wiki/Linux_Downloads">VirtualBox binary installer</a>. Choose the binary for openSUSE 11.1 or openSUSE 11.2 and an appropriate processor (32 bit or 64 bit)</li>
<li>Install it by using YAST or Zypper or rpm -ivh
<pre class="brush: cpp">
zypper in ./VirtualBox-3.1-3.1.2_56127_openSUSE111-1.i586.rpm
</pre>
<p>`<br />
<a href="http://vavai.net/wp-content/uploads/2009/12/installing-virtualbox.jpeg"><img class="alignnone size-full wp-image-821" title="installing-virtualbox, click for higher image" src="http://vavai.net/wp-content/uploads/2009/12/installing-virtualbox.jpeg" alt="" width="498" height="185" /></a></li>
<li>VirtualBox should be automatically execute the compilation module into kernel. If it doesn&#8217;t, execute the VirtualBox Script vboxdrv script by using this command :
<pre class="brush: cpp">
/etc/init.d/vboxdrv setup
</pre>
</li>
<li>Go to YAST | Security &amp; User | User &amp; Group Management. Choose your login user (or user who will running VirtualBox), click edit, move to Details tab and give a check on vboxusers group to add your user  as member of VirtualBox group.</li>
<li>Logout and re-login</li>
<li>Launch VirtualBox from start up menu or by using konsole : VirtualBox (case sensitive)</li>
</ol>
<p>Note :</p>
<ol>
<li>You should have a correct and appropriate kernel-source and default kernel version. You may failed on compiling module if you have different version between kernel and kernel source. Check it out by using uname and zypper if command as below :
<pre class="brush: cpp">
uname -r
zypper if kernel-source
</pre>
<p>`<br />
<a href="http://vavai.net/wp-content/uploads/2009/12/checking-kernel-version.jpeg"><img class="alignnone size-full wp-image-819" style="border: 1px solid black;" title="checking-kernel-version" src="http://vavai.net/wp-content/uploads/2009/12/checking-kernel-version.jpeg" alt="" width="406" height="405" /></a></li>
<li>If you wish to upgrading the existing version, just remove the old version and then install an update. In normal case, it should not delete any existing image has built on previous version, but backup is a better option to prevent any data loss.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2009/12/installing-virtualbox-3-1-2-on-opensuse-11-2/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Solved : Error Upgrading VirtualBox 2.0.6 into 2.1.0</title>
		<link>http://vavai.net/2009/01/solved-error-upgrading-virtualbox-206-into-210/</link>
		<comments>http://vavai.net/2009/01/solved-error-upgrading-virtualbox-206-into-210/#comments</comments>
		<pubDate>Wed, 21 Jan 2009 05:23:59 +0000</pubDate>
		<dc:creator>Vavai</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[OpenSUSE]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://vavai.net/?p=470</guid>
		<description><![CDATA[I found an error &#8220;Inaccessible VirtualBox Image&#8221; after upgrading VirtualBox Virtual Machine on my friend&#8217;s PC with openSUSE 11.1 installed. The install process went successfully after removing previous version but I accidentally found this message while running old virtual machine created with VirtualBox 2.0.6 on new VirtualBox 2.1.0 : Assertion failed: [!name.isNull()] at &#8216;/home/vbox/vbox-2.1.0/src/ VBox/Main/NetworkAdapterImpl.cpp&#8217; [...]]]></description>
			<content:encoded><![CDATA[<p>I found an error <em>&#8220;Inaccessible VirtualBox Image&#8221;</em> after upgrading VirtualBox Virtual Machine on my friend&#8217;s PC with openSUSE 11.1 installed. The install process went successfully after removing previous version but I accidentally found this message while running old virtual machine created with VirtualBox 2.0.6 on new VirtualBox 2.1.0 :</p>
<blockquote><p>Assertion failed: [!name.isNull()] at &#8216;/home/vbox/vbox-2.1.0/src/</p>
<div id=":1lp" class="ArwC7c ckChnd">VBox/Main/NetworkAdapterImpl.cpp&#8217; (1068) in nsresult NetworkAdapter::loadSettings(const settings::Key&amp;). Please contact the product vendor!.  Result Code: NS_ERROR_FAILURE (0&#215;80004005) Component: NetworkAdapter Interface: INetworkAdapter {a876d9b1-68d9-43b1-9c68-ddea0a473663}</div>
</blockquote>
<div class="ArwC7c ckChnd"><a href="http://vavai.net/wp-content/uploads/2009/01/virtualbox-error.jpeg"><img class="alignnone size-full wp-image-473" title="virtualbox-error" src="http://vavai.net/wp-content/uploads/2009/01/virtualbox-error.jpeg" alt="virtualbox-error" width="474" height="298" /></a></div>
<div class="ArwC7c ckChnd">After short investigation, it seems that the error occurred regarding Network Setup on virtual machine. Old virtual machine created with VirtualBox 2.0.6  using <strong>Host Network</strong> and with big modification on new version, the old Host Network setting was not fully compatible with new changes on VirtualBox 2.1.0.</div>
<div class="ArwC7c ckChnd">The solution is quite simple :</div>
<div class="ArwC7c ckChnd">
<ol>
<li>Navigate to your virtual machine folder. In my case, the location is <strong>/home/vavai/.VirtualBox/Machines/WinXP</strong></li>
<li>Backup the xml configuration file. In my case : WinXP.xml</li>
<li>Edit WinXP.xml</li>
<li>Remove the portion of configuration contains host network setup. If you confused which one should be deleted, simply remove network configuration. Below is my old VirtualBox configuration :
<pre class="brush: cpp">
 &lt;network&gt;
        &lt;adapter slot=&quot;0&quot; enabled=&quot;true&quot; MACAddress=&quot;080027D4F0CA&quot; cable=&quot;true&quot; speed=&quot;0&quot; type=&quot;Am79C973&quot;&gt;
          &lt;hostInterface/&gt;
        &lt;/adapter&gt;
        &lt;adapter slot=&quot;1&quot; enabled=&quot;false&quot; MACAddress=&quot;080027F94465&quot; cable=&quot;true&quot; speed=&quot;0&quot; type=&quot;Am79C973&quot;/&gt;
        &lt;adapter slot=&quot;2&quot; enabled=&quot;false&quot; MACAddress=&quot;0800276589A9&quot; cable=&quot;true&quot; speed=&quot;0&quot; type=&quot;Am79C973&quot;/&gt;
        &lt;adapter slot=&quot;3&quot; enabled=&quot;false&quot; MACAddress=&quot;08002705BA8D&quot; cable=&quot;true&quot; speed=&quot;0&quot; type=&quot;Am79C973&quot;/&gt;
      &lt;/network&gt;
</pre>
</li>
<li>Run VirtualBox. If it&#8217;s still inaccessible, refresh it and then run the virtual machine. VirtualBox will be clever enough to re-create the network setting. NOTE : If you remove all of network configuration on step 4, re-activating the network on virtual machine setting.  ` 	<a href="http://vavai.net/wp-content/uploads/2009/01/virtualbox-error1.jpeg"><img class="alignnone size-full wp-image-474" title="virtualbox-error1" src="http://vavai.net/wp-content/uploads/2009/01/virtualbox-error1.jpeg" alt="virtualbox-error1" width="450" height="533" /></a></li>
</ol>
</div>
<div class="ArwC7c ckChnd"><strong>Related Entries :</strong></div>
<div class="ArwC7c ckChnd">
<ol>
<li><a href="http://patrik.cqure.net/wordpress/2008/12/17/virtualbox-21-new-release-new-problems/">VirtualBox 2.1 : New Release, New Problem</a></li>
<li><a href="http://www.virtualbox.org/ticket/2758">VirtualBox BugZilla</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://vavai.net/2009/01/solved-error-upgrading-virtualbox-206-into-210/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

