广告

本站里的文章大部分经过自行整理与测试

2016年8月2日星期二

Vmware - Linux - hgfs - Shared Folders 不能用

在 Linux  安装了 Vmware Tools 与设置了不能用 Shared Folders (hgfs)?

1. 检查

# 确定已设置 Shared Folders (在 VM - Settings - Options - Shared Folders 设置)
$ vmware-hgfsclient

# 查看 /mnt/hgfs 是否已挂载 Shared Folders
$ ls /mnt/hgfs


如果没有挂载, 就表示 Vmware Tools 安装有问题了

2. 卸载 vmware tools

$ su
$ vmware-uninstall-tools.pl

3. 安装

Ubuntu (apt) / Fedora (dnf) / CentOS (yum) / OpenSUSE (zypper)

$ apt install open-vm-tools-desktop

$ apt install git
$ git clone https://github.com/rasa/vmware-tools-patches.git
$ cd vmware-tools-patches
$ ./patched-open-vm-tools.sh


4. 挂载 hgfs


$ mkdir /mnt/hgfs

# 暂时挂载 hgfs
$ vmhgfs-fuse -o allow_other -o auto_unmount .host:/ /mnt/hgfs

# 开机自动挂载 hgfs (改后重启)
$ gedit /etc/fstab

.host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,uid=1000,gid=1000,auto_unmount,users,defaults 0 0

没有评论:

发表评论