VMTools Install
|
Jezell
Joined: 2007-03-15
Posts: 2 |
Posted: Thu, 2007-03-15 22:09
|
|
I am new to VMware, Gallery and Linux. I am wondering how to install the VMware tools on the appliance. It seems the tools come as a rpm but the applicance uses conary to install packages. Does anyone know how to do this? |
|
| Login or register to post comments |

Posts: 13449
Just follow the documentation in your VMware product. Normally the tools are just a tar.gz file on a virtual cd that you need to mount and then extract the files. After that you run a shell script to install them.
h0bbel - Gallery Team
If you found my help useful, please consider donating to Gallery
http://h0bbel.p0ggel.org
Posts: 2
I found the answer
Create a directory for the mount point like /vmtools (off of the root "mkdir vmtools")
At command line of the guest type machine
Mount –t iso9660 /dev/cdrom /vmtools (last part here is the directory you create for the mount point)
Cd to the mount point even if you are already there.
You see two files one is rpm file and other is source file
Had to unzip the tar file
Copy the tar file to /tmp directory
Unzip the file
Command was tar –xzvf filename.tgz
Ran the install ./vmware-install.pl (from the tmp directory)
That worked.
Posts: 13449
Excellent, thanks for the detailed instructions.
h0bbel - Gallery Team
If you found my help useful, please consider donating to Gallery
http://h0bbel.p0ggel.org
Posts: 106
Thanx A LOT!
Posts: 2
That saved me some time, thanks a bunch!