VMwareTools搭建完成后共享的问题
VMwareTools安装百度搜索安装,不赘述了。
这里说下VMwareTools安装后共享文件显示问题,进入共享文件夹目录 cd /mnt/hgfs,如果是空的请打开菜单 虚拟机>设置>选项>共享文件夹>选中总是启用>文件夹选择。
有时会遇到开机共享文件夹下不显示,也可以设置先禁用共享文件夹,再重新设置启用共享。
要编辑 /mnt/hgfs共享文件没权限怎么办,查看权限 ls -l /mnt/。
修改权限sudo chmod 777 hgfs
,结果输出 chmod: changing permissions of 'hgfs': No such file or directory
$ su - 切换到root 权限,执行 /usr/sbin/setenforce 0,这时共享文件夹可读可写
后续如果还不能读写重新挂载下sudo vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
如有错误,加上-o nonempty
参数:
fuse: mountpoint is not empty
fuse: if you are sure this is safe, use the 'nonempty' mount option