Ubuntu 13.04 安裝 VMware Tools,解決無法找到kernel header path的問題

張文君發表於2015-12-21

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.”。


用了半天時間才找到解決方案 555....分享一下。


1. 更新或安裝linux headers

sudo apt-get update && sudo apt-get install build-essential linux-headers-$(uname -r)


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



http://blog.csdn.net/danieluk/article/details/9719661

相關文章