web-dev-qa-db-ja.com

KaliのVirtualBoxに関する問題

Kali4.6.0-kali1-AMD64にVirtualBoxをインストールしました。 VB起動しますが、VMを起動すると、次のエラーが発生します。

_Kernel driver not installed (rc=-1908)

The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or there is a permission problem with /dev/vboxdrv. Please reinstall the kernel module by executing

'/sbin/vboxconfig'

as root.

where: suplibOsInit what: 3 VERR_VM_DRIVER_NOT_INSTALLED (-1908) - The support driver is not installed. On linux, open returned ENOENT. 
_

私はこれを複数の方法で修正しようとしましたが、それでも実行できません。このエラーを修正してVMを実行できるようにするにはどうすればよいですか?

////////

VBを削除しました。VB Webサイトからdebをダウンロードしました。apt-get install dkms build-essential linux-headers-$(uname -r)を使用すると、次のエラーが返されます。

_E: Unable to locate package linux-headers-4.6.0-kali1-AMD64 E: Couldn't find any package by glob 'linux-headers-4.6.0-kali1-AMD64' E: Couldn't find any package by regex 'linux-headers-4.6.0-kali1-AMD64'
_

どうすればこれを修正できますか?

//////////////////更新:

ソースリストに_deb http://mirror.nus.edu.sg/kali/kali kali-rolling main non-free contrib_を追加して、ヘッダーの問題を修正しました。 VBを再インストールしました。今私は得る:

_RTR3InitEx failed with rc=-1912 (rc=-1912)

The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing

'/sbin/vboxconfig'

may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.

where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user. 
_
1
farewaybros

VirtualBoxのインストールログに障害があるようです。

  1. VirtualBoxを削除し、ホストを再起動します。
  2. すべてが最新であることを確認してください。
  3. 次のパッケージをインストールします(Sudo apt-get install dkms build-essential linux-headers-$(uname -r))
  4. Virtual Box .debを入手するか、公式ソースから入手してください。

これがあなたの問題に役立つことを願っています:)

2
MichaelMMeskhi

ヘッダーとカーネルの問題を修正するために、ソースリストにdeb http://mirror.nus.edu.sg/kali/kali kali-rolling main non-free contribを追加しました。 VBのdebパッケージをインストールしていたので、次のようになりました。

RTR3InitEx failed with rc=-1912 (rc=-1912)

The VirtualBox kernel modules do not match this version of VirtualBox. The installation of VirtualBox was apparently not successful. Executing

'/sbin/vboxconfig'

may correct this. Make sure that you do not mix the OSE version and the PUEL version of VirtualBox.

where: supR3HardenedMainInitRuntime what: 4 VERR_VM_DRIVER_VERSION_MISMATCH (-1912) - The installed support driver doesn't match the version of the user.

この問題の原因はわかりませんが、debインストールを削除し、VB with apt-get install virtualboxを再インストールすることで修正しました。

1
farewaybros