虚拟机共享文件夹不显示

#### 有网的时候安装vmvare-tools
```
sudo apt-get install open-vm-tools
sudo yum install open-vm-tools
```


#### 设置了共享文件夹但是/mnt下没有任何文件
```
/usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
或者
/usr/bin/vmhgfs-fuse .host:/ /mnt/hgfs
问题
这边的文件只有超级用户才能使用界面化操作,普通用户可以通过终端切换超级用户然后使用命令行进行操作
```
#### 加入自动启动
```
加入自动启动
vi  /etc/rc.d/rc.local
/usr/bin/vmhgfs-fuse .host:/ /www/web -o subtype=vmhgfs-fuse,allow_other
保存
chmod +x /etc/rc.d/rc.local
```

你可能感兴趣的:(虚拟机共享文件夹不显示)