VMWare使用文件夹共享操作步骤
本文基于 Linux 操作系统实现
设置共享目录
安装工具
开启虚拟机,打开 terminal
安装依赖 sudo apt install -y open-vm-tools
挂载目录
# 查看共享目录名称
> vmware-hgfsclient
share-data# 创建入口
mkdir /mnt/hgfs
# 单次挂载
mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other
# 自动挂载
echo ".host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other 0 0" | sudo tee -a /etc/fstab