1、银河麒麟桌面V10(SP1) linux 5.4.18-23-generic #9b1-KYLINOS ---也是ubuntu?
查看运行类型
runlevel
返回N 5 <---图形界面, 对应启动/etc/rc5.d下S??程序
建立服务脚本vm-share-file.sh
sudo vim /etc/init.d/vm-share-file.sh
内容
!/bin/sh -e
vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
exit 0
保存退出 :wq
增加执行权限:
sudo chmod 777 /etc/init.d/vm-share-file.sh
链接到rc5.d
sudo ln -s /etc/init.d/vm-share-file.sh /etc/rc5.d/S99vm-share-file
重新启动
reboot
完成
2、优麒麟20.04 Linux 5.10.0-1027-oem #28-Ubuntu
在1、银河麒麟桌面最后重新启动前增加下面操作:
cd /etc/init.d
sudo update-rc.d vm-share-file.sh defaults 95
然后重新启动
完成
参考:
1、安装VMWare tools,以及解决安装后/mnt中有hgfs但没共享文件的方法 https://www.cnblogs.com/jiu0821/p/5946062.html
2、中标麒麟虚拟机与windows系统共享文件夹 https://blog.csdn.net/weixin_42121713/article/details/106563346
3、VMware-tools安装以及找不到共享文件夹的解决办法 https://blog.csdn.net/BjarneCpp/article/details/95899425
4、Ubuntu下添加开机启动项的2种方法 https://www.jb51.net/os/Ubuntu/181138.html