vmware-tools がうまく動かないので、再インストールしようとしたら以下のエラー
1 2 3 4 5 |
Searching for a valid kernel header path... The path "" is not a valid path to the 3.5.0-51-generic kernel headers. Would you like to change it? [yes] |
前にインストールした時は問題なかったのに。
どうやら前に ubuntu を更新していて、必要なファイルが欠けていた。
ubuntu を更新してしばらく経っていて更新した事すら忘れていた。
以下で、更新後のubuntuの kernel のヘッダファイル を取得する
1 2 3 |
sudo apt-get install linux-headers-$(uname -r) |
あとは、先ほどの質問で正しい path を入れてあげる。
パスは、 /usr/src/linux-headers-3.5.0-51-generic/include になる。
1 2 3 4 5 6 7 8 9 10 11 12 |
Searching for a valid kernel header path... The path "" is not a valid path to the 3.5.0-51-generic kernel headers. Would you like to change it? [yes] yes Enter the path to the kernel header files for the 3.5.0-51-generic kernel? /usr/src/linux-headers-3.5.0-51-generic/include The path "/usr/src/linux-headers-3.5.0-51-generic/include" appears to be a valid path to the 3.5.0-51-generic kernel headers. Would you like to change it? [no] no |