Ubuntu 13.04 安装 VMware Tools,运行vmware-config-tools.pl 时,总是提示
The path "" is not valid.
What is the location of the directory of C header files that match your running
kernel?
输入 /usr/src/linux-headers-3.8.0-26-generic/include 或 /lib/modules/3.8.0-26-generic/build/include 都提示“The path ... is not valid.”。
用了半天时间才找到解决方案,分享一下。
1.更新或安装linux headers
sudo apt-get update && sudo apt-get install build-essential linux-headers-$(uname -r)
如果用kali linux下边这步是不用的
2.关联文件,就是因为找不到这个几个文件,vmware tools才认为路径无效的。
cd /lib/modules/$(uname -r)/build/include/linux
sudo ln -s ../generated/utsrelease.h
sudo ln -s ../generated/autoconf.h
sudo ln -s ../generated/uapi/linux/version.h
3.再次执行安装就ok啦,运行vmware-config-tools.pl 也没问题了
sudo ./vmware-install.pl
在ubuntu 15.04下安装VMware Tools:http://www.linuxdiyf.com/linux/13056.html
快捷安装选项安装Ubuntu 15.04时无法安装VMware Tools的问题已解:http://www.linuxdiyf.com/linux/12721.html
安装Ubuntu Kylin 15.04 x64并安装VMware Tool:http://www.linuxdiyf.com/linux/12411.html
Linux虚拟机安装VMware Tools:http://www.linuxdiyf.com/linux/12944.html
Linux系统入门学习:在Debian安装VMware Tools:http://www.linuxdiyf.com/linux/10647.html