1

I am using vmware workstation 10 (win 8 host) before,I used ubuntu 14.04 and for sharing folder from windows to ubuntu:I go to the settings of my windows VM, and select the Options Tab and there "shared folder"

and in ubuntu desktop,I found the folder that was shared in mnt directory.

but now ,I've installed ubuntu 14.10,but this way not working....

against this:VMWare Windows 7 (host) Ubuntu 14.04 (guest) shared folder won't mount I am using vmware 10

can u please tell me why?and how can I do that??

tnx

2 Answers2

0

Try

sudo vmhgfs-fuse .host/ /mnt/hgfs/ -o allow_other.

Before it enable shared folder and try this command.you need to do it every time when the machine power off. To solve this, add .host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0 in /etc/fstab

Make sure ubuntu has vmware-tools

0

This is because the VMware Tools are not modified yet for the 14.10+ kernel. As such, the Shared Folders functionality fails to build.

Ultimately, we have to see if there are alternative options. And there is. First, remove the VMware Tools from the guest. Then, install open-vm-tools which is an open source spin of the VMware Tools onto the guest. That program exists in the repos so you can install it with apt-get

This should then help a little with the shared folders.

Thomas Ward
  • 78,878