适用于 Ubuntu 16.04 LTS Xenial 的 VMware 工具

xpt*_*xpt 8 vmware ubuntu ubuntu-16.04

有人知道如何让 VMware Tools 为最新的 Ubuntu 16.04 LTS Xenial 工作吗?

我一直 为我的 Ubuntu 15.04 Vivid使用这里的补丁,效果很好。但对于 Ubuntu 16.04 LTS Xenial 则不再适用。下面附上错误。

如果 VMware Tools 不工作,我将无法看到hgfs来自主机的共享。

github查找错误,它说

使用 open-vm-tools 10.0,不再需要构建 vmhgfs 模块。这不是必需的,因为 HGFS 实现是基于 10.0 的 FUSE。

所以我删除了VMware Tools,然后安装了官方的open-vm-tools

$ apt-cache policy open-vm-tools
open-vm-tools:
  Installed: 2:10.0.7-3227872-2ubuntu2
  Candidate: 2:10.0.7-3227872-2ubuntu2
  Version table:
 *** 2:10.0.7-3227872-2ubuntu2 500
...

$ apt-cache search hgfs | wc 
      0       0       0

$ df
Filesystem     1K-blocks    Used Available Use% Mounted on
udev              481988       0    481988   0% /dev
tmpfs              99852    4548     95304   5% /run
/dev/sda1       31863728 1699600  28522504   6% /
tmpfs             499248       0    499248   0% /dev/shm
tmpfs               5120       0      5120   0% /run/lock
tmpfs             499248       0    499248   0% /sys/fs/cgroup
Run Code Online (Sandbox Code Playgroud)

但是,我仍然无法看到hgfs来自主机的共享。

谢谢

/tmp/modconfig-VJIcMa/vmhgfs-only/link.c:59:21: warning: initialization from incompatible pointer type [-Wincompatible-pointer-types]
.follow_link   = HgfsFollowlink,
                 ^
/tmp/modconfig-VJIcMa/vmhgfs-only/link.c:59:21: note: (near initialization for ‘HgfsLinkInodeOperations.follow_link’)
/tmp/modconfig-VJIcMa/vmhgfs-only/link.c:61:21: warning: initialization from incompatible pointer type [-Wincompatible-pointer-types]
.put_link      = HgfsPutlink,
                 ^
/tmp/modconfig-VJIcMa/vmhgfs-only/link.c:61:21: note: (near initialization for ‘HgfsLinkInodeOperations.put_link’)
/tmp/modconfig-VJIcMa/vmhgfs-only/link.c: In function ‘HgfsFollowlink’:
/tmp/modconfig-VJIcMa/vmhgfs-only/link.c:127:10: error: implicit declaration of function ‘nd_set_link’ [-Werror=implicit-function-declaration]
      nd_set_link(nd, fileName);
      ^
/tmp/modconfig-VJIcMa/vmhgfs-only/link.c: In function ‘HgfsPutlink’:
/tmp/modconfig-VJIcMa/vmhgfs-only/link.c:276:15: error: implicit  declaration of function ‘nd_get_link’ [-Werror=implicit-function-declaration]
fileName = nd_get_link(nd);
           ^
/tmp/modconfig-VJIcMa/vmhgfs-only/link.c:276:13: warning: assignment makes pointer from integer without a cast [-Wint-conversion]
fileName = nd_get_link(nd);
         ^

$ uname -a 
Linux uname 4.4.0-21-generic #37-Ubuntu SMP Mon Apr 18 18:33:37 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
Run Code Online (Sandbox Code Playgroud)

小智 22

查看“vmhgfs-fuse”命令。

我能够做到以下几点:

我创建了一个目录来挂载 hgfs 共享,我们称之为 ~/vmshare。然后我做了:

vmhgfs-fuse ~/vmshare
Run Code Online (Sandbox Code Playgroud)

在我的系统上,使用与您正在使用的相同版本的 open-vm-tools,将共享磁盘正确安装到 ~/vmshare/ 中。

如果您不想在用户的主目录中共享,您可能必须使用 sudo 和其他参数来 vmhgfs-fuse。