2nd April 2007

VMware Server en Ubuntu Server 6.10

Instalación típica de Ubuntu server, sin LAMP ni servidor DNS

Una vez instalado, habilitamos la cuenta de root

sudo passwd root
su

Habilitamos repositorios y actualizamos

vi /etc/apt/sources.list
apt-get update
apt-get upgrade
apt-get install libx11-6 libx11-dev libxtst6 xlibs-dev xinetd wget
apt-get install linux-headers-`uname -r` build-essential

Configuramos la interfaz de red para que use IP estática

vi /etc/network/interfaces

y ponemos

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.0.100
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1

/etc/init.d/networking restart

Instalamos el VMware Server

cd /tmp
wget http://download3.vmware.com/software/vmserver/VMware-server-1.0.1-29996.tar.gz
(segundo cafe… a menos que hayas sido listo y lo tengas en cd)
tar xvfz VMware-server-1.0.1-29996.tar.gz
cd vmware-server-distrib
./vmware-install.pl
(dejar todo por defecto… como mucho cambiar el directorio de las maquinas virtuales, aunque no es necesario)

Cuando pida la licencia se puede pillar aqui -> http://register.vmware.com/content/registration.html

Cliente para conectar:
Windows:
http://download3.vmware.com/software/vmserver/VMware-server-win32-client-1.0.1-29996.zip
Linux:
http://download3.vmware.com/software/vmserver/VMware-server-linux-client-1.0.1-29996.zip

Para poder administrarlo via web (opcional)

rm -f /bin/sh
ln -s /bin/bash /bin/sh
cd /tmp
wget http://download3.vmware.com/software/vmserver/VMware-mui-1.0.1-29996.tar.gz
tar xvfz VMware-mui-1.0.1-29996.tar.gz
cd vmware-mui-distrib
./vmware-install.pl

desde cualquier sitio http://xxx.xxx.xxx.xxx:8222

posted in Linux | 0 Comments