在debian上安装vmwaer时会提示需要内核头文件:
What is the location of the directory of C header files that match your running
kernel? [/usr/src/linux/include]
此时可手动安装内核头文件并指定内核头文件目录解决:
安装
apt-get install kernel-headers-`uname -r`
手动指定内核头文件目录或建立链接
cd /usr/src
ln -s kernel-headers-`uname -r` linux