有什么可以帮助到您的?

open-vm-tools开机自动挂载共享目录

新建/etc/rc.local脚本,添加可执行权限并编辑如下内容:

#!/bin/sh -e
sudo vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other

或在/etc/fstab添加一行

.host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,auto 0 0
更多文档