Click here to Skip to main content
15,890,043 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
After I command: ./vmware-installer.pl
and continue Enter, it shows me that :
Unable to copy the source file ./installer/services.sh to the destination file
/etc/vmware-tools.
Posted
Comments
Richard MacCutchan 24-Jan-13 9:22am    
Are you running under root privileges?

1 solution

Install the VMware tools prerequisites:
yum install make gcc kernel-devel kernel-headers glibc-headers perl


Mount the VMware Tools CD (after inserting it into the VM)

mkdir /mnt/cdrom
mount /dev/cdrom /mnt/cdrom

Copy the install bundle from the CD and extract it.
cp /mnt/cdrom/VMware-Tools*.tar.gz /tmp/
cd /tmp/
tar xvfz VMwareTools*.tar.gz


Run the installer, default on all prompts works fine.
cd /tmp/vmware-tools-distrib
./vmware-install.pl

(or)

http://www.vmware.com/support/ws3/doc/ws32_newguest11.html#1013401[^]
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900