挂载共享目录前需要先安装open-vm-tools
代码语言:javascript
复制apt install open-vm-tools -y
手动挂载:
代码语言:javascript
复制mount -t fuse.vmhgfs-fuse .host:/ /mnt/hgfs -o allow_other
自动挂载:
代码语言:javascript
复制echo ".host:/ /mnt/hgfs fuse.vmhgfs-fuse auto,allow_other 0 0" >> /etc/fstab && mount -a