用vmware共享windows的文件夹给Linux(centos7)永久生效

 首先要安装或重新安装VMwareTools,之后就会看到/mnt/hgfs(/mnt/hgfs这个文件夹不是手动创建的,是安装完成vmtools后产生的)  

 1.右键点击vmware中的client机,选择设置
    2.找到"选项" -> "共享文件夹" 
    3.选择"总是启用"
    4.在文件夹区域中添加要共享的目录
        d:/hao
    5.确定.
    6.重启客户机.
    cd /mnt/hgfs 就会看到hao文件夹。如果看不到,执行下面的操作

vmware-hgfsclient  #命令查看当前有哪些共享的目录 
vmhgfs-fuse .host:/*** /mnt/hgfs/***  //挂载

之后就ok了

用vmware共享windows的文件夹给Linux(centos7)永久生效_第1张图片

每次重启虚拟机,要重新挂载(vmhgfs-fuse .host:/*** /mnt/hgfs/*** //挂载)。

记住,一定要加allow_other选项,不然之后的hgfs文件普通用户不能访问

vmhgfs-fuse .host:/ /mnt/hgfs/ -o nonempty -o allow_other    这行可以

vmhgfs-fuse .host:/D /mnt/hgfs/D -o nonempty -o allow_other    这行可以

mkdir D

开机启动,都不行

#.host:/ /mnt/hgfs vmhgfs defaults 0 0

#.host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0

#vmhgfs-fuse .host:/ /mnt/hgfs/ -o nonempty -o allow_other

vmhgfs-fuse .host:/ /mnt/hgfs/ -o nonempty -o allow_other,defaults 0 0

echo "vmhgfs-fuse .host:/hao /mnt/hgfs/hao" >> /etc/rc.d/rc.local(这个不行)

echo "vmhgfs-fuse .host:/hao /mnt/hgfs/hao" >> /etc/fstab(这个不行)

要开启启动,永久生效,参看:

https://blog.csdn.net/f110300641/article/details/84196062

用vmware共享windows的文件夹给Linux(centos7)永久生效_第2张图片

 

 

 

你可能感兴趣的:(虚拟机)