一、挂载共享文件夹
根据内核版本使用不同命令挂载,使用root权限。内核版本为4.0之前使用
:
mount -t vmhgfs .host:/ /mnt/hgfs
内核版本为4.0之后前使用
:
vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
二、重启系统之后自动挂载
root权限下修改/etc/fstab
vi /etc/fstab
在fstab文件最末尾加入下面行
.host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other 0 0