vmware-workstation 中安装Ubuntu18.04后 完美安装vmtools工具

经过一天的探索,我整理了VMTOOLS安装过程中用到的各种命令,如下:

一.安装vmtools
1.虚拟机上点击安装VMTOOLS选项;

2.打开CD ,将*.tar.gz压缩包文件复制到home目录下;例如我安装的时候压缩包名为:
3.解压:tar -zxvf *.tar.gz ;
4.进入文件夹:cd vmware-tools-distrib/
5.运行脚本:sudo ./vmware-install.pl
安装过程中输入若干yes或者按回车键
直到出现
Enjoy
–the Vmware team
6.重启:reboot

扩展:/usr/bin下有个vmware-config-tools.pl配置文件,每次也可以运行这个脚本挂载vmtools
二.挂载配置
1.挂载命令(每次重启要手动挂载)
sudo vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other,nonempty
2.配置自动挂载(系统开机自动挂载)
在**/etc/fstab**尾部添加如下语句:
.host:/ /mnt/hgfs fuse.vmhgfs-fuse allow_other,defaults 0 0

卸载vmtools,可以运行下面四条命令
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

上一篇:海外aws-ubuntu-16.04系统使用ansible安装tidb


下一篇:虚拟机设置共享文件夹及相关问题