vmware 安装了个 centos7,也安装了vmware tools,然后与window共享目录报错
mount -t vmhgfs .host:/web /www/web/
mount: unknown filesystem type ‘vmhgfs’
google 了下,找到答案了,要换命令
/usr/bin/vmhgfs-fuse .host:/ /www/web -o subtype=vmhgfs-fuse,allow_other
ls /mnt/hgfs 发现共享成功了。
加入自动启动
vi /etc/rc.d/rc.local
/usr/bin/vmhgfs-fuse .host:/ /www/web -o subtype=vmhgfs-fuse,allow_other
保存
chmod +x /etc/rc.d/rc.local