ThoughtPolice VMware Images
Installing VMware Tools in Fedora Core 6
Tested with VMware Tools v.5.5.2 (VMwareTools-5.5.2-29772.tar.gz), v.5.5.3 (VMwareTools-5.5.3-34685.tar.gz).
1. Install software needed by VMware Tools
- Install packages to build the kernel modules
yum install gcc kernel-devel
- Check the running kernel matches the kernel headers
uname -r # running kernel rpm -q kernel-devel # installed kernel headers
- If the two versions do not match, run
yum -y upgrade kernel kernel-devel reboot
- Find out where the kernel headers are (you may need this later)
ls -d /usr/src/kernels/$(uname -r)*/include
2. Prepare and install VMware Tools
Choose one of a), b), c) or d).
a) If you are running the VM inside VMware Workstation 5.5 Show answer
- From VMware Workstation: go to VM> Install VMware Tools
- From the VM: mount the virtual cd drive
mount /dev/cdrom /mnt/
- Extract VMware Tools to /tmp/
tar -C /tmp -zxvf /mnt/VMwareTools-5.5.2-29772.tar.gz
- Unmount the virtual cd drive
umount /mnt
- Now run the installer
cd /tmp/vmware-tools-distrib ./vmware-install.pl
- When asked Do you want to run vmware-config-tools.pl?, answer "Yes".
b) If you have VMware-workstation-5.5.2-29772.tar.gz on disk Show answer
- Make sure VMware-workstation-5.5.2-29772.tar.gz is on disk inside the VM.
- Extract the VMware Tools iso
tar --strip-components=3 -zxvf VMware-workstation-5.5.2-29772.tar.gz \ vmware-distrib/lib/isoimages/linux.iso
- Create a temporary mount point
mkdir /mnt/vmtools-temp
- Mount the iso image
mount -o loop linux.iso /mnt/vmtools-temp
- Copy VMware Tools from the mount
cp /mnt/vmtools-temp/VMwareTools-5.5.2-29772.tar.gz /tmp/
- Extract VMware Tools to /tmp/
tar -C /tmp -zxvf /mnt/vmtools-temp/VMwareTools-5.5.2-29772.tar.gz
- Tidy up
umount /mnt/vmtools-temp rmdir /mnt/vmtools-temp rm linux.iso
- Now run the installer
cd /tmp/vmware-tools-distrib ./vmware-install.pl
- When asked Do you want to run vmware-config-tools.pl?, answer "Yes".
c) If you have VMwareTools-5.5.2-29772.tar.gz on disk Show answer
- Extract VMware Tools to /tmp/
tar -C /tmp -zxvf VMwareTools-5.5.2-29772.tar.gz
- Now run the installer
cd /tmp/vmware-tools-distrib ./vmware-install.pl
- When asked Do you want to run vmware-config-tools.pl?, answer "Yes".
d) If you cannot do any of these Show answer
- Download VMware Workstation Trial (free) from
http://www.vmware.com/download/ws/ - Go to If you have VMwareTools-5.5.2-29772.tar.gz on disk, above.
3. Fixes
a) X does not work/"undefined monitor" problem Show answer
You get the error Undefined Monitor "vmware"..
- Edit the X config file
vi /etc/X11/xorg.conf
- Add the lines
Section "Monitor" Identifier "vmware" EndSection - Restart X
b) Your mouse is stuck inside your VM Show answer
- Edit the X config file
vi /etc/X11/xorg.conf
- Add the lines
Section "InputDevice" Identifier "Mouse0" Driver "vmmouse" Option "Protocol" "Auto" Option "Device" "/dev/input/mouse0" EndSection
- Find the ServerLayout section, in that section, add the line
InputDevice "Mouse0" "CorePointer"
- Restart X
c) vmhgfs driver does not compile Show answer
- Force an install of the 686 kernel to match the 686 kernel-devel files - run through Common Issues
- Reboot
- Create a symlink
cd /usr/src/kernels/$(uname -r)*/include/linux ln -s autoconf.h config.h
- Backup vmware-config.tools.pl
cp /usr/bin/vmware-config-tools.pl /usr/bin/vmware-config-tools.pl.orig
- Fix it
sed -s "s/version\.h/utsrelease\.h/" /usr/bin/vmware-config-tools.pl.orig > /usr/bin/vmware-config-tools.pl
- Re-run vmware-config.tools.pl
/usr/bin/vmware-config.tools.pl
4. Not fixed
- fast ethernet driver compile (unverified fix: here)
- copy and paste between VM and host
Comments? Feedback? e-mail me
