ubuntu18.04共享文件夹开机自动挂载

一、挂载共享文件夹

根据内核版本使用不同命令挂载,使用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
上一篇:用户态文件系统fuse学习


下一篇:解决keras.backend.reshape中的错误ValueError: Tried to convert 'shape' to a tensor and failed. Er