无法安装VMware共享文件系统

时间:2017-04-10 13:45:23

标签: linux macos vmware fusion

我在OSX 10.11.6的MacBook上将VMware Fusion更新到8.5.6。我下载并安装了最新的VMware Tools(VMware-Tools-10.1.5-core-5055683)。客户操作系统是Debian 8.虽然剪切和粘贴现在可以工作,但我无法挂载共享目录。虽然共享目录在那里:

$ sudo vmware-hgfsclient 
common

并且挂载点在那里:

$ ls /media
cdrom cdrom0 common

mount命令失败:

$ sudo mount -v -t vmhgfs  .host:/common /media/common
Original command line: "/sbin/mount.vmhgfs -v -o rw .host:/common /media/common"
Host component of share name is ".host"
Directory component of share name is "/common"
Parsing option string: rw
Setting mount read-write
Error: cannot mount filesystem: Invalid argument

我不确定名字是否正确有什么问题。该模块也在那里:

$ lsmod | grep hg
vmhgfs                 65266  0 
vmw_vmci               55383  1 vmhgfs

我使用的是错误版本的VMware工具吗?

2 个答案:

答案 0 :(得分:0)

VMware Tools和HGFS贴片机似乎没有齐头并进,即可能没有HGFS贴片机就可以启动并运行VMware Tools。我设法通过下载VMware Tools 10.1.0而不是10.1.5,使用vmware-install.pl进行安装,然后运行

来使其工作。
apt-get install open-vm-tools

答案 1 :(得分:0)

在虚拟机中运行命令:

mkdir /mnt/hgfs
vmhgfs-fuse .host:/ /mnt/hgfs
# permit other user access
vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other