Fedora 18: Difference between revisions

From JoeHacker
Line 1: Line 1:
== Getting VMWare 9 to compile in fc18 ==
== Getting VMWare 9 to compile in fc18 ==


After updating to Fedora 18, VMWare 9.0.1 will not compile because it cannot find the correct version.h file. Simple fix is to create a symlink and vmware will compile the needed modules.
After upgrading to Fedora 18, VMWare 9.0.1, you get and error that "Kernel headers for version 3.7.2-201.fc18.x86_64 were not found". VMWare will not compile because it cannot find the correct version.h file. Simple fix is to create a symlink and vmware will compile the needed modules.


First make sure that the compiler and header packages are installed.
First make sure that the compiler and header packages are installed.

Revision as of 08:16, 16 January 2013

Getting VMWare 9 to compile in fc18

After upgrading to Fedora 18, VMWare 9.0.1, you get and error that "Kernel headers for version 3.7.2-201.fc18.x86_64 were not found". VMWare will not compile because it cannot find the correct version.h file. Simple fix is to create a symlink and vmware will compile the needed modules.

First make sure that the compiler and header packages are installed.

yum install gcc kernel-devel kernel-headers

The following command will create the link.

ln -s /usr/src/kernels/$(uname -r)/include/generated/uapi/linux/version.h /usr/src/kernels/$(uname -r)/include/linux/version.h