未安装 vmhgfs 文件系统来使用共享文件夹

未安装 vmhgfs 文件系统来使用共享文件夹

全新安装后,我无法将共享文件夹挂载到 /mnt/hgfs。我创建了 hgfs 目录,清除了“open-vm-tools-dkms”,并重新安装了我在其他地方找到的“öpen-vm-tools”。但似乎不起作用。

我看到有一个“vmware-vmblock-fuse”进程正在运行,但是 /proc/filesystems 显示“vmhgfs”不在内核中。

答案1

好的,我刚发布这个问题就找到了解决方案。这个 for lines 帮我解决了这个问题,现在让我们看看它是否稳定运行(过去 hgfs 并不总是这样)

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

答案2

我在 Poweredge Centos 6 服务器和 VMWare Workstation 11.1.0 build-2496824 上的操作指南

操作以在 VM 上显示我的共享文件夹:

Linux debian 4.9.0-8-amd64 #1 SMP Debian 4.9.110-3+deb9u5 (2018-09-30) x86_64 GNU/Linux

$ sudo apt-get update
$ sudo apt-get install git fuse
$ git clone https://github.com/rasa/vmware-tools-patches.git
$ cd vmware-tools-patches
$ sudo ./patched-open-vm-tools.sh
$ cd vmware-tools-patches (you see user@debian:~/vmware-tools-patches/vmware-tools-patches$)
$ cd vmware-tools-distrib
$ sudo ./vmware-install.pl

并从向导中选择默认选项

这些步骤修复了我从 Centos 到 Debian VM 的共享文件夹,感谢@Lothars Reloaded Scholz :)

相关内容