linux社区爱心援助Linux认证系列教程业界动态站务新闻公司招聘建议留言网址大全LPI专题CISCO专题
设为首页
加入收藏
管理团队
JSP  
JAVA  
PERL  
 您的位置:首页 > article > Linux入门与提高 > 使用与技巧 >
栏目导栏
资料搜索
热门文章
·VMware Tools的安装步骤
·应用Linux下两种中文输入法
·GRUB FOR DOS 引导安装LINUX和
·linux下BT软件介绍
·Linux中用ALSA驱动声卡流程详解
·Linux 170个常见问题的详细解答
·虚拟机软件vmware使用教程--使
·Linux操作系统Ifconfig命令详细
·什么是ISO文件?
·ffmpeg命令使用详解
·BabyLinux制作过程详解
·Linux挂接(mount)命令的使用方
·在Linux下制作工资表
·Linux必学的网络操作命令
·vmware下的fedora 6的vmware t
最新文章
·Linux新手要了解的十个知识点
·如何在Linux下实现定时器
·Linux桌面系统分区方案推荐
·Linux系统各常用目录简介及功能
·Puppy, CDLinux, DSL, Slitaz
·Ubuntu 8.04 升级到Ubuntu 8.1
·Linux系统信息查看命令大全
·linux下常用压缩文件解压方式
·ifconfig命令
·nohup命令详解
·Linux操作系统下限制root用户登
·Linux系统命令和使用技巧8则
·Linux操作系统下Tomcat自启动的
·ubuntu立方体桌面每个侧面显示
·测试Linux平台Inode使用情况的
Google
 
vmware下的fedora 6的vmware tools安装
[ 作者:拂发山风  加入时间:2006-12-23 19:38:46  来自:Linux联盟收集 ]
下了个fedora6 ,安装后发现vmware tool安装有问题,用rp包,安装正常,可是没有变化,用压缩包,就提示找不到内核头文件,搜了下,是需要补丁,按照说明下了补丁  ,却有提示“no x installed",继续搜,找到vmtn网站,是vmware官方的站点 ,里面有解决的办法,但是太过复杂了,我就没有弄,想,也许最新的版本应该没有这个问题吧。于是下了最新的5.5.3,昨天晚上安装完才走的。
上午快下班了才有空,只把vmware开启,fedora启动,就下班了。吃过饭回来,就开始安装,先是用rpm包,安装成功,但是,还是提示“vmware tools版本已过期”,于是还是用压缩包提供的文件来安装。
安装很顺利,编译也没有错误,没有提示找不到X,安装后我注销了一下,问题来了,提示视频设备问题,几个“ok”后,还是出来了登陆的界面,进去,发现配置的还是800X600,60hz的刷新率,太不理想了。同时,鼠标也不能同时在host与client之间用,这是我装tools的根本目的,如果不行的话,tools也没有必要安装了。google了一下,还是vmtn,里面有个解决的办法:
# Install software called by by VMware Tools
yum install gcc
# Install kernel header files
yum install kernel-devel
# Check it matches the running kernel
uname -r             # running kernel
rpm -q kernel-devel  # installed kernel headers
# It the two versions do not match, run
yum -y upgrade kernel kernel-devel
# then reboot (but only if they did not match).
# Find out where the kernel headers are
ls -d /usr/src/kernels/$(uname -r)*/include
# You may need this later.
# If you already have VMwareTools-5.5.2-29772.tar.gz
 on disk, SKIP THIS STEP!
# Download VMware-workstation-5.5.2-29772.tar.gz from vmware.com
# Extract the VMware Tools iso from it
tar --strip-components=3 -zxvf VMware-workstation-5.5.2-29772.tar.gz \
 vmware-distrib/lib/isoimages/linux.iso
# Create a temporary mount point
mkdir /mnt/vmtools-temp
# Mount the image
mount -o loop linux.iso /mnt/vmtools-temp
# Copy VMware Tools from the mount
cp /mnt/vmtools-temp/VMwareTools-5.5.2-29772.tar.gz /tmp/
# Unmount the image and tidy up
umount /mnt/vmtools-temp
rmdir /mnt/vmtools-temp
rm linux.iso
# Unpack VMware Tools to a temporary directory
cd /tmp/
tar zxvf VMwareTools-5.5.2-29772.tar.gz
cd /tmp/vmware-tools-distrib/
./vmware-install.pl
# Do you want to run vmware-config-tools.pl? yes
# Fix xorg config
# If when you (re)start X, you get the error "Undefined Monitor "vmware"..":
vi /etc/X11/xorg.conf
# Add the lines
Section "Monitor"
        Identifier   "vmware"
EndSection
# To add better mouse support, add the lines
Section "InputDevice"
 Identifier "Mouse0"
 Driver "vmmouse"
 Option "Protocol" "Auto"
 Option "Device" "/dev/input/mouse0"
EndSection
# then find the "ServerLayout" section, and in that section, add the line
 InputDevice "Mouse0" "CorePointer"
# TODO fix vmhgfs compile (currently broken)
# TODO fix fast ethernet driver compile (currently broken)
# TODO copy and paste broken
这是安装的全部过程,红色部分是解决显示与鼠标的部分。安装如上操作,鼠标终于搞定!
至此,vmware tools 的安装就全部完成了。
Linux联盟收集整理 ,转贴请标明原始链接,如有任何疑问欢迎来本站Linux论坛讨论
评论】【加入收藏夹】【 】【打印】【关闭
※ 相关链接
 ·如何安装VMware Tools  (2006-12-23 19:38:17)
 ·VMware Tools的安装步骤  (2006-06-27 20:27:59)
 ·正确安装VMWARE TOOLS  (2006-03-26 11:14:21)