vboxdrv 커널 모듈

vboxdrv 커널 모듈

방금 virtualbox를 설치했는데 터미널에서 프로그램을 실행하려고 하면 이 오류가 발생합니다.

#virtualbox
WARNING: The character device /dev/vboxdrv does not exist.
 Please install the virtualbox-dkms package and the appropriate
 headers, most likely linux-headers-686.

 You will not be able to start VMs until this problem is fixed.

이 명령을 실행하려고 합니다.

/etc/init.d/vboxdrv setup

그런데 이런 오류가 나오네요

bash: /etc/init.d/vboxdrv: No such file or directory

그런 다음

apt-get install -y linux-headers-$(uname -r)
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package linux-headers-3.12-kali1-686-pae
E: Couldn't find any package by regex 'linux-headers-3.12-kali1-686-pae'

실행 시 시스템의 커널 버전은 uname -r다음과 같습니다.

3.12-kali1-686-pae

그러나 디렉토리의 /usr/src/Linux 헤더 버전 은

linux-headers-3.14-kali1-686-pae

virtualbox-dkms를 다시 설치해 보았지만 작동하지 않았습니다.

내 질문은 커널 버전이 Linux 헤더와 다른 이유는 무엇입니까? 이 문제를 해결하는 데 도움이 될 수 있는 솔루션이 있습니까?

관련 정보