本文介绍如何用VMTools共享Windows和Ubuntu虚拟机下的文件,本文所用系统 host: win10 guest: Ubuntu 20.04 LTS, VM版本15.5pro
1. 首先在VM安装VM tools
可以直接通过VMWare安装,也可以在虚拟机中用如下命令:
sudo apt-get install open-vm-tools open-vm-tools-desktop
安装完要重启VM
2. VMWare - VM - Settings - share folders, 添加一个文件夹
我这里命名为VMShared
3. 在Ubuntu中进行挂载
sudo vmhgfs-fuse .host:/ /mnt/ -o allow_other -o uid=1000
之后用 vmware-hgfslient 命令,看到已经挂载
再执行一次
sudo vmhgfs-fuse .host:/VMShared /mnt/ -o allow_other -o uid=1000
之后cd到/mnt/VMShared,实现共享。