VMware中的虚拟机如何和宿主机共享文件夹
首先在虚拟机设置中,设置好共享的文件夹,之后在虚虚拟机中使用 vmhgfs-fuse 进行挂载。
vmhgfs-fuse .host:/ /mnt/hgfs/ -o allow_other -o uid=1000 -o gid=1000 -o umask=022 -o nonempty
永久生效
写入 /etc/profile
cat >> /etc/profile <<EOF
vmhgfs-fuse .host:/ /mnt/hgfs/ -o allow_other -o uid=1000 -o gid=1000 -o umask=022 -o nonempty
EOF
写入 /etc/fstab !!! 有可能导致无法启动
.host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0