VMware Linux 虚拟机挂载 Windows 宿主机文件夹操作方法
在Windows操作系统下运行VMware下Linux虚拟机,有时需要把liunx文件存储挂载到windows宿主机指定文件夹下,方便备份等操作
1. 安装vm-tool
2. 开启共享文件夹
虚拟机->设置->选项->共享文件夹”右边选择“总是启用

还是空白就添加一个共享文件夹
上面填主机需要共享的文件夹
下面填共享文件夹名字

如果你不能选择共享文件夹(灰色)那么你只能重新安装VMware Tools了
3. 进入Linux 查看挂载目录/mnt/hgfs
cd /mnt/hgfs
如果有共享文件夹就完事了
如果没有尝试一下命令
vmware-hgfsclient
查看自己的共享文件夹
mount -t vmhgfs .host:/pyServer /mnt/hgfs
pyServer是我自己的共享文件夹的名字
如果出现Error: cannot mount filesystem: No such device
mount -t vmhgfs-fuse .host:/pyServer /mnt/hgfs
如果出现unknown filesystem type ‘vmhgfs’

sudo mount -t vmhgfs .host:/Virtual-Hard-File /mnt/hgfs virtual-hard-file
sudo vmhgfs -fuse .host:/Virtual-Hard-File /mnt/hgfs
如果vmtools已安装但还是不能共享文件、复制粘贴,运行以下代码
$ git clone https://github.com/rasa/vmware-tools-patches.git
$ cd vmware-tools-patches
$ ./patched-open-vm-tools.sh
vmhgfs -fuse .host:/Virtual-Hard-File /mnt/hgfs