<?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>IT Support Blog &#187; CentOS</title>
	<atom:link href="http://www.aionsolution.com/blog/category/centos/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.aionsolution.com/blog</link>
	<description>[IT Problem Resolved]</description>
	<lastBuildDate>Mon, 12 Dec 2011 10:34:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>How To Install VMware Server On A CentOS 5</title>
		<link>http://www.aionsolution.com/blog/linux/how-to-install-vmware-server-on-a-centos-5/</link>
		<comments>http://www.aionsolution.com/blog/linux/how-to-install-vmware-server-on-a-centos-5/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 03:12:49 +0000</pubDate>
		<dc:creator>aionman</dc:creator>
				<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.aionsolution.com/blog/?p=186</guid>
		<description><![CDATA[How To Install VMware Server On A CentOS 5.0 Desktop This tutorial provides step-by-step instructions on how to install VMware Server on a CentOS 5.0 desktop system. With VMware Server you can create and run guest operating systems (&#8220;virtual machines&#8221;) such as Linux, Windows, FreeBSD, etc. under a host operating system. This has the benefit that [...]]]></description>
			<content:encoded><![CDATA[<h2>How To Install VMware Server On A CentOS 5.0 Desktop</h2>
<p>This tutorial provides step-by-step instructions on how to install <a href="http://www.vmware.com/download/server/" target="_blank">VMware Server</a> on a CentOS 5.0 desktop system. With VMware Server you can create and run guest operating systems (&#8220;virtual machines&#8221;) such as Linux, Windows, FreeBSD, etc. under a host operating system. This has the benefit that you can run multiple operating systems on the same hardware which saves a lot of money, and you can move virtual machines from one VMware Server to the next one (or to a system that has the VMware Player which is also free).</p>
<p>Also, with VMware Server <a href="http://www.vmware.com/download/server/" target="_blank"></a>you can let your old Windows desktop (that you previously converted into a VMware virtual machine with <a href="http://www.vmware.com/products/converter/" target="_blank">VMware Converter</a>, as described in this tutorial:<a href="http://www.howtoforge.com/vmware_converter_windows_linux" target="_blank">http://www.howtoforge.com/vmware_converter_windows_linux</a>) run under your CentOS desktop. This can be useful if you depend on some applications that exist for Windows only, or if you want to switch to Linux slowly.</p>
<p>I want to say first that this is not the only way of setting up such a system. There are many ways of achieving this goal but this is the way I take. I do not issue any guarantee that this will work for you!</p>
<h3>1 Find Out Your Kernel Version</h3>
<p>Before we go on and install additional software, it&#8217;s a good idea to find out about your kernel version because in chapter 2 we will install the package <span class="system">kernel-devel</span> which is needed by VMware Server. There are multiple <span class="system">kernel-devel</span> packages available, and to select the right one you need to know your kernel version.</p>
<p>To find out about your kernel version, open a terminal (<span class="system">Applications &gt; Accessories &gt; Terminal</span>):</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/19.png" alt="" width="550" height="413" /></p>
<p>Then become root by running:</p>
<p class="command">su</p>
<p>Then run</p>
<p class="command">uname -r</p>
<p>The output should look like this:</p>
<p class="system">[root@localhost Desktop]# uname -r<br />
2.6.18-8.1.3.el5</p>
<p>which means you have kernel <span class="system">2.6.18-8.1.3.el5</span> installled.</p>
<h3>2 Installing Required Packages</h3>
<p>Before we install VMware Server, we must install some prerequisites. To install them, go to <span class="system">Applications &gt; Add/Remove Software</span>:</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/1.png" alt="" width="550" height="413" /></p>
<p>Type in the root password:</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/2.png" alt="" width="550" height="413" /></p>
<p>The Package Manager opens. Go to the <span class="system">Browse</span> tab and select:</p>
<ul>
<li class="system">Development &gt; Development Libraries</li>
<li class="system">Development &gt; Development Tools</li>
</ul>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/3.png" alt="" width="550" height="413" /></p>
<p>Then go to the <span class="system">Search</span> tab and search for <span class="system">xinetd</span>. Select the <span class="system">xinetd</span> package for installation:</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/4.png" alt="" width="550" height="413" /></p>
<p>Do the same for the <span class="system">kernel-devel</span> package. <span class="highlight">Please make sure you select the kernel-devel package that corresponds to your current kernel (so if you kernel is 2.6.18-8.1.3.el5, select the kernel-devel &#8211; 2.6.18-8.1.3.el5.i686 package).</span></p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/5.png" alt="" width="550" height="413" /></p>
<p>Click on <span class="system">Apply</span> afterwards.</p>
<p>The Package Manager will then resolve all dependencies, download the packages, maybe ask you to accept some unknown software keys (please accept them), and finally install the packages.</p>
<h3>3 VMware Server</h3>
<p>To download VMware Server, go to <a href="http://www.vmware.com/download/server/" target="_blank">http://www.vmware.com/download/server/</a> and click on <span class="system">Download Now</span>:</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/12.png" alt="" width="550" height="413" /></p>
<p>Accept the license agreement by clicking on <span class="system">Yes</span>:</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/13.png" alt="" width="550" height="413" /></p>
<p>Then download the VMware Server for Linux <span class="highlight">.tar.gz</span> file (not the rpm file!) to your desktop (e.g. to <span class="system">/home/falko/Desktop)</span>:</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/14.png" alt="" width="550" height="413" /></p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/15.png" alt="" width="550" height="413" /></p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/16.png" alt="" width="550" height="413" /></p>
<p>To get the serial number you need to run VMware Server, go to <a href="http://register.vmware.com/content/registration.html" target="_blank">http://register.vmware.com/content/registration.html</a>. Fill in your personal details. Afterwards you will get a page with a serial number for VMware Server. Write it down or print it out:</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/17.png" alt="" width="550" height="413" /></p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/18.png" alt="" width="550" height="413" /></p>
<p>To install VMware Server, open a terminal (<span class="system">Applications &gt; Accessories &gt; Terminal</span>) and become root:</p>
<p class="command">su</p>
<p>Then go to the location where you saved the VMware Server .tar.gz file, e.g. <span class="system">/home/falko/Desktop</span> (replace <span class="system">falko</span> with your own username!):</p>
<p class="command">cd /home/falko/Desktop</p>
<p>Unpack the VMware Server .tar.gz file and run the installer:</p>
<p class="command">tar xvfz VMware-server-*.tar.gz<br />
cd vmware-server-distrib<br />
./vmware-install.pl</p>
<p>The installer will ask you a lot of questions. You can always accept the default values simply by hitting <span class="system">&lt;ENTER&gt;</span>. When it asks you</p>
<p class="system">In which directory do you want to keep your virtual machine files?<br />
[/var/lib/vmware/Virtual Machines]</p>
<p>you can accept the default value or specify a different location where you have more free disk space, e.g. like <span class="system">/home/falko/virtual_machines</span>, but this is up to you and not necessary.</p>
<p>At the end of the installation, you will be asked to enter a serial number:</p>
<p class="system">Please enter your 20-character serial number.</p>
<p class="system">Type XXXXX-XXXXX-XXXXX-XXXXX or &#8216;Enter&#8217; to cancel:</p>
<p>Fill in your serial number for VMware Server.</p>
<p>After the successful installation, you can delete the VMware Server download file and the installation directory:</p>
<p class="command">cd ../<br />
rm -f VMware-server*<br />
rm -fr vmware-server-distrib/</p>
<p>You will now find VMware Server under <span class="system">Applications &gt; System Tools</span>:</p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/20.png" alt="" width="550" height="413" /></p>
<p>When you start it, select <span class="system">Local host</span>:</p>
<p><strong>With VMware 2.0 The most noticeable change is that the vmware server console is … gone.</strong></p>
<p><img src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/21.png" alt="" width="550" height="413" /></p>
<p>Afterwards, you can create virtual machines (or import your virtual Windows machine that you created with <a href="http://www.vmware.com/products/converter/" target="_blank">VMware Converter</a>):</p>
<p><a href="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/22.png"><img class="alignnone size-full wp-image-208" title="22" src="http://www.aionsolution.com/blog/wp-content/uploads/2009/08/22.png" alt="22" width="550" height="413" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.aionsolution.com/blog/linux/how-to-install-vmware-server-on-a-centos-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

