web-dev-qa-db-ja.com

VirtualBoxのカーネルドライバーがインストールされていない(rc = -1908)エラー

VirtualBoxで何かを実行しようとするたびにエラーが発生し続け、修正方法がわかりません。私はそれを修正する方法がわからないので、できるだけ詳細で理解しやすいようにしてください。これはエラーです。

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.

ここで:suplibOsInit what:3 VERR_VM_DRIVER_NOT_INSTALLED(-1908)-サポートドライバーがインストールされていません。 Linuxでは、openはENOENTを返しました。

3
SonicStarMan

次の手順を試してみましょう。

  1. 必要なビルドツールをインストールします。

    Sudo apt install build-essential
    
  2. Virtualboxのカーネルモジュールをビルドします。

    Sudo /sbin/vboxconfig
    
  3. Virtualboxを再起動します。

1
George Udosen