博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
VMware下centos7安装VMware Tools
阅读量:6368 次
发布时间:2019-06-23

本文共 1796 字,大约阅读时间需要 5 分钟。

右键虚拟机设置,找到CD/DVD,选择使用ISO映像文件,在VMware安装目录下找到linux.iso。
VMware下centos7安装VMware Tools - 怀素真 - 因上努力 果上随缘
 
挂载iso文件
> mount -t auto /dev/cdrom /mnt/cdrom
如果/mnt下没有cdrom文件夹,则创建
> cd /mnt> mkdir cdrom
把/mnt/cdrom下的VMwareTools-10.0.10-4301679.tar.gz拷贝到/data目录下
> cd /mnt/cdrom> cp VMwareTools-10.0.10-4301679.tar.gz /data
解压压缩包并执行vmware-install.pl
> tar -zxvf VMwareTools-10.0.10-4301679.tar.gz> cd vmware-tools-distrib> ./vmware-install.pl
Do you still want to proceed with this legacy installer? yes看到如下信息一路回车默认就好了Installing VMware Tools.In which directory do you want to install the binary files?[/usr/bin]What is the directory that contains the init directories (rc0.d/ to rc6.d/)?[/etc/rc.d]What is the directory that contains the init scripts?[/etc/rc.d/init.d]In which directory do you want to install the daemon files?[/usr/sbin]In which directory do you want to install the library files?[/usr/lib/vmware-tools]

如果一直提示如下信息

What is the location of the "ifconfig" program on your machine?

请安装ifconfig,重新执行vmware-install.pl

> yum search ifconfig> yum install net-tools.x86_64

如果一直提示如下信息

The path "" is not a valid path to the 3.10.0-327.el7.x86_64 kernel headers.
Would you like to change it?

则需要安装

> yum install kernel-devel

然后在上面的步骤里输入内核头文件的目录

/usr/src/kernels/3.10.0-327.36.3.el7.x86_64/include

如果出现如下信息

The path "/usr/src/kernels/3.10.0-327.36.3.el7.x86_64/include" is not a valid
path to the 3.10.0-327.el7.x86_64 kernel headers

> ln -s /usr/src/kernels/3.10.0-327.36.3.el7.x86_64/include/generated/uapi/linux/version.h/usr/src/kernels/3.10.0-327.36.3.el7.x86_64/include/linux/version.h

此时如果你的vmtools版本比较旧的话,还是会提示not a valid path。

这是因为3.x版本的内核version.h的路径变了,导致vmtools无法找到。

一路默认回车就好了,最后出现如下信息,说明安装成功,重启虚拟机。
Enjoy,--the VMware teamFound VMware Tools CDROM mounted at /mnt/cdrom. Ejecting device /dev/sr0 ...
> umount /mnt/cdrom> shutdown -r now

 

 

 

转载地址:http://ctema.baihongyu.com/

你可能感兴趣的文章
大隐隐于市,你身边的那些安全隐患你都知道么?
查看>>
物联网市场迅猛发展 “中国芯”如何把握机会?
查看>>
aws 上使用elb 的多域名问题
查看>>
环球花木网的目标就是致力于打造成为“园林相关行业的专业性门户网站
查看>>
《编写高质量代码:改善c程序代码的125个建议》—— 建议14-1:尽量避免对未知的有符号数执行位操作...
查看>>
《C语言编程魔法书:基于C11标准》——2.2 整数在计算机中的表示
查看>>
全球程序员编程水平排行榜TOP50,中国排名第一
查看>>
HDFS 进化,Hadoop 即将拥抱对象存储?
查看>>
Edge 浏览器奇葩 bug:“123456”打印成“114447”
查看>>
Sirius —— 开源版的 Siri ,由 Google 支持
查看>>
《OpenGL ES应用开发实践指南:Android卷》—— 2.7 小结
查看>>
《Windows Server 2012活动目录管理实践》——第 2 章 部署第一台域控制器2.1 案例任务...
查看>>
Java Date Time 教程-时间测量
查看>>
Selector.wakeup实现注记
查看>>
《Java EE 7精粹》—— 第1章 Java EE 1.1 简介
查看>>
《Exchange Server 2013 SP1管理实践》——导读
查看>>
syslog:类Unix系统常用的log服务
查看>>
使用Annotation设计持久层
查看>>
深入实践Spring Boot2.4.1 Neo4j依赖配置
查看>>
Zen Cart 如何添加地址栏上的小图标
查看>>