So I am using Lubuntu and running in as VM using vmplayer and I am trying to install vmware tools. After doing
./vmware-install.pl
and doing the default settings, it is now saying
The path "" is not a valid path to the 3.8.0-19-generic kernel headers.
Would you like to cange it? [yes]
Enter the path to the kernel header files for the 3.8.0-19-generic kernel?
and when I did
whereis 3.8.0-19-generic kernel
it says
3.8:
kernel: /usr/src/linux-headers-3.8.0-30/kernel /usr/src/linux-headers-3.8.0-19/kernel /usr/src/linux-headers-3.8.0-19-generic/kernel /usr/src/linux-headers-3.8.0-30-generic-kernel
I tried all four of them and none of the paths worked. It still said that the path is not a valid path to the 3.8.0-19-generic/kernel.
Note that before when I did
whereis 3.8.0-generic kernel
it only gave me the '-19' kernels, but then I did
sudo apt-get install linux-headers-$(uname -r)
sudo apt-get install linux-headers-generic
to see if it would fix anything but it didn't. It added the '-30' kernels but that didn't seem to fix the problems. Any ideas on what's wrong?
$ ln -s /usr/src/linux-headers-$(uname -r)/include/generated/uapi/linux/version.h /usr/src/linux-headers-$(uname -r)/include/linux/version.h
– Unrivalled