vmware安装deepin共享问题
Tofloor
poster avatar
yykheu
deepin
2019-05-05 18:56
Author
vmware虚拟机设置完共享文件夹后,deepin系统在哪里查看?挂到哪里了?
Reply Favorite View the author
All Replies
avatar
liwl
deepin
2019-05-05 20:35
#1
在/mnt/hgfs
Reply View the author
avatar
aida
deepin
2019-05-05 21:54
#2
你好,虚拟机环境df -h 看一下应该会有显示宿主机挂载目录的路径
Reply View the author
avatar
tanjn
deepin
2020-01-27 05:35
#3
本帖最后由 tanjn 于 2020-1-26 21:38 编辑

参看这个贴子:
https://bbs.deepin.org/post/182005


需要执行如下两条命令:

(1)安装:
sudo apt-get install open-vm-*
(注意上面的软件包名后就是*,而不是别的字符)

(2)挂载:
sudo mount -t fuse.vmhgfs-fuse .host:/G  /mnt/G -o allow_other
(上面的/G是从host系统共享出来的G文件夹,/mnt/G是挂载点)
如果需要每次重启系统后自动挂载,则在/etc/fstab文件末尾添加一行:
.host:/G /mnt/G fuse.vmhgfs-fuse allow_other 0 0

以上解决方法参考了如下链接:http://www.144d.com/post-566.html
Reply View the author