VirtualBox

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

Last change on this file since 35197 was 31999, checked in by vboxsync, 14 years ago

deb: sync

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