web-dev-qa-db-ja.com

VirtualBoxはVMを起動しません。ほとんどすべてを試しました

Ubuntu 18.04のVirtualBoxに問題があります。 Windows VMが起動しません。

VMを起動しようとすると、次のように表示されます。

The virtual machine 'Windows 10' has terminated unexpectedly during startup with exit code 1 (0x1).


Fehlercode:
NS_ERROR_FAILURE (0x80004005)
Komponente:
MachineWrap
Interface:
IMachine {85cd948e-a71f-4289-281e-0ca7ad48cd89}

そして別のウィンドウで:

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 virtualbox-dkms package and load the kernel module by executing

'modprobe vboxdrv'

as root.

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

インストール後、私はこれに気づいた:

● virtualbox.service - LSB: VirtualBox Linux kernel module
   Loaded: loaded (/etc/init.d/virtualbox; generated)
   Active: failed (Result: exit-code) since Thu 2018-10-18 18:09:31 CEST; 4ms ago
     Docs: man:systemd-sysv-generator(8)
  Process: 9827 ExecStart=/etc/init.d/virtualbox start (code=exited, status=1/FAILURE)

Okt 18 18:09:31 ubuntu systemd[1]: Starting LSB: VirtualBox Linux kernel module...
Okt 18 18:09:31 ubuntu virtualbox[9827]:  * Loading VirtualBox kernel modules...
Okt 18 18:09:31 ubuntu virtualbox[9827]:  * No suitable module for running kernel found
Okt 18 18:09:31 ubuntu virtualbox[9827]:    ...fail!
Okt 18 18:09:31 ubuntu systemd[1]: virtualbox.service: Control process exited, code=exited status=1
Okt 18 18:09:31 ubuntu systemd[1]: virtualbox.service: Failed with result 'exit-code'.
Okt 18 18:09:31 ubuntu systemd[1]: Failed to start LSB: VirtualBox Linux kernel module.

私はすでにすべてを再インストールしようとしましたが、インターネットで見つけたほとんどすべてのものを試しましたが、何も機能していません。

誰かが私を助けることができれば本当に感謝しています。 :)

2
Lukas Eder

Ubuntuの更新後にこの問題が発生しました。

Virtualbox-dkmsを再インストールしてください:Sudo apt-get install --reinstall virtualbox-dkms

ここでこの提案を見つけました: https://ubuntuforums.org/showthread.php?t=232052

1
Leech