1.首先在Vmware中选择要安装的虚拟主机右键看到安装vmwaretools
2.然后进入系统使用文件挂载
首先在/media下mkdir cdrom(新建一个文件夹用来做挂载点)
然后是有命令 mount挂载文件
mount -t iso9660 /dev/cdrom /media/cdrom
3.复制出来
红色文件就是我们要找的安装文件需要将此文件cp(复制)出来
将文件VMwareTools-10.0.6-3595377.tar.gz复制到/usr/local/src文件夹下面:
cp VMwareTools-10.0.6-3595377.tar.gz /usr/local/src/
- 解压安装文件
对文件解压:tar zxf VMwareTools-10.0.6-3595377.tar.gz
(不会有显示如果希望有显示可以使用加入v的参数,关于tar请自行学习使用)
进入到解压的文件夹下面 使用命令:
./vmware-install.pl
安装会需要交互操作。安装过程中他会一步一步的有问题回应,此过程中,你遇到后面显示[yes],[no],[yes][no]的直接输入yes,然后回车。其他的问题不管[]里面是什么,直接回车就好了,不要输入。
等待安装完成即可正常了。
特别注意:
如果之前安装但是出现中断的过程会出现如下报错
A previous installation of VMware Tools has been detected.
The previous installation was made by the tar installer (version 4).
Keeping the tar4 installer database format.
You have a version of VMware Tools installed. Continuing this install will
first uninstall the currently installed version. Do you wish to continue?
(yes/no) [yes] yes
Error: Unable to find the binary installation directory (answer BINDIR)
in the installer database file "/etc/vmware-tools/locations".
Uninstall failed. Please correct the failure and re run the install.
Execution aborted.
出现此报错一般都是因为安装过程中中断导致的问题。不过你yes还是no都不行 需要删除文件
rm -rf /etc/vmware-tools rm -rf /tmp/vm*
在执行安装./vmware-install.pl和之前步骤一样回车和yes即可了