VirtualBox

source: vbox/trunk/src/VBox/Installer/linux/VBox.sh@ 11982

Last change on this file since 11982 was 11725, checked in by vboxsync, 16 years ago

#3076: Merged in the branch with the alternate driver authentication method. (34468:HEAD)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 3.0 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"
21CONFIG="/etc/vbox/vbox.cfg"
22
23if [ ! -r "$CONFIG" ]; then
24 echo "Could not find VirtualBox installation. Please reinstall."
25 exit 1
26fi
27
28. "$CONFIG"
29
30# Note: This script must not fail if the module was not successfully installed
31# because the user might not want to run a VM but only change VM params!
32
33if [ "$1" = "shutdown" ]; then
34 SHUTDOWN="true"
35elif ! lsmod|grep -q vboxdrv; then
36 cat << EOF
37WARNING: The vboxdrv kernel module is not loaded. Either there is no module
38 available for the current kernel (`uname -r`) or it failed to
39 load. Please recompile the kernel module and install it by
40
41 sudo /etc/init.d/vboxdrv setup
42
43 You will not be able to start VMs until this problem is fixed.
44EOF
45elif [ ! -c /dev/vboxdrv ]; then
46 cat << EOF
47WARNING: The character device /dev/vboxdrv does not exist. Try
48
49 sudo /etc/init.d/vboxdrv restart
50
51 and if that is not successful, try to re-install the package.
52
53 You will not be able to start VMs until this problem is fixed.
54EOF
55fi
56
57if [ -f /etc/vbox/module_not_compiled ]; then
58 cat << EOF
59WARNING: The compilation of the vboxdrv.ko kernel module failed during the
60 installation for some reason. Starting a VM will not be possible.
61 Please consult the User Manual for build instructions.
62EOF
63fi
64
65SERVER_PID=`ps -U \`whoami\` | grep VBoxSVC | awk '{ print $1 }'`
66if [ -z "$SERVER_PID" ]; then
67 # Server not running yet/anymore, cleanup socket path.
68 # See IPC_GetDefaultSocketPath()!
69 if [ -n "$LOGNAME" ]; then
70 rm -rf /tmp/.vbox-$LOGNAME-ipc > /dev/null 2>&1
71 else
72 rm -rf /tmp/.vbox-$USER-ipc > /dev/null 2>&1
73 fi
74fi
75
76if [ "$SHUTDOWN" = "true" ]; then
77 if [ -n "$SERVER_PID" ]; then
78 kill -TERM $SERVER_PID
79 sleep 2
80 fi
81 exit 0
82fi
83
84APP=`which $0`
85APP=`basename $APP`
86APP=${APP##/*/}
87case "$APP" in
88 VirtualBox)
89 exec "$INSTALL_DIR/VirtualBox" "$@"
90 ;;
91 VBoxManage)
92 exec "$INSTALL_DIR/VBoxManage" "$@"
93 ;;
94 VBoxSDL)
95 exec "$INSTALL_DIR/VBoxSDL" "$@"
96 ;;
97 VBoxVRDP)
98 exec "$INSTALL_DIR/VBoxHeadless" "$@"
99 ;;
100 VBoxHeadless)
101 exec "$INSTALL_DIR/VBoxHeadless" "$@"
102 ;;
103 vboxwebsrv)
104 exec "$INSTALL_DIR/vboxwebsrv" "$@"
105 ;;
106 *)
107 echo "Unknown application - $APP"
108 ;;
109esac
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette