Chinaunix首页 | 论坛 | 博客
  • 博客访问: 391751
  • 博文数量: 63
  • 博客积分: 3142
  • 博客等级: 中校
  • 技术积分: 838
  • 用 户 组: 普通用户
  • 注册时间: 2007-12-06 13:35
文章分类

全部博文(63)

文章存档

2011年(2)

2010年(114)

2009年(3)

我的朋友

分类: LINUX

2010-06-24 21:31:05

 
7月5日

Installing VMware Tools in Fedora Core 5

# 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
echo /usr/src/kernels/$(uname -r)-$(uname -p)/include
# You need this later.

# Download and unpack VMware Tools to a temporary directory
cd /tmp/
tar zxvf VMwareTools-5.5.1-19175.tar.gz
cd /tmp/vmware-tools-distrib/
./vmware-install.pl
# Do you want to run vmware-config-tools.pl? no

# Patch VMware Tools
cd /tmp/
wget
tar zxvf vmware-tools-any-update1.tar.gz
cd vmware-tools-any-update1/
./runme.pl
# Do you want to run vmware-config-tools.pl? no

# Apply patch to vmware-config-tools.pl
cd /tmp/
wget
cd vmware-tools-distrib/bin
patch vmware-config-tools.pl /tmp/vmware-config-tools.pl.patch

# Run the config script
./vmware-config-tools.pl

# Change xorg mouse
vi /etc/X11/xorg.conf
Change "mouse" to "vmmouse" in Section "InputDevice"

阅读(1410) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~