在Ubuntu中启用hgfs(Host Guest File System)主要是为了实现主机和虚拟机之间的文件共享。hgfs是VMware提供的一种文件共享机制。以下是启用hgfs的步骤:
sudo vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other -o nonempty
/etc/init.d/vmware-tools
文件:sudo vim /etc/init.d/vmware-tools
main "$@"这一行前面添加:vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other -o nonempty
。ls /mnt/hgfs
通过以上步骤,你可以成功在Ubuntu中启用hgfs并实现主机和虚拟机之间的文件共享。