1、现象
ubuntu 22 + vmware 16,安装后会发现 “Reinstall VMware Tools…” 灰色不可用。如图:
2、原因分析
ubuntu 22 ISO 内不再提供 VMware Tools 的安装包,未检测到所以灰色不可用
在 Ubuntu 22 上挂载 Windows HGFS 共享目录,你需要安装并配置 open-vm-tools。
3、解决方案
- 安装 open-vm-tools
# 清理
sudo apt-get --purge remove open-vm-tools
sudo apt-get --purge remove open-vm-tools-desktop# 重新安装
sudo apt update
sudo apt install open-vm-tools # 非图形
sudo apt install open-vm-tools-desktop # 图形界面# 重启
reboot
- 设置共享目录
# VM | Settings | Options | Shared Folders
- 如果看不到共享目录,可以手动挂载
# 查看共享目录,输出类似:host-shared 共享目录名字
vmware-hgfsclient# 挂载
# 其中:host-shared 就是 vmware-hgfsclient 命令查看到的名字
sudo vmhgfs-fuse .host:/host-shared /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other
- 设置自动挂载
sudo nano /etc/fstab# 行尾添加
.host:/host-shared /mnt/hgfs fuse.vmhgfs-fuse allow_other 0 0# 保存并关闭文件(按 Ctrl+X,然后按 Y 和 Enter)
# 重启
- 其他
# 启动服务
systemctl start open-vm-tools.service# 设置开机启动
systemctl enable open-vm-tools.service# 查看服务状态
systemctl status open-vm-tools.service
4、完成上述步骤
在 Files | Other Locations | Computer > mnt/hgfs 应该就可以看到共享目录了
本文链接:https://my.lmcjl.com/post/3563.html
展开阅读全文
4 评论