解决vmware上ubuntu无法共享文件夹问题(ubuntu22.04)
1 sudo apt install open-vm-tools*
1 vmware-hgfsclient
如果出现有挂载对应的文件夹就起效
1 sudo mkdir /mnt/hgfs
手动挂载方法
但是每次重启都得挂载一遍,比较麻烦
1 sudo vmhgfs-fuse .host:/VMshare /mnt/hgfs
自动挂载方法
1 sudo cp /etc/fstab /etc/fstab.bak 2 sudo vim /etc/fstab
在最后一行插入这样一句
1 .host:/VMshare /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0
VMshare是自己设置的文件夹名称,/mnt/hgfs挂载点,fuse.vmhgfs-fuse挂载方法
由于配置自动挂载文件容易配置错误导致系统进入emergency mode,最好要备份好fstab文件,并且做好虚拟机快照,或者搜索在emergency mode的恢复方法
然后cd到/mnt/hgfs里就能看到共享的文件了,有可能需要管理员权限
1 sudo vmware-uninstall-tools.pl 2 sudo apt-get remove open-vm-tools 3 sudo apt-get remove --auto-remove open-vm-tools 4 sudo apt-get purge open-vm-tools 5 sudo apt-get purge --auto-remove open-vm-tools
参考引用:
https://www.cnblogs.com/nanopeng/p/7017351.html
https://blog.csdn.net/weixin_43445661/article/details/109497763
https://blog.csdn.net/weixin_44565095/article/details/95937794