我在装有OSX10.11.6的MacBook上将VMware融合更新到了8.5.6。我下载并安装了最新的核心工具( VMware -VMware-10.1.5-core-5055683)。来宾操作系统是Debian 8。虽然现在可以剪切和粘贴,但我不能挂载共享目录。尽管共享目录在那里:
$ sudo vmware-hgfsclient
common挂载点在那里:
$ ls /media
cdrom cdrom0 commonmount命令失败:
$ 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工具版本?
发布于 2017-04-19 23:40:39
看起来VMware工具和HGFS挂载器并不是齐头并进的,也就是说,在没有HGFS挂载器的情况下,VMware工具可能已经启动并运行了。我通过下载VMware工具10.1.0而不是10.1.5,用vmware-install.pl安装,然后运行
apt-get install open-vm-tools发布于 2017-10-12 16:12:32
在虚拟机中运行命令:
mkdir /mnt/hgfs
vmhgfs-fuse .host:/ /mnt/hgfs
# permit other user access
vmhgfs-fuse .host:/ /mnt/hgfs -o allow_otherhttps://stackoverflow.com/questions/43324936
复制相似问题