初始版本 和 待辦事項 #19723 的 版本 4 之間的變動
- 時間撮記:
- 2020-8-5 下午12:24:10 (4 年 前)
圖例:
- 未更動
- 新增
- 刪除
- 修改
-
待辦事項 #19723 – 描述
初始 v4 6 6 7 7 I get the following errors: 8 {{{ 8 9 At main.c:281: 9 10 - SSL error:02001002:system library:fopen:No such file or directory: ../crypto/bio/bss_file.c:72 … … 19 20 kmodsign: /lib/modules/5.7.8-050708-generic/misc/vboxnetadp.ko: No such file or directory 20 21 vboxdrv.sh: failed: modprobe vboxdrv failed. 21 22 }}} 22 23 I can run VirtualBox. However, when I try to run a guest, I receive this message: 24 {{{ 23 25 Kernel driver not installed (rc=-1908) 24 26 The VirtualBox Linux kernel driver is either not loaded or not set up correctly. 25 27 where: suplibOsInit what: 3 VERR_VM_DRIVER_NOT_INSTALLED (-1908) - The support driver is not installed. On linux, open returned ENOENT. 26 28 }}} 27 29 sudo /sbin/vboxconfig fails and gives the same output to the terminal as the installer. 28 30 … … 31 33 The kernel modules do not work because they are installed in the wrong directory. 32 34 The installer puts them in: 35 {{{ 33 36 /lib/modules/5.7.8/misc (which is incorrect) 34 37 The installer also puts the follow 0 byte files which do not work in /lib/modules/5.7.8-050708-generic/misc/ (which is the correct directory for the modules): … … 36 39 -rw-r--r-- 1 root 0 Jul 15 20:02 vboxnetadp.ko.~signed~ 37 40 -rw-r--r-- 1 root 0 Jul 15 20:02 vboxnetflt.ko.~signed~ 38 41 }}} 39 42 I can fix this by issuing these commands: 43 {{{ 40 44 sudo rm /lib/modules/5.7.8-050708-generic/misc/vboxnetflt.ko.~signed~ 41 45 sudo rm /lib/modules/5.7.8-050708-generic/misc/vboxnetadp.ko.~signed~ … … 43 47 sudo mv /lib/modules/5.7.8/misc/* /lib/modules/5.7.8-050708-generic/misc/ 44 48 sudo rm -rf /lib/modules/5.7.8 49 }}} 45 50 Then I reboot. 46 51