<?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>Debian Tutorials &#187; Virtualization</title>
	<atom:link href="http://www.debiantutorials.com/category/virtualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.debiantutorials.com</link>
	<description>Copy/Paste tutorials for Debian based Linux distros</description>
	<lastBuildDate>Tue, 27 Dec 2011 01:15:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Installing VMware server 2.x on Debian lenny</title>
		<link>http://www.debiantutorials.com/installing-vmware-server-2-x-on-debian-lenny/</link>
		<comments>http://www.debiantutorials.com/installing-vmware-server-2-x-on-debian-lenny/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 21:43:27 +0000</pubDate>
		<dc:creator>aip</dc:creator>
				<category><![CDATA[Lenny]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.debiantutorials.net/?p=247</guid>
		<description><![CDATA[VMware Server can create, edit, and play virtual machines. It uses a client-server model, allowing remote access to virtual machines, at the cost of some graphical performance (and 3D support). In addition to the ability to run virtual machines created by other VMware products, it can also run virtual machines created by Microsoft Virtual PC. [...]]]></description>
			<content:encoded><![CDATA[<p>VMware Server can create, edit, and play virtual machines. It uses a client-server model, allowing remote access to virtual machines, at the cost of some graphical performance (and 3D support). In addition to the ability to run virtual machines created by other VMware products, it can also run virtual machines created by Microsoft Virtual PC.</p>
<p>1. Install required packages</p>
<p><code>apt-get install psmisc make gcc gcc-4.1 linux-headers-$(uname -r)<br />
</code><span id="more-247"></span></p>
<p>2. Download VMware server</p>
<p><a href="http://www.vmware.com/go/getserver" target="_blank">Register at vmware.com, download the latest VMware server binary and upload to your server.</a></p>
<p>3. Extract</p>
<p><code>tar zxvf VMware-server-2.x.tar.gz<br />
</code></p>
<p><em>Replace the filename with the downloaded filename.</em></p>
<p>4. Use gcc 4.1 instead of the default version: 4.3</p>
<p>Lenny is configured to use gcc 4.3 but WMware server requires gcc 4.1. Temporarily use 4.1 while configuring VMware server:</p>
<p><code>ln -sf /usr/bin/gcc-4.1 /usr/bin/gcc<br />
</code></p>
<p>5. Install and configure VMware server</p>
<p><code>cd vmware-server-distrib<br />
./vmware-install.pl<br />
</code></p>
<p>You can accept the defaults for all questions in the installer and configuration tool but read carefully to make sure they fit your requirements.</p>
<p>6. Change the default gcc version</p>
<p><code>ln -sf /usr/bin/gcc-4.3 /usr/bin/gcc<br />
</code></p>
<p>7. Installation complete</p>
<p>You can now access the web interface by navigating to http://your-server:8222 or https://your-server:8333</p>
]]></content:encoded>
			<wfw:commentRss>http://www.debiantutorials.com/installing-vmware-server-2-x-on-debian-lenny/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Installing VMware tools on lenny</title>
		<link>http://www.debiantutorials.com/installing-vmware-tools-on-lenny/</link>
		<comments>http://www.debiantutorials.com/installing-vmware-tools-on-lenny/#comments</comments>
		<pubDate>Wed, 06 May 2009 09:19:22 +0000</pubDate>
		<dc:creator>aip</dc:creator>
				<category><![CDATA[Lenny]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[lenny]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://debiantutorials.net/?p=35</guid>
		<description><![CDATA[This has been tested on Debian lenny running on VMware server 2.0. Install kernel headers and some tools used to install VMware tools: apt-get install binutils cpp gcc make psmisc linux-headers-$(uname -r) Mount the cdrom drive. Make sure you have mounted the VMware tools virtual cd from the host before moving on. mount /dev/cdrom /mnt/ [...]]]></description>
			<content:encoded><![CDATA[<p>This has been tested on Debian lenny running on VMware server 2.0.</p>
<p>Install kernel headers and some tools used to install VMware tools:<br />
<code>apt-get install binutils cpp gcc make psmisc linux-headers-$(uname -r)<br />
</code></p>
<p>Mount the cdrom drive. Make sure you have mounted the VMware tools virtual cd from the host before moving on.<br />
<code>mount /dev/cdrom /mnt/<br />
</code><span id="more-35"></span></p>
<p>Extract VMware tools to the tmp directory:<br />
<code>tar -C /tmp -zxvf /mnt/VMwareTools-x.x.x.tar.gz<br />
</code><br />
The filename depends on the host software/OS.</p>
<p>Unmount the virtual cd:<br />
<code>umount /mnt<br />
</code></p>
<p>Lenny is configured to use gcc 4.3 but WMware tools requires gcc 4.1. Both versions of gcc are installed by default so we'll temporarily use 4.1 while building VMware tools:<br />
<code>ln -sf /usr/bin/gcc-4.1 /usr/bin/gcc<br />
</code></p>
<p>Make sure you run the following command from the Console, don't try to run it using SSH because the network will be restarted and the installation will fail.<br />
<code>cd /tmp/vmware-tools-distrib<br />
./vmware-install.pl<br />
</code><br />
Accept the defaults for every question. Make sure you're located inside the vmware-tools-distrib folder when executing the vmware-install.pl script or the installation will fail.</p>
<p>After the build has completed, configure the system to use gcc 4.3 again:<br />
<code>ln -sf /usr/bin/gcc-4.3 /usr/bin/gcc<br />
</code></p>
<p>To finish the installation and start the virtual machine with VMware tools installed, reboot the virtual machine:<br />
<code>reboot<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.debiantutorials.com/installing-vmware-tools-on-lenny/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Installing VMware server on Debian etch</title>
		<link>http://www.debiantutorials.com/installing-vmware-server-on-debian-etch/</link>
		<comments>http://www.debiantutorials.com/installing-vmware-server-on-debian-etch/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 09:08:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Lenny]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[etch]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://debiantutorials.net/installing-vmware-server-on-debian-etch/</guid>
		<description><![CDATA[VMware Server installs on any existing server hardware and partitions a physical server into multiple virtual machines by abstracting processor, memory, storage and networking resources, giving you greater hardware utilization and flexibility. Streamline software development and testing and simplify server provisioning as you utilize the ability to "build once, deploy many times." In this tutorial [...]]]></description>
			<content:encoded><![CDATA[<p>VMware Server installs on any existing server hardware and partitions a physical server into multiple virtual machines by abstracting processor, memory, storage and networking resources, giving you greater hardware utilization and flexibility. Streamline software development and testing and simplify server provisioning as you utilize the ability to "build once, deploy many times."</p>
<p>In this tutorial we'll install the free VMware server 1.x and VMware Management Interface to a Debian etch system.</p>
<p><strong>First install required packages</strong></p>
<p><code>apt-get install kernel-headers-`uname -r` psmisc libx11-6 libx11-dev xspecs libxtst6 libXt-dev libXrender-dev libxi6 lvm-common lvm2 xfsprogs<br />
</code></p>
<p><span id="more-14"></span><strong>Download and extract source</strong></p>
<p><code>cd /tmp<br />
wget http://download3.vmware.com/software/vmserver/VMware-server-1.0.6-91891.tar.gz<br />
tar zxvf VMware-server-1.0.6-91891.tar.gz<br />
</code></p>
<p><strong>Install</strong></p>
<p><code>cd vmware-server-distrib/<br />
./vmware-install.pl<br />
</code></p>
<p>You will be asked a bunch of questions in the installer and the defaults will fit for most systems.</p>
<p><strong>Install VMware Management Interface (optional)</strong></p>
<p><code>cd /tmp<br />
wget http://download3.vmware.com/software/vmserver/VMware-mui-1.0.6-91891.tar.gz<br />
tar zxvf VMware-mui-1.0.6-91891.tar.gz<br />
cd vmware-mui-distrib<br />
./vmware-install.pl<br />
</code></p>
<p>You can now access VMware server using the web management interface. Navigate to https://your-server:8333</p>
]]></content:encoded>
			<wfw:commentRss>http://www.debiantutorials.com/installing-vmware-server-on-debian-etch/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install VMware tools</title>
		<link>http://www.debiantutorials.com/install-vmware-tools/</link>
		<comments>http://www.debiantutorials.com/install-vmware-tools/#comments</comments>
		<pubDate>Sun, 03 Feb 2008 23:38:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://debiantutorials.net/install-vmware-tools/</guid>
		<description><![CDATA[This has been tested on Debian etch running on VMware ESX and VMware server 2.0 hosts. Install kernel headers and some tools used to install VMware tools apt-get install binutils cpp gcc make psmisc linux-headers-$(uname -r) Mount the cdrom drive. Make sure you have mounted the VMware tools virtual cd from the host before moving [...]]]></description>
			<content:encoded><![CDATA[<p>This has been tested on Debian etch running on VMware ESX and VMware server 2.0 hosts.</p>
<p>Install kernel headers and some tools used to install VMware tools<br />
<code>apt-get install binutils cpp gcc make psmisc linux-headers-$(uname -r)<br />
</code></p>
<p>Mount the cdrom drive. Make sure you have mounted the VMware tools virtual cd from the host before moving on.<br />
<code>mount /dev/cdrom /mnt/<br />
</code><span id="more-6"></span></p>
<p>Extract VMware tools to the tmp directory:<br />
<code>tar -C /tmp -zxvf /mnt/VMwareTools-3.5.0-67921.tar.gz<br />
</code><br />
The filename depends on the host software/OS. Here is a reference to a VMware ESX 3i VMware tools package.</p>
<p>Unmount the virtual cd<br />
<code>umount /mnt<br />
</code></p>
<p>Make sure you run the following command from the Console, don't try to run it using SSH because the network will be restarted and the installation will fail.<br />
<code>cd /tmp/vmware-tools-distrib<br />
./vmware-install.pl<br />
</code><br />
Accept the defaults for every question. Make sure you're located inside the vmware-tools-distrib folder when executing the vmware-install.pl script or the installation will fail.</p>
<p>To finish the installation and start the virtual machine with VMware tools installed, reboot the virtual machine:<br />
<code>reboot<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.debiantutorials.com/install-vmware-tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
