Changeset 77196 in vbox for trunk/src/VBox
- Timestamp:
- Feb 7, 2019 1:33:50 PM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 128689
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VirtualBox/src/main.cpp
r76818 r77196 87 87 88 88 QString g_QStrHintLinuxNoDriver = QApplication::tr( 89 "The VirtualBox Linux kernel driver (vboxdrv) is either not loaded or " 90 "there is a permission problem with /dev/vboxdrv. Please reinstall the kernel " 91 "module by executing<br/><br/>" 89 "The VirtualBox Linux kernel driver is either not loaded or not set " 90 "up correctly. Please try setting it up again by executing<br/><br/>" 92 91 " <font color=blue>'/sbin/vboxconfig'</font><br/><br/>" 93 "as root." 92 "as root.<br/><br/>" 93 "If your system has EFI Secure Boot enabled you may also need to sign " 94 "the kernel modules (vboxdrv, vboxnetflt, vboxnetadp, vboxpci) before " 95 "you can load them. Please see your Linux system's documentation for " 96 "more information." 94 97 ); 95 98 … … 106 109 "successful. Executing<br/><br/>" 107 110 " <font color=blue>'/sbin/vboxconfig'</font><br/><br/>" 108 "may correct this. Make sure that you do not mix the"109 " OSE version and the PUEL version of VirtualBox."111 "may correct this. Make sure that you are not mixing builds " 112 "of VirtualBox from different sources." 110 113 ); 111 114 -
trunk/src/VBox/Installer/linux/postinst-common.sh
r76611 r77196 104 104 echo "There were problems setting up VirtualBox. To re-start the set-up process, run" >&2 105 105 echo " /sbin/vboxconfig" >&2 106 echo "as root." >&2 106 echo "as root. If your system is using EFI Secure Boot you may need to sign the" >&2 107 echo "kernel modules (vboxdrv, vboxnetflt, vboxnetadp, vboxpci) before you can load" >&2 108 echo " them. Please see your Linux system's documentation for more information." >&2 107 109 else 108 110 start_init_script vboxdrv -
trunk/src/VBox/VMM/VMMR3/VM.cpp
r76553 r77196 273 273 case VERR_SUPDRV_COMPONENT_NOT_FOUND: 274 274 pszError = N_("One of the kernel modules was not successfully loaded. Make sure " 275 "that no kernel modules from an older version of VirtualBox exist. " 276 "Then try to recompile and reload the kernel modules by executing " 275 "that VirtualBox is correctly installed, and if you are using EFI " 276 "Secure Boot that the modules are signed if necessary in the right " 277 "way for your host system. Then try to recompile and reload the " 278 "kernel modules by executing " 277 279 "'/sbin/vboxconfig' as root"); 278 280 break; … … 339 341 #ifdef RT_OS_LINUX 340 342 pszError = N_("VirtualBox kernel driver not loaded. The vboxdrv kernel module " 341 "was either not loaded or /dev/vboxdrv is not set up properly. " 342 "Re-setup the kernel module by executing " 343 "was either not loaded, /dev/vboxdrv is not set up properly, " 344 "or you are using EFI Secure Boot and the module is not signed " 345 "in the right way for your system. If necessary, try setting up " 346 "the kernel module again by executing " 343 347 "'/sbin/vboxconfig' as root"); 344 348 #else … … 380 384 case VERR_VM_DRIVER_NOT_INSTALLED: 381 385 #ifdef RT_OS_LINUX 382 pszError = N_("VirtualBox kernel driver not installed. The vboxdrv kernel module " 383 "was either not loaded or /dev/vboxdrv was not created for some " 384 "reason. Re-setup the kernel module by executing " 386 pszError = N_("VirtualBox kernel driver not Installed. The vboxdrv kernel module " 387 "was either not loaded, /dev/vboxdrv is not set up properly, " 388 "or you are using EFI Secure Boot and the module is not signed " 389 "in the right way for your system. If necessary, try setting up " 390 "the kernel module again by executing " 385 391 "'/sbin/vboxconfig' as root"); 386 392 #else
Note:
See TracChangeset
for help on using the changeset viewer.