我是一个新的Linux用户,目前正在使用Lubuntu的最新版本。我想用VMware创建一个虚拟机,因为在VirtualBox中,我无法在Windows中使用DirectX。即使在操作系统上安装了它,它也说它没有安装DirectX。
因为我更喜欢使用VMware (因为我下载了VMware for Windows),所以我尝试在Ubuntu中使用它,但是VMware不能像在Windows中那样工作,所以我下载了VMware版本8,但是由于以下错误,我无法使用它:
Before you can run VMware, several modules must be compiled and loaded into the running kernel.
Kernel Header 3.16.0-25-generic
Kernel headers for version 3.16.0-25-generic were not found.
If you installed them in a non-default path you can specify the path below.
Otherwise refer to your distribution's documentation for installation instructions and click Refresh to search again in default locations.发布于 2014-12-09 19:15:09
您需要安装内核版本的头文件。
在本例中,您使用的是Utopic (基于错误中的内核版本),因此需要linux-headers-3.16.0-25-generic包。这将安装报头:sudo apt-get install linux-headers-3.16.0-25-generic
https://askubuntu.com/questions/558145
复制相似问题