Checking file rights on the same machine:
Do this:
ls -l /path/to/original/vmware/files
this will sow you the access rights and pwnership settings the files need for vmware to work.
I haven't run vmware on Linux so I don't know for sure -- but I suspect vmware runs as a specific user, and when you copied the files you were logged in as 'root' -- so the new copies belong to 'root' instead of to the 'vmware' user.
post back what you get from the command above if you don't know what to do.
Copying files from one linux system to another can be accomplished in any of several ways:
- scp [[user@]host1:]file1 [...] [[user@]host2:]file2
- WinSCP (search in Google) - copy the file to your Windows box, then over to the other Linux box
- mount a samba or nfs share from one system on the oter, then copy with 'cp', 'cpio', 'tar'...
- ftp
- make the file available via httpd, then use wget or curl to download it to the other system