VirtualBox

source: vbox/trunk/debian/VBox.sh@ 11183

Last change on this file since 11183 was 10432, checked in by vboxsync, 16 years ago

FE/Qt3 is now obsolete

File size: 3.4 KB
Line 
1#!/bin/sh
2#
3# Sun xVM VirtualBox
4#
5# Copyright (C) 2006-2007 Sun Microsystems, Inc.
6#
7# This file is part of VirtualBox Open Source Edition (OSE), as
8# available from http://www.virtualbox.org. This file is free software;
9# you can redistribute it and/or modify it under the terms of the GNU
10# General Public License (GPL) as published by the Free Software
11# Foundation, in version 2 as it comes in the "COPYING" file of the
12# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14#
15# Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
16# Clara, CA 95054 USA or visit http://www.sun.com if you need
17# additional information or have any questions.
18#
19
20PATH="/usr/bin:/bin:/usr/sbin:/sbin"
21
22# Note: This script must not fail if the module was not successfully installed
23# because the user might not want to run a VM but only change VM params!
24
25if [ "$1" = "shutdown" ]; then
26 SHUTDOWN="true"
27elif ! lsmod|grep -q vboxdrv; then
28 cat << EOF
29WARNING: The vboxdrv kernel module is not loaded. Either there is no module
30 available for the current kernel (`uname -r`) or it failed to
31 load. Please recompile the kernel module and install it by
32
33 sudo /etc/init.d/vboxdrv setup
34
35 You will not be able to start VMs until this problem is fixed.
36EOF
37elif [ ! -c /dev/vboxdrv ]; then
38 cat << EOF
39WARNING: The character device /dev/vboxdrv does not exist. Try
40
41 sudo /etc/init.d/vboxdrv restart
42
43 and if that is not successful, try to re-install the package.
44
45 You will not be able to start VMs until this problem is fixed.
46EOF
47elif [ ! -w /dev/vboxdrv ]; then
48 if [ "`id | grep vboxusers`" = "" ]; then
49 cat << EOF
50WARNING: You are not a member of the "vboxusers" group. Please add yourself
51 to this group before starting VirtualBox.
52
53 You will not be able to start VMs until this problem is fixed.
54EOF
55 else
56 cat << EOF
57WARNING: /dev/vboxdrv not writable for some reason. If you recently added the
58 current user to the vboxusers group then you have to logout and
59 re-login to take the change effect.
60
61 You will not be able to start VMs until this problem is fixed.
62EOF
63 fi
64fi
65
66if [ -f /etc/vbox/module_not_compiled ]; then
67 cat << EOF
68WARNING: The compilation of the vboxdrv.ko kernel module failed during the
69 installation for some reason. Starting a VM will not be possible.
70 Please consult the User Manual for build instructions.
71EOF
72fi
73
74SERVER_PID=`ps -U \`whoami\` | grep VBoxSVC | awk '{ print $1 }'`
75if [ -z "$SERVER_PID" ]; then
76 # Server not running yet/anymore, cleanup socket path.
77 # See IPC_GetDefaultSocketPath()!
78 if [ -n "$LOGNAME" ]; then
79 rm -rf /tmp/.vbox-$LOGNAME-ipc > /dev/null 2>&1
80 else
81 rm -rf /tmp/.vbox-$USER-ipc > /dev/null 2>&1
82 fi
83fi
84
85if [ "$SHUTDOWN" = "true" ]; then
86 if [ -n "$SERVER_PID" ]; then
87 kill -TERM $SERVER_PID
88 sleep 2
89 fi
90 exit 0
91fi
92
93APP=`which $0`
94APP=${APP##/*/}
95case "$APP" in
96 VirtualBox)
97 exec "/usr/lib/virtualbox-ose/VirtualBox" "$@"
98 ;;
99 VBoxManage)
100 exec "/usr/lib/virtualbox-ose/VBoxManage" "$@"
101 ;;
102 VBoxSDL)
103 exec "/usr/lib/virtualbox-ose/VBoxSDL" "$@"
104 ;;
105 VBoxVRDP)
106 exec "/usr/lib/virtualbox-ose/VBoxVRDP" "$@"
107 ;;
108 VBoxHeadless)
109 exec "/usr/lib/virtualbox-ose/VBoxHeadless" "$@"
110 ;;
111 *)
112 echo "Unknown application - $APP"
113 ;;
114esac
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use