如何在Linux命令行模式安装VMware Tools

如题所述

第1步:在虚拟软件中选择“安装/重新安装VMware Tools(T)”:
第2步:安装VMwareTools功能增加包(请用root用户登陆系统):
创建/media/cdrom目录:
[root@linuxprobe ~]# mkdir -p /media/cdrom

将光驱设备挂载到该目录上:
[root@linuxprobe ~]# mount /dev/cdrom /media/cdrom

进入到该挂载目录:
[root@linuxprobe ~]# cd /media/cdrom

将功能增强包复制到/home目录中:
[root@linuxprobe cdrom]# cp VMwareTools-9.9.0-2304977.tar.gz /home

进入到/home目录中:
[root@linuxprobe cdrom]# cd /home

解压功能增强包:
root@linuxprobe home]# tar xzvf VMwareTools-9.9.0-2304977.tar.gz
vmware-tools-distrib/
vmware-tools-distrib/FILES
vmware-tools-distrib/doc/
vmware-tools-distrib/doc/open_source_licenses.txt
vmware-tools-distrib/doc/INSTALL
vmware-tools-distrib/doc/README
vmware-tools-distrib/installer/
vmware-tools-distrib/installer/services.sh
vmware-tools-distrib/installer/guestproxy-ssl.conf
vmware-tools-distrib/installer/thinprint.sh
vmware-tools-distrib/installer/upstart-job.conf
………………此处省略解压过程细节………………

进入解压文件夹中:
[root@linuxprobe home]# cd vmware-tools-distrib/

运行安装脚本并加上参数-d,代表默认安装:
[root@linuxprobe vmware-tools-distrib]# ./vmware-install.pl -d
The installer has detected an existing installation of open-vm-tools on this
system and will not attempt to remove and replace these user-space
applications. It is recommended to use the open-vm-tools packages provided by
the operating system. If you do not want to use the existing installation of
open-vm-tools and attempt to install VMware Tools, you must uninstall the
open-vm-tools packages and re-run this installer.
The installer will next check if there are any missing kernel drivers. Type yes
if you want to do this, otherwise type no [yes]
………………省略部分安装过程………………
当您看到这个字样后,重启后即可正常使用VmwareTools啦。
Creating a new initrd boot image for the kernel.
Starting Virtual Printing daemon: done
Starting vmware-tools (via systemctl): [ OK ]
The configuration of VMware Tools 9.9.0 build-2304977 for Linux for this
running kernel completed successfully.
Enjoy,
--the VMware team

第3步:重新启动系统后生效:
[root@linuxprobe ~]# reboot
温馨提示:答案为网友推荐,仅供参考
第1个回答  2016-04-22
选择菜单栏“虚拟机”——“安装VMware tools” ,等待系统自动更换ISO光盘
mount /dev/cdrom /mnt
cd /mnt
tar zxvf VMwareTools-9.6.0-1294478.tar.gz -C /root/(安装到的目录)
cd /root/
cd vmware-tools-distrib/
./vmware-install.pl
一路回车,完成后重启系统本回答被提问者采纳
第2个回答  2018-05-15
在Linux命令行模式安装VMware Tools
1、首先启动CentOS 7,在VMware中点击上方“VM”,点击“Install VMware Tools...”(如已安装则显示“Reinstall VMware Tools...”)。

2、在命令行输入“ls /dev”查看。

3、输入“mkdir /mnt/cdrom”在/mnt目录下新建一个名为cdrom的文件夹。
第3个回答  2016-04-30
解压后直接执行./vmware-install.pl,很简单啊。
参考这个吧:http://jingyan.baidu.com/article/1974b289b813dcf4b1f77411.html
相似回答