1 | #!/bin/sh
|
---|
2 | #
|
---|
3 | # Oracle VM VirtualBox
|
---|
4 | # VirtualBox linux uninstallation script
|
---|
5 |
|
---|
6 | #
|
---|
7 | # Copyright (C) 2009-2015 Oracle Corporation
|
---|
8 | #
|
---|
9 | # This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | # available from http://www.virtualbox.org. This file is free software;
|
---|
11 | # you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | # General Public License (GPL) as published by the Free Software
|
---|
13 | # Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | # VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | # hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | #
|
---|
17 |
|
---|
18 | # The below is GNU-specific. See VBox.sh for the longer Solaris/OS X version.
|
---|
19 | TARGET=`readlink -e -- "${0}"` || exit 1
|
---|
20 | MY_PATH="${TARGET%/[!/]*}"
|
---|
21 | . "${MY_PATH}/routines.sh"
|
---|
22 |
|
---|
23 | if [ -z "$ro_LOG_FILE" ]; then
|
---|
24 | create_log "/var/log/vbox-uninstall.log"
|
---|
25 | fi
|
---|
26 |
|
---|
27 | if [ -z "VBOX_NO_UNINSTALL_MESSAGE" ]; then
|
---|
28 | info "Uninstalling VirtualBox"
|
---|
29 | log "Uninstalling VirtualBox"
|
---|
30 | log ""
|
---|
31 | fi
|
---|
32 |
|
---|
33 | check_root
|
---|
34 |
|
---|
35 | [ -z "$CONFIG_DIR" ] && CONFIG_DIR="/etc/vbox"
|
---|
36 | [ -z "$CONFIG" ] && CONFIG="vbox.cfg"
|
---|
37 | [ -z "$CONFIG_FILES" ] && CONFIG_FILES="filelist"
|
---|
38 | [ -z "$DEFAULT_FILES" ] && DEFAULT_FILES=`pwd`/deffiles
|
---|
39 |
|
---|
40 | # Find previous installation
|
---|
41 | if [ -r $CONFIG_DIR/$CONFIG ]; then
|
---|
42 | . $CONFIG_DIR/$CONFIG
|
---|
43 | PREV_INSTALLATION=$INSTALL_DIR
|
---|
44 | fi
|
---|
45 |
|
---|
46 | # Remove previous installation
|
---|
47 | if [ "$PREV_INSTALLATION" = "" ]; then
|
---|
48 | log "Unable to find a VirtualBox installation, giving up."
|
---|
49 | abort "Couldn't find a VirtualBox installation to uninstall."
|
---|
50 | fi
|
---|
51 |
|
---|
52 | # Do pre-removal common to all installer types, currently service script
|
---|
53 | # clean-up.
|
---|
54 | "${MY_PATH}/prerm-common.sh" || exit 1
|
---|
55 |
|
---|
56 | # Remove kernel module installed
|
---|
57 | if [ -z "$VBOX_DONT_REMOVE_OLD_MODULES" ]; then
|
---|
58 | rm -f /usr/src/vboxhost-$INSTALL_VER 2> /dev/null
|
---|
59 | rm -f /usr/src/vboxdrv-$INSTALL_VER 2> /dev/null
|
---|
60 | rm -f /usr/src/vboxnetflt-$INSTALL_VER 2> /dev/null
|
---|
61 | rm -f /usr/src/vboxnetadp-$INSTALL_VER 2> /dev/null
|
---|
62 | rm -f /usr/src/vboxpci-$INSTALL_VER 2> /dev/null
|
---|
63 | fi
|
---|
64 |
|
---|
65 | # Remove symlinks
|
---|
66 | rm -f \
|
---|
67 | /usr/bin/VirtualBox \
|
---|
68 | /usr/bin/VBoxManage \
|
---|
69 | /usr/bin/VBoxSDL \
|
---|
70 | /usr/bin/VBoxVRDP \
|
---|
71 | /usr/bin/VBoxHeadless \
|
---|
72 | /usr/bin/VBoxDTrace \
|
---|
73 | /usr/bin/VBoxBugReport \
|
---|
74 | /usr/bin/VBoxBalloonCtrl \
|
---|
75 | /usr/bin/VBoxAutostart \
|
---|
76 | /usr/bin/VBoxNetDHCP \
|
---|
77 | /usr/bin/VBoxNetNAT \
|
---|
78 | /usr/bin/vboxwebsrv \
|
---|
79 | /usr/bin/vbox-img \
|
---|
80 | /usr/bin/VBoxAddIF \
|
---|
81 | /usr/bin/VBoxDeleteIf \
|
---|
82 | /usr/bin/VBoxTunctl \
|
---|
83 | /usr/bin/virtualbox \
|
---|
84 | /usr/share/pixmaps/VBox.png \
|
---|
85 | /usr/share/pixmaps/virtualbox.png \
|
---|
86 | /usr/share/applications/virtualbox.desktop \
|
---|
87 | /usr/share/mime/packages/virtualbox.xml \
|
---|
88 | /usr/bin/rdesktop-vrdp \
|
---|
89 | /usr/bin/virtualbox \
|
---|
90 | /usr/bin/vboxmanage \
|
---|
91 | /usr/bin/vboxsdl \
|
---|
92 | /usr/bin/vboxheadless \
|
---|
93 | /usr/bin/vboxdtrace \
|
---|
94 | /usr/bin/vboxbugreport \
|
---|
95 | $PREV_INSTALLATION/components/VBoxVMM.so \
|
---|
96 | $PREV_INSTALLATION/components/VBoxREM.so \
|
---|
97 | $PREV_INSTALLATION/components/VBoxRT.so \
|
---|
98 | $PREV_INSTALLATION/components/VBoxDDU.so \
|
---|
99 | $PREV_INSTALLATION/components/VBoxXPCOM.so \
|
---|
100 | 2> /dev/null
|
---|
101 |
|
---|
102 | cwd=`pwd`
|
---|
103 | if [ -f $PREV_INSTALLATION/src/Makefile ]; then
|
---|
104 | cd $PREV_INSTALLATION/src
|
---|
105 | make clean > /dev/null 2>&1
|
---|
106 | fi
|
---|
107 | if [ -f $PREV_INSTALLATION/src/vboxdrv/Makefile ]; then
|
---|
108 | cd $PREV_INSTALLATION/src/vboxdrv
|
---|
109 | make clean > /dev/null 2>&1
|
---|
110 | fi
|
---|
111 | if [ -f $PREV_INSTALLATION/src/vboxnetflt/Makefile ]; then
|
---|
112 | cd $PREV_INSTALLATION/src/vboxnetflt
|
---|
113 | make clean > /dev/null 2>&1
|
---|
114 | fi
|
---|
115 | if [ -f $PREV_INSTALLATION/src/vboxnetadp/Makefile ]; then
|
---|
116 | cd $PREV_INSTALLATION/src/vboxnetadp
|
---|
117 | make clean > /dev/null 2>&1
|
---|
118 | fi
|
---|
119 | if [ -f $PREV_INSTALLATION/src/vboxpci/Makefile ]; then
|
---|
120 | cd $PREV_INSTALLATION/src/vboxpci
|
---|
121 | make clean > /dev/null 2>&1
|
---|
122 | fi
|
---|
123 | cd $PREV_INSTALLATION
|
---|
124 | if [ -r $CONFIG_DIR/$CONFIG_FILES ]; then
|
---|
125 | rm -f `cat $CONFIG_DIR/$CONFIG_FILES` 2> /dev/null
|
---|
126 | elif [ -n "$DEFAULT_FILES" -a -r "$DEFAULT_FILES" ]; then
|
---|
127 | DEFAULT_FILE_NAMES=""
|
---|
128 | . $DEFAULT_FILES
|
---|
129 | for i in "$DEFAULT_FILE_NAMES"; do
|
---|
130 | rm -f $i 2> /dev/null
|
---|
131 | done
|
---|
132 | fi
|
---|
133 | for file in `find $PREV_INSTALLATION 2> /dev/null`; do
|
---|
134 | rmdir -p $file 2> /dev/null
|
---|
135 | done
|
---|
136 | cd $cwd
|
---|
137 | mkdir -p $PREV_INSTALLATION 2> /dev/null # The above actually removes the current directory and parents!
|
---|
138 | rmdir $PREV_INSTALLATION 2> /dev/null
|
---|
139 | rm -r $CONFIG_DIR/$CONFIG 2> /dev/null
|
---|
140 |
|
---|
141 | if [ -z "$VBOX_NO_UNINSTALL_MESSAGE" ]; then
|
---|
142 | rm -r $CONFIG_DIR/$CONFIG_FILES 2> /dev/null
|
---|
143 | rmdir $CONFIG_DIR 2> /dev/null
|
---|
144 | [ -n "$INSTALL_REV" ] && INSTALL_REV=" r$INSTALL_REV"
|
---|
145 | info "VirtualBox $INSTALL_VER$INSTALL_REV has been removed successfully."
|
---|
146 | log "Successfully $INSTALL_VER$INSTALL_REV removed VirtualBox."
|
---|
147 | fi
|
---|
148 | update-mime-database /usr/share/mime >/dev/null 2>&1
|
---|