diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-11-03 15:17:29 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-11-03 15:17:29 +0000 |
commit | 0f60c71e0d2ce12c2c15e1d1606b984340151cca (patch) | |
tree | a64d939b90bca7530b20084dba6a1c3ede311ee3 /app-emulation/virtualbox-bin/files | |
parent | Change HOMEPAGE. (diff) | |
download | gentoo-2-0f60c71e0d2ce12c2c15e1d1606b984340151cca.tar.gz gentoo-2-0f60c71e0d2ce12c2c15e1d1606b984340151cca.tar.bz2 gentoo-2-0f60c71e0d2ce12c2c15e1d1606b984340151cca.zip |
Some minor cosmetics in the wrapper, fix desktop entry
(Portage version: 2.1.3.16, RepoMan options: --force)
Diffstat (limited to 'app-emulation/virtualbox-bin/files')
-rw-r--r-- | app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.4.0 | 6 | ||||
-rw-r--r-- | app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.5.2-r1 (renamed from app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.5.2) | 0 | ||||
-rw-r--r-- | app-emulation/virtualbox-bin/files/virtualbox-bin-wrapper | 27 |
3 files changed, 15 insertions, 18 deletions
diff --git a/app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.4.0 b/app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.4.0 deleted file mode 100644 index 957ad7b6602e..000000000000 --- a/app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.4.0 +++ /dev/null @@ -1,6 +0,0 @@ -MD5 17003e95329ea1ee4c8b7c0ff0e2bc04 VirtualBox_1.4.0_Linux_amd64.run 11766998 -RMD160 973378f363f251065044d5e6244fff84eef0ae69 VirtualBox_1.4.0_Linux_amd64.run 11766998 -SHA256 5fa13a82fe1cb333668e6dfa84005e78e9ac08a0bb4b68d8e053bde630345ff7 VirtualBox_1.4.0_Linux_amd64.run 11766998 -MD5 d796ef14caa3e3b3be10c959a14f1634 VirtualBox_1.4.0_Linux_x86.run 13631688 -RMD160 2738fe9a74edac51c884ff0dba4c6d8704488dd5 VirtualBox_1.4.0_Linux_x86.run 13631688 -SHA256 b9e9d18e2f070fdbb769292f90171cf9e91e53f800e22683a106ad185edb774c VirtualBox_1.4.0_Linux_x86.run 13631688 diff --git a/app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.5.2 b/app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.5.2-r1 index f11b0b8b7c43..f11b0b8b7c43 100644 --- a/app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.5.2 +++ b/app-emulation/virtualbox-bin/files/digest-virtualbox-bin-1.5.2-r1 diff --git a/app-emulation/virtualbox-bin/files/virtualbox-bin-wrapper b/app-emulation/virtualbox-bin/files/virtualbox-bin-wrapper index 7ea5eca943b2..147edc4a2d46 100644 --- a/app-emulation/virtualbox-bin/files/virtualbox-bin-wrapper +++ b/app-emulation/virtualbox-bin/files/virtualbox-bin-wrapper @@ -29,17 +29,17 @@ if [ "$1" = "shutdown" ]; then SHUTDOWN="true" elif [ ! -e /lib/modules/`uname -r`/misc/vboxdrv.ko ]; then cat << EOF -WARNING: There is no module available for the currente kernel (`uname -r`). - Please recompile the kernel module and install it by +WARNING: There is no module available for the current kernel (`uname -r`). + Please recompile the kernel module and install it by: - sudo emerge -1 virtualbox-modules + sudo emerge -1 app-emulation/virtualbox-modules You will not be able to start VMs until this problem is fixed. EOF elif ! lsmod|grep -q vboxdrv; then cat << EOF WARNING: The vboxdrv kernel module is not loaded. - Please load the kernel by + Please load the kernel module by: sudo modprobe vboxdrv @@ -47,27 +47,30 @@ WARNING: The vboxdrv kernel module is not loaded. EOF elif [ ! -c /dev/vboxdrv ]; then cat << EOF -WARNING: The character device /dev/vboxdrv does not exist. Try +WARNING: The character device /dev/vboxdrv does not exist. + Please try to reload the kernel module by: - sudo /etc/init.d/virtualbox restart + sudo rmmod vboxdrv; sleep 2; sudo modprobe vboxdrv - and if that is not successful, try to re-install the package. + and if that is not successful, try to re-install the package by: + + sudo emerge -1 app-emulation/virtualbox-modules You will not be able to start VMs until this problem is fixed. EOF elif [ ! -w /dev/vboxdrv ]; then if [ "`id | grep vboxusers`" = "" ]; then cat << EOF -WARNING: You are not a member of the "vboxusers" group. Please add yourself - to this group before starting VirtualBox. +WARNING: You are not a member of the "vboxusers" group. + Please add yourself to this group before starting VirtualBox. You will not be able to start VMs until this problem is fixed. EOF else cat << EOF -WARNING: /dev/vboxdrv not writable for some reason. If you recently added the - current user to the vboxusers group then you have to logout and - re-login to take the change effect. +WARNING: /dev/vboxdrv not writable for some reason. + If you recently added the current user to the "vboxusers" group + then you have to logout and re-login to take the change effect. You will not be able to start VMs until this problem is fixed. EOF |