ubuntu10.10 安装 vmwaretools

这几天在vmware6.5中装了一个ubuntu10.10玩了一下,过程如下:

进入解压后的vmwaretools目录
             $ cd /tmp/vmware-tools-distrib
执行安装命令 $ sudo ./vmware-install.pl

接下来一路输入回车

中间出现了问题:
What is the location of the directory of C header files that match your runningkernel? [/usr/src/linux/include]

按回车后:
The path "/usr/src/linux/include" is not an existing directory.
输入 /usr/src/linux-headers-2.6.35-22-generic/include

按回车后还是报错
说**和当前运行的kernel版本不匹配。

The directory of kernel headers (version @@VMWARE@@ UTS_RELEASE) does not match your running kernel version

2.6.35-22-generic). Even if the module were tocompile successfully, it would not load into the running kernel. 

我们只需要在version.h中添加 "#define UTS_RELEASE "2.6.35-22-generic"
(kernel版本使用 “uname -r“ 查看)

按回车继续,又会有新的错误提示:
The path "/usr/src/linux-headers-2.6.35-22-generic/include" is a kernel headerfile directory, but it does not contain the file "linux/autoconf.h" asexpected. This can happen if the kernel has never been built, or if you have invoked the "make mrproper" command in your kernel directory. In any case, youmay want to rebuild your ke

打开一个新的终端输入:
$ cd /usr/src/linux-headers-2.6.35-22-generic/include    <enter>  进入linux目录的上级目录
$ sudo chmod a+rw linux                                           把linux目录改为可读写


把     /usr/src/linux-headers-2.6.35-22-generic/include/generated/autoconf.h
拷贝到 /usr/src/linux-headers-2.6.35-22-generic/include/linux下


然后就能顺利完成安装了。

猜你喜欢

转载自shangweiqiang24.iteye.com/blog/899110