无法看到 /mnt/hgfs 中的共享文件夹

无法看到 /mnt/hgfs 中的共享文件夹

我正在尝试在Lubuntu 13.04(在 VMware Player 中)和 Windows 7 64 位。我按照教程操作到第 16 步。我输入了一个命令,但什么也没看到。我还进入了 /mnt/hgfs 文件夹,但什么也没看到。我该如何修复这个问题?

http://theholmesoffice.com/how-to-share-folders-between-windows-and-ubuntu-using-vmware-player/

命令 -

dir /mnt/hgfs

附加内容 -

顺便说一下,我实际上是这样到达第 16 步的。

步骤 12 -sudo apt-get install hgfsclient 步骤 14 - 如果不奏效,请按照本教程操作 -http://www.liberiangeek.net/2013/03/how-to-quickly-install-vmware-tools-in-ubuntu-13-04-raring-ringtail/ 步骤 16-卡住!!!

答案1

在 Linux 上安装 VM-Ware Tools

sudo apt-get -y install open-vm-tools-desktop fuse && reboot

此命令将从主机共享的所有文件挂载到 /mnt/hgfs

sudo mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other

答案2

我遇到了同样的问题。

以下是对类似问题的回答:https://askubuntu.com/a/290528,我在第 16 步之前安装了 open-vm-tools。完成后,我能够成功完成第 16 步并继续我的工作。

sudo apt-get install linux-source
sudo apt-get install open-vm-tools

我不需要使用链接答案中建议的 mount 命令。

答案3

您需要做的就是安装,如果它不能自动安装,open-vm-tools 请使用命令。(您也可以使用特定选项将安装路径放入自动安装中)mount/etc/fstabmount source destination

相关内容