Install Ubuntu Server
- Download an image from this site Show archive.org snapshot
- Select File > New…to and follow the instructions, choose the.isofile you downloaded as image file
- Deselect "Simple installation" – you want to configure your system yourself
- Start the new virtual machine and follow the instructions
Install VMware Tools
- Choose Virtual Machine > Install VMware Toolsfrom the VMware menu, then:
^
# install required packages
sudo apt-get install build-essential psmisc
# make a mount point if needed
sudo mkdir /media/cdrom
# mount the CD
sudo mount /dev/cdrom /media/cdrom
# copy and extract VMWareTools
sudo cp /media/cdrom/VMwareTools*.tar.gz ~
tar zxvf VMwareTools*.tar.gz
# run installation script,
# just confirm the default answers when asked
cd ~/Desktop/vmware-tools-distrib
sudo ./vmware-install.pl
Set screen resolution
- 
edit the grub template file (e.g. with vim) 
 ^
 sudo vim /etc/default/grub
- 
uncomment GRUB_GFXMODEand write down your desired resolution
 ^
 GRUB_GFXMODE=1280x720
- 
ATTENTION: The resolution you choose must be supported by your graphics adapter. To find supported resolutions: 
 ^
 sudo rebootpress c to enter the grub command linelist resolution info and rebootvbeinfo 
 reboot
- 
after setting the resolution, save the file and run 
 ^
 sudo update-grub
 sudo reboot
Set keyboard layout
- for current session: sudo loadkeys de
- permanently:
- sudo dpkg-reconfigure keyboard-configuration
- adjust Country of origin for the keyboardandKeyboard layoutto meet your needs
 
Posted by Dominik Schöler to makandra dev (2011-05-11 10:02)