VirtualBox

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

Last change on this file since 33567 was 33231, checked in by vboxsync, 14 years ago

Linux installer: provide convenience symlinks (virtualbox -> VirtualBox, vboxmanage -> VBoxManage, ...)

  • Property svn:eol-style set to LF
File size: 5.2 KB
Line 
1#!/bin/sh
2#
3# Oracle VM VirtualBox
4# VirtualBox linux uninstallation script
5
6#
7# Copyright (C) 2009-2010 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. `dirname $0`/routines.sh
19
20if [ -z "$ro_LOG_FILE" ]; then
21 create_log "/var/log/vbox-uninstall.log"
22fi
23
24if [ -z "VBOX_NO_UNINSTALL_MESSAGE" ]; then
25 info "Uninstalling VirtualBox"
26 log "Uninstalling VirtualBox"
27 log ""
28fi
29
30check_root
31
32[ -z "$DKMS" ] && DKMS=`which dkms 2> /dev/null`
33[ -z "$CONFIG_DIR" ] && CONFIG_DIR="/etc/vbox"
34[ -z "$CONFIG" ] && CONFIG="vbox.cfg"
35[ -z "$CONFIG_FILES" ] && CONFIG_FILES="filelist"
36[ -z "$DEFAULT_FILES" ] && DEFAULT_FILES=`pwd`/deffiles
37
38# Find previous installation
39if [ -r $CONFIG_DIR/$CONFIG ]; then
40 . $CONFIG_DIR/$CONFIG
41 PREV_INSTALLATION=$INSTALL_DIR
42fi
43
44# Remove previous installation
45if [ "$PREV_INSTALLATION" = "" ]; then
46 log "Unable to find a VirtualBox installation, giving up."
47 abort "Couldn't find a VirtualBox installation to uninstall."
48fi
49
50# Stop the web service
51stop_init_script vboxweb-service
52# Do this check here after we terminated the web service
53check_running
54# Terminate VBoxNetDHCP if running
55terminate_proc VBoxNetDHCP
56delrunlevel vboxweb-service > /dev/null 2>&1
57remove_init_script vboxweb-service
58# Stop kernel module and uninstall runlevel script
59stop_init_script vboxdrv
60delrunlevel vboxdrv > /dev/null 2>&1
61remove_init_script vboxdrv
62# Stop host networking and uninstall runlevel script (obsolete)
63stop_init_script vboxnet
64delrunlevel vboxnet > /dev/null 2>&1
65remove_init_script vboxnet
66# Remove kernel module installed
67if [ -n "$DKMS" ]; then
68 $DKMS remove -m vboxhost -v $INSTALL_VER --all > /dev/null 2>&1
69fi
70if [ -z "$VBOX_DONT_REMOVE_OLD_MODULES" ]; then
71 find /lib/modules/`uname -r` -name "vboxdrv\.*" 2>/dev/null|xargs rm -f 2> /dev/null
72 find /lib/modules/`uname -r` -name "vboxnetflt\.*" 2>/dev/null|xargs rm -f 2> /dev/null
73 find /lib/modules/`uname -r` -name "vboxnetadp\.*" 2>/dev/null|xargs rm -f 2> /dev/null
74 # Remove directories we have installed to in the past
75 find /lib/modules/`uname -r` -name vbox\* 2>/dev/null|xargs rmdir -p 2> /dev/null
76 find /lib/modules/`uname -r` -name misc\* 2>/dev/null|xargs rmdir -p 2> /dev/null
77 rm -f /usr/src/vboxhost-$INSTALL_VER 2> /dev/null
78 rm -f /usr/src/vboxdrv-$INSTALL_VER 2> /dev/null
79 rm -f /usr/src/vboxnetflt-$INSTALL_VER 2> /dev/null
80 rm -f /usr/src/vboxnetadp-$INSTALL_VER 2> /dev/null
81fi
82
83# Remove symlinks
84rm -f \
85 /usr/bin/VirtualBox \
86 /usr/bin/VBoxManage \
87 /usr/bin/VBoxSDL \
88 /usr/bin/VBoxVRDP \
89 /usr/bin/VBoxHeadless \
90 /usr/bin/VBoxNetDHCP \
91 /usr/bin/vboxwebsrv \
92 /usr/bin/VBoxAddIF \
93 /usr/bin/VBoxDeleteIf \
94 /usr/bin/VBoxTunctl \
95 /usr/bin/virtualbox \
96 /usr/share/pixmaps/VBox.png \
97 /usr/share/applications/virtualbox.desktop \
98 /usr/bin/rdesktop-vrdp \
99 /usr/bin/virtualbox \
100 /usr/bin/vboxmanage \
101 /usr/bin/vboxsdl \
102 /usr/bin/vboxheadless \
103 $PREV_INSTALLATION/components/VBoxVMM.so \
104 $PREV_INSTALLATION/components/VBoxREM.so \
105 $PREV_INSTALLATION/components/VBoxRT.so \
106 $PREV_INSTALLATION/components/VBoxDDU.so \
107 $PREV_INSTALLATION/components/VBoxXPCOM.so \
108 2> /dev/null
109
110# Remove udev description file
111if [ -f /etc/udev/rules.d/60-vboxdrv.rules ]; then
112 rm -f /etc/udev/rules.d/60-vboxdrv.rules 2> /dev/null
113fi
114if [ -f /etc/udev/rules.d/10-vboxdrv.rules ]; then
115 rm -f /etc/udev/rules.d/10-vboxdrv.rules 2> /dev/null
116fi
117
118cwd=`pwd`
119if [ -f $PREV_INSTALLATION/src/Makefile ]; then
120 cd $PREV_INSTALLATION/src
121 make clean > /dev/null 2>&1
122fi
123if [ -f $PREV_INSTALLATION/src/vboxdrv/Makefile ]; then
124 cd $PREV_INSTALLATION/src/vboxdrv
125 make clean > /dev/null 2>&1
126fi
127if [ -f $PREV_INSTALLATION/src/vboxnetflt/Makefile ]; then
128 cd $PREV_INSTALLATION/src/vboxnetflt
129 make clean > /dev/null 2>&1
130fi
131if [ -f $PREV_INSTALLATION/src/vboxnetadp/Makefile ]; then
132 cd $PREV_INSTALLATION/src/vboxnetadp
133 make clean > /dev/null 2>&1
134fi
135cd $PREV_INSTALLATION
136if [ -r $CONFIG_DIR/$CONFIG_FILES ]; then
137 rm -f `cat $CONFIG_DIR/$CONFIG_FILES` 2> /dev/null
138elif [ -n "$DEFAULT_FILES" -a -r "$DEFAULT_FILES" ]; then
139 DEFAULT_FILE_NAMES=""
140 . $DEFAULT_FILES
141 for i in "$DEFAULT_FILE_NAMES"; do
142 rm -f $i 2> /dev/null
143 done
144fi
145for file in `find $PREV_INSTALLATION 2> /dev/null`; do
146 rmdir -p $file 2> /dev/null
147done
148cd $cwd
149mkdir -p $PREV_INSTALLATION 2> /dev/null # The above actually removes the current directory and parents!
150rmdir $PREV_INSTALLATION 2> /dev/null
151rm -r $CONFIG_DIR/$CONFIG 2> /dev/null
152
153if [ -z "$VBOX_NO_UNINSTALL_MESSAGE" ]; then
154 rm -r $CONFIG_DIR/$CONFIG_FILES 2> /dev/null
155 rmdir $CONFIG_DIR 2> /dev/null
156 [ -n "$INSTALL_REV" ] && INSTALL_REV=" r$INSTALL_REV"
157 info "VirtualBox $INSTALL_VER$INSTALL_REV has been removed successfully."
158 log "Successfully $INSTALL_VER$INSTALL_REV removed VirtualBox."
159fi
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