经过一天的探索,我整理了VMTOOLS安装过程中用到的各种命令,如下:
在vmware中,设置的共享文件夹默认挂载在Ubuntu系统中的**/mnt/hgfs**目录下 一.安装vmtools 1.虚拟机上点击安装VMTOOLS选项; 2.打开CD ,将*.tar.gz压缩包文件复制到home目录下;例如我安装的时候压缩包名为:VMwareTools-10.0.6-3595377.tar.gz 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.挂载命令(每次重启要手动挂载) 将共享文件夹挂载到/mnt/hgfs目录下 sudo vmhgfs-fuse .host:/ /mnt/hgfs -o subtype=vmhgfs-fuse,allow_other,nonempty 2.配置自动挂载(系统开机自动挂载) 在/etc/fstab文件中进行配置: 运行sudo vim /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