1. CentOS 7默认安装了open-vm-tools, 就不用再安装VMware-tools了。另外建议安装open-vm-tools-desktop,这样就可以在VM服务器和客户机之间直接复制粘贴。

2. 设置共享文件夹:
Windows与VMware CentOS 7共享文件-LMLPHP

3. 设完后,发现没有/mnt/hgfs。但vmware-hgfsclient 看得到:Windows主机共享的文件夹:
# vmware-hgfsclient WinLinShare
git
vmshare
#

4. 百度一翻后,
# mkdir /mnt/hgfs
# mount -t vmhgfs .host:/ /mnt/ghfs
mount: unknown filesystem type 'vmhgfs'

5. 再百度,发现用vmhgfs-fuse 可以解决:
# vmhgfs-fuse .host:/ mnt/hgfs
是因为我用了open-vm-tools 而非VMware-tools?

6. 编辑/etc/fstab设置开机自动挂载
# VMware-tools
#.host:/     /mnt/hgfs       vmhgfs     defaults  0  0
# open-vm-tools
.host:/     /mnt/hgfs       fuse.vmhgfs-fuse     defaults  0  0


10-03 17:39