VirtualBox

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

Last change on this file since 25414 was 18265, checked in by vboxsync, 15 years ago

config file cleanup + small copyright year update

File size: 2.8 KB
Line 
1#!/bin/sh
2#
3# Sun VirtualBox
4#
5# Copyright (C) 2006-2009 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
47fi
48
49if [ -f /etc/vbox/module_not_compiled ]; then
50 cat << EOF
51WARNING: The compilation of the vboxdrv.ko kernel module failed during the
52 installation for some reason. Starting a VM will not be possible.
53 Please consult the User Manual for build instructions.
54EOF
55fi
56
57SERVER_PID=`ps -U \`whoami\` | grep VBoxSVC | awk '{ print $1 }'`
58if [ -z "$SERVER_PID" ]; then
59 # Server not running yet/anymore, cleanup socket path.
60 # See IPC_GetDefaultSocketPath()!
61 if [ -n "$LOGNAME" ]; then
62 rm -rf /tmp/.vbox-$LOGNAME-ipc > /dev/null 2>&1
63 else
64 rm -rf /tmp/.vbox-$USER-ipc > /dev/null 2>&1
65 fi
66fi
67
68if [ "$SHUTDOWN" = "true" ]; then
69 if [ -n "$SERVER_PID" ]; then
70 kill -TERM $SERVER_PID
71 sleep 2
72 fi
73 exit 0
74fi
75
76APP=`which $0`
77APP=`basename $APP`
78APP=${APP##/*/}
79case "$APP" in
80 VirtualBox)
81 exec "/usr/lib/virtualbox/VirtualBox" "$@"
82 ;;
83 VBoxManage)
84 exec "/usr/lib/virtualbox/VBoxManage" "$@"
85 ;;
86 VBoxSDL)
87 exec "/usr/lib/virtualbox/VBoxSDL" "$@"
88 ;;
89 VBoxVRDP)
90 exec "/usr/lib/virtualbox/VBoxHeadless" "$@"
91 ;;
92 VBoxHeadless)
93 exec "/usr/lib/virtualbox/VBoxHeadless" "$@"
94 ;;
95 *)
96 echo "Unknown application - $APP"
97 ;;
98esac
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use