redhat中vmware redhat-tools安装成功,但是没有效果

关于安装vmware tools在linux Redhat4中_linux吧_百度贴吧
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&签到排名:今日本吧第个签到,本吧因你更精彩,明天继续来努力!
本吧签到人数:0成为超级会员,使用一键签到本月漏签0次!成为超级会员,赠送8张补签卡连续签到:天&&累计签到:天超级会员单次开通12个月以上,赠送连续签到卡3张
关注:179,829贴子:
关于安装vmware tools在linux Redhat4中收藏
在安装时出现这种情况怎么破?谢谢各位大神们。
linux主机苏宁易购电脑大牌优惠,质量保证,您用的放心!linux主机,苏宁易购,品牌网购商城,品牌专属网络销售,支持货到付款,省钱又放心!
再试了一次还是这样
登录百度帐号推荐应用Manually Install or Upgrade VMware Tools in a Linux Virtual Machine
Manually Install or Upgrade VMware Tools in a Linux Virtual Machine
For Linux virtual machines, you manually install or upgrade VMware Tools by using the command line.
Install the latest version of VMware Tools to enhance the performance of the virtual machine's guest operating system and improve virtual machine management. When you power on a virtual machine, if a new version of VMware Tools is available, you see a notification in the status bar of the guest operating system.
This procedure describes how to use the VMware Tools tar installer to install or upgrade VMware Tools. For virtual machines in a vSphere environment, you can alternatively use VMware Tools operating system specific packages (OSPs) to install and upgrade VMware Tools. With OSPs you can use the native update mechanisms of your operating system to download, install, and manage VMware Tools. For more information, see .
Prerequisites
Power on the virtual machine.
Verify that the guest operating system is running.
Because the VMware Tools installer is written in Perl, verify that Perl is installed in the guest operating system.
To determine whether you have the latest version of VMware Tools, look on the Summary tab for the virtual machine.
1Select the menu command to mount the VMware Tools virtual disc on the guest operating system.
Inventory & Virtual Machine & Guest & Install/Upgrade VMware Tools
2If you are performing an upgrade or reinstallation, in the Install/Upgrade VMware Tools dialog box, select Interactive Tools Installation or Interactive Tools Upgrade and click OK.
The process starts by mounting the VMware Tools virtual disc on the guest operating system.
3In the virtual machine, log in to the guest operating system as root and open a terminal window.
4Run the mount command with no arguments to determine whether your Linux distribution automatically mounted the VMware Tools virtual CD-ROM image.
If the CD-ROM device is mounted, the CD-ROM device and its mount point are listed as something like this:
/dev/cdrom on /mnt/cdrom type iso9660 (ro,nosuid,nodev)
5If the VMware Tools virtual CD-ROM image is not mounted, mount the CD-ROM drive.
If a mount point directory does not already exist, create it.
mkdir /mnt/cdrom
Some Linux distributions use different mount point names. For example, on some distributions the mount point is /media/VMware Tools rather than /mnt/cdrom. Modify the command to reflect the conventions that your distribution uses.
Mount the CD-ROM drive.
mount /dev/cdrom /mnt/cdrom
Some Linux distributions use different device names or organize the /dev directory differently. If your CD-ROM drive is not /dev/cdrom or if the mount point for a CD-ROM is not /mnt/cdrom, modify the command to reflect the conventions that your distribution uses.
6Change to a working directory (for example, /tmp).
7Delete any previous vmware-tools-distrib directory before you install VMware Tools.
The location of this directory depends on where you placed it during the previous installation. Often this directory is placed in /tmp/vmware-tools-distrib.
8List the contents of the mount point directory and note the filename of the VMware Tools tar installer.
ls mount-point
9Uncompress the installer.
tar zxpf /mnt/cdrom/VMwareTools-x.x.x-yyyy.tar.gz
The value x.x.x is the product version number, and yyyy is the build number of the product release.
If you attempt to install a tar installation over an RPM installation, or the reverse, the installer detects the previous installation and must convert the installer database format before continuing.
10If necessary, unmount the CD-ROM image.
umount /dev/cdrom
If your Linux distribution automatically mounted the CD-ROM, you do not need to unmount the image.
11Run the installer and configure VMware Tools.
cd vmware-tools-distrib
./vmware-install.pl
Usually, the vmware-config-tools.pl configuration file runs after the installer file finishes running.
12Respond to the prompts by pressing Enter to accept the default values, if appropriate for your configuration.
13Follow the instructions at the end of the script.
Depending on the features you use, these instructions can include restarting the X session, restarting networking, logging in again, and starting the VMware User process. You can alternatively reboot the guest operating system to accomplish all these tasks.
The VMware Tools label on the Summary tab changes to OK.
What to do next
(Recommended) If you upgraded VMware Tools as part of a larger, system-wide upgrade, next upgrade to the newest virtual hardware version available for the virtual machine.如果我们仔细看的话,
就会发现在VMware软件界面的左下角处显示着
“you don't have VMware Tools installed”,即我们还没安装VMware Tools。
VMware Tools有什么用呢?
VMware Tools其实就是虚拟的显卡的驱动程序,
安装以后,虚拟系统屏幕的显示效果会更好,
除此之外,我在网上还发现有人说,
安装以后,鼠标就可以在主、客系统之间自如地移动,
而不需ctrl+alt组合键来切换(这确实有点麻烦)。
接下来就简单介绍一下怎么安装VMware Tools。 1、鼠标右键点击VMware界面左侧中的虚拟系统,选择“Install VMware Tools”
注意:虚拟机必须处在开机状态,关机时无效。
此时会发现在Linux的桌面上出现一个光盘的图标,
这只是系统将VMware Tools的安装镜像文件加载到了虚拟光驱中,
而并不是真正地安装了VMware Tools。
2、找到VMware Tools安装包
右键点击Linux桌面,打开终端,依次输入以下命令(注意有空格):
cd /media/cdrom(注:进入到虚拟光驱的文件夹里)
ls(注:查看文件夹里的文件和子文件夹)
这个时候出现的“VMware Tools-5.5.3-34685.tar.gz”即安装包名字,
记住它,稍后将会用到。
3、移动安装包,然后解压安装
在刚刚的终端中,继续输入一下命令:
cd /(注:回到根目录)
cp media/cdrom/VMwareTools-5.5.3-34685.tar.gz /tmp(注:将安装包复制到tmp文件夹)
cd /tmp(注:进入tmp文件夹里)
tar zxf VMwareTools-5.5.3-34685.tar.gz(注:解压安装包)
cd vmware-tools-distrib(注:进入解压出来的文件夹里)
./vmware-install.pl(注:执行安装文件)
&&&&&&&&&&&&&&&& 如下图:
如果你的Linux中已经安装了所有的X窗口环境和开发工具,
上述的安装过程应该比较顺利,
在安装过程中,会遇到诸如“In which directory do you want to install your binary files”这类的问题,
直接按回车就行了;
如遇到诸如带有[yes]的询问时,输入yes后按回车即可。
安装完成以后,还会让我们配置分辨率:
Do you want to change your guest X resolution?
[1]640x480
[2]800x600
我的机器能支持,选择的是7,
自己根据自己机器的情况来决定。
设置分辨率,能使得屏幕在全屏显示下更清晰漂亮
注意,这的分辨率适用于全屏显示,
很多人可能习惯用窗口模式来操作虚拟系统(比如我),
那么就应该把分辨率设置得小些,比如800x600。
至此,VMware Tools就安装成功了,
需要重启一下虚拟机,使配置生效。
在虚拟机中安装了Red Hat Linux9,然后装VMtools,光盘自动挂载,但光盘中的文件只有VMwareTools×××××.tar.gz没有rpm文件。按如下方法安装:
复制Vmware tools **.tar.gz到/tmp文件夹下,然后,新建终端——输入 cd /tmp
回车——输入 tar zxf Vmware tools **.tar.gz 回车 —— 输入 ls 回车发现,会有一个名为Vmware tools distrib的文件夹 输入 cd Vmware tools distrib 回车——输入 ./vmware-install.pl (在 / 之前有一个 . )
然后回车——一直回车,直到出现 yes 然后 输入 y
回车 只要有yes 就一直输入 y。
到最后应该会出来那个选分辨率的,结果这次出来了个“what is the location of the gcc program on your machine”。
还请高手帮忙啊。我对LINUX一点基础都没有,希望写的详细些,有用的话会加分。谢谢各位高手!
我安装系统的时候选的是全部安装。主机用的是win7的系统。
刚刚解决这个问题,网络上什么找GCC,什么去官网下载gcc,还有什么编写脚本命令的,都是扯淡的。
你点击what is the location of &gcc&program on your machine 然后回车,它会问你:Would you like to change it
注意这项, 你选 NO
,输入的方法就是
空格+no
然后它就不会出现那个what is the location of &gcc&program on your machine,然后出现警告,不管他,直接全部回车按下去,最后就看到 分辨率 那个了
本文已收录于以下专栏:
相关文章推荐
http://blog.csdn.net/pipisorry/article/details/
Vmware中安装red hat linux
vm中安装一般系统一样的方法,不介绍了...
点击虚拟机,然后找到倒数第二个,安装VMware tools 工具。然后你的系统桌面就会出现这个
打开并找到工具的安装包,
将安装包放到/tmp目录下。可以直接拽过去,也可以使用cp或...
Linux安装 VMware tools 工具的方法     
VMware虚拟机中如何安装VMWare-Tools详解好处:可以支持图形界面,可以支持共享文件功能等
vmware tools
使用VMware 来安装Linux ,都会被那个VMware-Tools弄得晕头转向。现在详细向大家介绍如何安装Linux下的VMwareTools.
1.安装工具。让虚拟机运行于窗口状态,不要全...
【转载文章,参考学习】
一、REDHAT
先启动虚拟机,这个就不用说了
启动好了以后在 虚拟机(m) && 安装 VMware Tools(i)
也就是在选择菜单里 VM 选项 选择 安装...
使用vmware时,最棘手的事大概就是某些环境限制下虚拟操作系统不能得到IP了。这样跟主机之间以及外部都完全隔离,孤独的机器往往不能发挥什么作用。
  这里是网上搜到的设置linux与windows...
以ROOT帐户登录LINUX,VM菜单:VM--安装VMware Tools,打开终端:
注意:在linux的各种命令行下输入&命令&或&软件名&一定要注意大小写!
[root@rd01 ~]# ...
以ROOT帐户登录LINUX,VM菜单:VM--安装VMware Tools,打开终端:
 [root@linuxidc ~]# cd /mnt/cdrom
  [root@linux...
首先要说的是,虚拟机上不了网不是 虚拟机网络配置问题,NAT、Bridged、Host-Only无论哪种方式都是没有问题的!如果是由于虚拟机本身网络配置不对问题导致不能上网,请绕过此篇,因为网络配置问...
他的最新文章
讲师:汪剑
讲师:刘道宽
您举报文章:
举报原因:
原文地址:
原因补充:
(最多只允许输入30个字)RedHat虚拟机:Vmware&Tools的安装
如果我们仔细看的话,
&&&&&&&&&&&&&&&&
就会发现在VMware软件界面的左下角处显示着
&&&&&&&&&&&&&&&&
“you don't have VMware Tools installed”,即我们还没安装VMware Tools。
&&&&&&&&&&&&&&&&
VMware Tools有什么用呢?
&&&&&&&&&&&&&&&&
VMware Tools其实就是虚拟的显卡的驱动程序,
&&&&&&&&&&&&&&&&
安装以后,虚拟系统屏幕的显示效果会更好,
&&&&&&&&&&&&&&&&
除此之外,我在网上还发现有人说,
&&&&&&&&&&&&&&&&
安装以后,鼠标就可以在主、客系统之间自如地移动,
&&&&&&&&&&&&&&&&
而不需ctrl+alt组合键来切换(这确实有点麻烦)。
&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&
接下来就简单介绍一下怎么安装VMware Tools。
&&&&&&&&&&&&&&&&
1、鼠标右键点击VMware界面左侧中的虚拟系统,选择“Install VMware Tools”
&&&&&&&&&&&&&&&&
注意:虚拟机必须处在开机状态,关机时无效。
&&&&&&&&&&&&&&&&
<img ALT="RedHat虚拟机:Vmware Tools的安装 - 飞^^花 - 飞^^花的博客" src="/blog7style/images/common/sg_trans.gif" real_src ="http://img./photo/78udqFEgcgUAspEdF4R2Gw==/2496911.jpg"
TITLE="RedHat虚拟机:Vmware&Tools的安装" />
&&&&&&&&&&&&&&&&
此时会发现在Linux的桌面上出现一个光盘的图标,
&&&&&&&&&&&&&&&&
这只是系统将VMware Tools的安装镜像文件加载到了虚拟光驱中,
&&&&&&&&&&&&&&&&
而并不是真正地安装了VMware Tools。
&&&&&&&&&&&&&&&&
<img ALT="RedHat虚拟机:Vmware Tools的安装 - 飞^^花 - 飞^^花的博客" src="/blog7style/images/common/sg_trans.gif" real_src ="http://img./photo/o0ZMsn4n-5o9Z-vTr98fHw==/2496912.jpg"
TITLE="RedHat虚拟机:Vmware&Tools的安装" />
&&&&&&&&&&&&&&&&
2、找到VMware Tools安装包
&&&&&&&&&&&&&&&&
右键点击Linux桌面,打开终端,依次输入以下命令(注意有空格):
&&&&&&&&&&&&&&&
cd /media/cdrom(注:进入到虚拟光驱的文件夹里)
&&&&&&&&&&&&&&&&
ls(注:查看文件夹里的文件和子文件夹)
&&&&&&&&&&&&&&&&
<img ALT="RedHat虚拟机:Vmware Tools的安装 - 飞^^花 - 飞^^花的博客" src="/blog7style/images/common/sg_trans.gif" real_src ="http://img./photo/NxMY6VQQfSeW3t6aerMTSg==/2496913.jpg"
TITLE="RedHat虚拟机:Vmware&Tools的安装" />
&&&&&&&&&&&
&&&&&&&&&&&&&&&&
这个时候出现的“VMware Tools-5.5.3-34685.tar.gz”即安装包名字,
&&&&&&&&&&&&&&&&
记住它,稍后将会用到。
&&&&&&&&&&&&&&&&
3、移动安装包,然后解压安装
&&&&&&&&&&&&&&&&
在刚刚的终端中,继续输入一下命令:
&&&&&&&&&&&&&&&
cd /(注:回到根目录)
&&&&&&&&&&&&&&&&
cp media/cdrom/VMwareTools-5.5.3-34685.tar.gz
/tmp(注:将安装包复制到tmp文件夹)
&&&&&&&&&&&&&&&&
cd /tmp(注:进入tmp文件夹里)
&&&&&&&&&&&&&&&&
tar zxf VMwareTools-5.5.3-34685.tar.gz(注:解压安装包)
&&&&&&&&&&&&&&&&
cd vmware-tools-distrib(注:进入解压出来的文件夹里)
&&&&&&&&&&&&&&&&
./vmware-install.pl(注:执行安装文件)&&&&&&&&&&&&&&&&
<img ALT="RedHat虚拟机:Vmware Tools的安装 - 飞^^花 - 飞^^花的博客" src="/blog7style/images/common/sg_trans.gif" real_src ="http://img./photo/k6E8FBLB724lNLvsa7Ag4g==/2496914.jpg"
TITLE="RedHat虚拟机:Vmware&Tools的安装" />
&&&&&&&&&&&
&&&&&&&&&&&&&&&&
如果你的Linux中已经安装了所有的X窗口环境和开发工具,
&&&&&&&&&&&&&&&&
上述的安装过程应该比较顺利,
&&&&&&&&&&&&&&&&
在安装过程中,会遇到诸如“In which directory do you want to install your binary
files”这类的问题,
&&&&&&&&&&&&&&&&
直接按回车就行了;
&&&&&&&&&&&&&&&&
如遇到诸如带有[yes]的询问时,输入yes后按回车即可。
&&&&&&&&&&&&&&&&
<img ALT="RedHat虚拟机:Vmware Tools的安装 - 飞^^花 - 飞^^花的博客" src="/blog7style/images/common/sg_trans.gif" real_src ="http://img./photo/gD-E8aJITfEn3FMwRidfqQ==/2496915.jpg"
TITLE="RedHat虚拟机:Vmware&Tools的安装" />
&&&&&&&&&&&&&&&&
安装完成以后,还会让我们配置分辨率:
&&&&&&&&&&&&&&&&
Do you want to change your guest X resolution?
&&&&&&&&&&&&&&&&
[1]640x480
&&&&&&&&&&&&&&&&
[2]800x600
&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&
&&&&&&&&&&&&&&&&
我的机器能支持,选择的是7,
&&&&&&&&&&&&&&&&
自己根据自己机器的情况来决定。
&&&&&&&&&&&&&&&&
设置分辨率,能使得屏幕在全屏显示下更清晰漂亮<img ALT="RedHat虚拟机:Vmware Tools的安装 - 飞^^花 - 飞^^花的博客" src="/blog7style/images/common/sg_trans.gif" real_src ="http://img./photo/Su6Ri4VmIftHwCCNxG5JFA==/7649935.gif"
TITLE="RedHat虚拟机:Vmware&Tools的安装" />
&&&&&&&&&&&&&&&&
注意,这的分辨率适用于全屏显示,
&&&&&&&&&&&&&&&&
很多人可能习惯用窗口模式来操作虚拟系统(比如我),
&&&&&&&&&&&&&&&&
那么就应该把分辨率设置得小些,比如800x600。
&&&&&&&&&&&&&&&&
至此,VMware Tools就安装成功了,
&&&&&&&&&&&&&&&&
需要重启一下虚拟机,使配置生效。
已投稿到:
以上网友发言只代表其个人观点,不代表新浪网的观点或立场。VM虚拟机下redhat linux安装Vmware tools 方法
RedHat虚拟机Vmware Tools安装教程(huaizai107)RedHat虚拟机:Vmware Tools的安装我用的是redhat9.0系统,装Vmware Tools的方法从这篇文章借鉴,非常好用,如果我们仔细看的话,就会发现在VMware软件界面的左下角处显示着&you don't have VMware Tools installed&,即我们还没安装VMware Tools。VMware Tools有什么用呢?VMware Tools其实就是虚拟的显卡的驱动程序,安装以后,虚拟系统屏幕的显示效果会更好除此之外,我在网上还发现有人说,安装以后,鼠标就可以在主、客系统之间自如地移动,而不需ctrl+alt组合键来切换(这点很麻烦)。前日自己刚刚实践了下!接下来就简单介绍一下怎么安装VMware Tools。RedHat虚拟机Vmware Tools的安装教程1、鼠标右键点击VMware界面左侧中的虚拟系统,选择&Install VMware Tools&注意:虚拟机必须处在开机状态,关机时无效。此时会发现在Linux的桌面上出现一个光盘的图标,这只是系统将VMware Tools的安装镜像文件加载到了虚拟光驱中,而并不是真正地安装了VMware Tools。2、找到VMware Tools安装包右键点击Linux桌面,打开终端,依次输入以下命令(注意有空格):
cd /mnt/cdrom(注:进入到虚拟光驱的文件夹里)ls(注:查看文件夹里的文件和子文件夹)这个时候出现的&VMware Tools-5.5.3-34685.tar.gz&即安装包名字,记住它,稍后将会用到。3、移动安装包,然后解压安装在刚刚的终端中,继续输入一下命令:
cd /(注:回到根目录)cp /mnt/cdrom/VMwareTools-5.5.3-34685.tar.gz /tmp(注:将安装包复制到tmp文件夹)cd /tmp(注:进入tmp文件夹里)tar zxf VMwareTools-5.5.3-34685.tar.gz(注:解压安装包)cd vmware-tools-distrib(注:进入解压出来的文件夹里)./vmware-install.pl(注:执行安装文件)如果你的Linux中已经安装了所有的X窗口环境和开发工具,上述的安装过程应该比较顺利,在安装过程中,会遇到诸如&In which directory do you want to install your binary files&这类的问题,直接按回车就行了;如遇到诸如带有[yes]的询问时,输入yes后按回车即可。安装完成以后,还会让我们配置分辨率:Do you want to change your guest X resolution?[1]640x480[2]800x600[3]... ...我的机器能支持,选择的是7,自己根据自己机器的情况来决定。设置分辨率,能使得屏幕在全屏显示下更清晰漂亮注意,这的分辨率适用于全屏显示,很多人可能习惯用窗口模式来操作虚拟系统(比如我),那么就应该把分辨率设置得小些,比如800x600。至此,VMware Tools就安装成功了,需要重启一下虚拟机,使配置生效。Good luck !!!
huaizai107 .............................................................................................................................................
分享这篇日志的人也喜欢
没有你陪伴,真的好孤单
可汉子可萝莉会卖萌会撒娇
喜欢嗨曲来?
今夜你会不会来
时间都去哪了
因为你们,所以幸福
今夜你会来
热门日志推荐
请输入手机号,完成注册
请输入验证码
密码必须由6-20个字符组成
下载人人客户端
品评校花校草,体验校园广场

我要回帖

更多关于 vmware安装redhat7 的文章

 

随机推荐