RHEL: This system is currently not set up to build kernel modules

天大地大妈咪最大 提交于 2020-12-01 10:19:24

问题


I am trying to install virtualbox5.2 on a RHEL 7 VM When I try to rebuild kernels modules I get the following error:

[root@myserver~]# /usr/lib/virtualbox/vboxdrv.sh setup
vboxdrv.sh: Stopping VirtualBox services.
vboxdrv.sh: Building VirtualBox kernel modules.
This system is currently not set up to build kernel modules.
Please install the Linux kernel "header" files matching the current kernel
for adding new hardware support to the system.
The distribution packages containing the headers are probably:
    kernel-devel kernel-devel-3.10.0-693.11.1.el7.x86_64

I tried install kernet-devel and got success message

Installed:
  kernel-devel.x86_64 0:3.10.0-693.21.1.el7                                     

Complete!

But still the setup fails.

Any idea what is missing here?


回答1:


sudo yum install -y "kernel-devel-$(uname -r)"

Substitute dnf on Fedora. I didn't need to do a reboot, but ymmv.

Edit for 2020:

Centos/RHEL 8 now also use dnf instead of yum. I haven't had occasion to test this on those distros, so the same YMMV disclaimer still applies.




回答2:


First run in terminal: uname -r then you will get name and information about current kernel (CURRENT_KERNEL).

Now you can install with command: yum install kernel-devel-CURRENT_KERNEL

Note: replace CURRENT_KERNEL with string you get from uname -r.




回答3:


The same message happened when I tried to upgrade VirtualBox 5.2.12 Guest Additions on my Kali Linux (GNU/Linux Rolling version). I fixed it by following steps:

  1. Do apt update/upgrade to keep your system up-to-date. Do not forget to reboot the system.
  2. Run "apt-get install linux-headers-$(uname -r)".
  3. Run VBoxLinuxAdditions.run from terminal, error message gone and Guest Additions will be installed successfully.
  4. Reboot system, Guest Additions works fine.



回答4:


I got here looking for the same answer for CentOS 6, and the above answers worked with slight modification (so, for anyone else that lands here too)...

yum install -y kernel-devel kernel-devel-$(uname -r)

So, "yum" instead of "apt-get" Also, some Linux use "linux-headers" instead of "kernel-devel" but the principle seems to be the same.




回答5:


The kernel your were using was kernel-devel-3.10.0-693.11.1.el7.x86_64 is slightly different with the one that you installed kernel-devel.x86_64 0:3.10.0-693.21.1.el7 . In my case, there are several different version installed on my OS, and "sudo yum install kernel-devel" always install the newest one for me. Then I work it out by setting my default kernel version as same as yum installed for me. You can check the kernel you have installed on your OS by following command:

sudo awk -F\' '$1=="menuentry " {print i++ " : " $2}' /etc/grub2.cfg

Then just set the kernel version you choose to use as same as yum choose for you,by following command:(notice that the number at last is pick up from preceding command result),

sudo grub2-set-default 0

generate the grub2 config with 'gurb2-mkconfig' command, and then reboot the server.

sudo grub2-mkconfig -o /boot/grub2/grub.cfg
sudo reboot



回答6:


Milan Rakos is right. Your installed kernel-devel must have suffix string exactly the same as the uname -r output. Besides, the logs during the vboxdrv.sh setup also shows the wanted version of the kernel-devel.

So to your case, You will run the command:sudo yum install kernel-devel-3.10.0-693.11.1.el7.x86_64




回答7:


yum install kernel-devel-3.10.0-693.11.1.el7.x86_64 fixed the issue.




回答8:


to solve this problem I ran yum update -y. I think this is the fastest way to solve it. Another solution is to configure the repos with the installation DVD, so you can install the kernel-headers of your current version of CentOS.

My History:

  • yum install epel-release
  • yum install perl gcc dkms kernel-devel kernel-headers make bzip2
  • yum groupinstall "Development tools"
  • yum update -y
  • reboot

After that, I mount de VBoxGuestAdditions and I ran the process



来源:https://stackoverflow.com/questions/49369065/rhel-this-system-is-currently-not-set-up-to-build-kernel-modules

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!