Changeset 2096 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Apr 16, 2007 12:40:14 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VM.cpp
r2054 r2096 307 307 case VERR_VM_DRIVER_NOT_ACCESSIBLE: 308 308 #ifdef __LINUX__ 309 pszError = N_(" VirtualBox kernel driver not accessible, permission problem."310 " Make sure that the current user has write permissions to"311 "/dev/vboxdrv by adding him to the vboxusers groups. Don't"312 " forget to logout to take the change effect");309 pszError = N_("The VirtualBox kernel driver is not accessible to the current " 310 "user. Make sure that the user has write permissions for " 311 "/dev/vboxdrv by adding them to the vboxusers groups. You " 312 "will need to logout for the change to take effect."); 313 313 #else 314 314 pszError = N_("VirtualBox kernel driver not accessible, permission problem"); … … 329 329 break; 330 330 case VERR_VERSION_MISMATCH: 331 pszError = N_("VirtualBox support driver version mismatch"); 331 pszError = N_("The VirtualBox support driver which is running is from a different " 332 "version of VirtualBox. You can correct this by stopping all " 333 "running instances of VirtualBox and reinstalling the software."); 332 334 break; 333 335 default:
Note:
See TracChangeset
for help on using the changeset viewer.