如何给Red Hat Linux安装Vmware Tools
楼主那你肯定是在虚拟机上安装的redhat Linux哦。VMware Tools是VMware虚拟机中自带的增强工具包,用于增强虚拟机显卡与硬盘性能、同步虚拟机与主机的时钟时间、最主要的是可以支持虚拟机与主机之间的文件拖拽传输。第1步:在虚拟软件中选择“安装/重新安装VMware Tools(T)”
第2步:安装VMwareTools功能增加包(请用root用户登陆系统):
创建/media/cdrom目录:
[root@centos ~]# mkdir -p /media/cdrom
将光驱设备挂载到该目录上:
[root@centos ~]# mount /dev/cdrom /media/cdrom
进入到该挂载目录:
[root@centos ~]# cd /media/cdrom
将功能增强包复制到/home目录中:
[root@centos cdrom]# cp VMwareTools-9.9.0-2304977.tar.gz /home
进入到/home目录中:
[root@centos cdrom]# cd /home
解压功能增强包:
root@centos home]# tar xzvf VMwareTools-9.9.0-2304977.tar.gz
………………此处省略解压过程细节………………
进入解压文件夹中:
[root@centos home]# cd vmware-tools-distrib/
运行安装脚本并加上参数-d,代表默认安装:
[root@centos vmware-tools-distrib]# ./vmware-install.pl -d
The installer has detected an existing installation of linuxprobe com/chapter-01 html open-vm-tools on this
………………省略部分安装过程………………
当您看到这个字样后,重启后即可正常使用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@centos ~]# reboot