如何在 Ubuntu 中修復 VirtualBox 的 「Kernel driver not installed (rc=-1908)」 錯

2019-08-30 07:31:00

我使用 Oracle VirtualBox 來測試各種 Linux 和 Unix 發行版。到目前為止,我已經在 VirtualBox 中測試了上百個虛擬機器。今天,我在我的 Ubuntu 18.04 桌面上啟動了 Ubuntu 18.04 伺服器版虛擬機器,我收到了以下錯誤。

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.

Ubuntu 中的 “Kernel driver not installed (rc=-1908)” 錯誤

我點選了 OK 關閉訊息方塊,然後在後台看到了另一條訊息。

Failed to open a session for the virtual machine Ubuntu 18.04 LTS Server.The virtual machine 'Ubuntu 18.04 LTS Server' has terminated unexpectedly during startup with exit code 1 (0x1).Result Code:NS_ERROR_FAILURE (0x80004005)Component:MachineWrapInterface:IMachine {85cd948e-a71f-4289-281e-0ca7ad48cd89}

啟動期間虛擬機器意外終止,退出程式碼為 1(0x1)

我不知道該先做什麼。我執行以下命令來檢查是否有用。

$ sudo modprobe vboxdrv

我收到了這個錯誤:

modprobe: FATAL: Module vboxdrv not found in directory /lib/modules/5.0.0-23-generic

仔細閱讀這兩個錯誤訊息後,我意識到我應該更新 Virtualbox 程式。

如果你在 Ubuntu 及其衍生版(如 Linux Mint)中遇到此錯誤,你只需使用以下命令重新安裝或更新 virtualbox-dkms 包:

$ sudo apt install virtualbox-dkms

或者,最好更新整個系統:

$ sudo apt upgrade

錯誤消失了,我可以正常在 VirtualBox 中啟動虛擬機器了。