End.

VMWare设置共享文件夹,常用挂载命令

VMWare共享文件夹配置,参考文章《虚拟机VMware tools 安装到centos7中,并且挂载共享文件夹(开机自动挂载)


1、查看共享目录

vmware-hgfsclient

[root@localhost ~]# vmware-hgfsclient
Project



2、挂载命令

命令1:sudo mount -t vmhgfs .host:/Project /mnt/hgfs


命令2:vmhgfs-fuse .host:/Project /mnt/hgfs


命令3:sudo /usr/bin/vmhgfs-fuse .host:/Project /mnt/hgfs -o allow_other -o uid=1000 -o gid=1000 -o umask=022



3、取消挂载

umount /mnt/hgfs

End.