Create UNINSTALL.sh script and update README.md

This commit is contained in:
SonarBeserk 2022-10-30 01:07:38 -04:00 committed by Christian Hoff
parent a961389cd7
commit ae26ba25ac
2 changed files with 88 additions and 0 deletions

View File

@ -57,3 +57,46 @@ ashmem_linux 16384 0
crw-rw-rw- 1 root root 10, 55 Jun 19 16:30 /dev/ashmem crw-rw-rw- 1 root root 10, 55 Jun 19 16:30 /dev/ashmem
crw-rw-rw- 1 root root 511, 0 Jun 19 16:30 /dev/binder crw-rw-rw- 1 root root 511, 0 Jun 19 16:30 /dev/binder
``` ```
# Uninstall Instructions
ou can either run `./UNINSTALL.sh` script to automate the installation steps or follow them manually below:
* First use dkms to remove the modules:
```
$ sudo dkms remove anbox-ashmem/1
$ sudo dkms remove anbox-binder/1
```
* Then remove the module sources from /usr/src/:
```
$ sudo rm -rf /usr/src/anbox-ashmem-1
$ sudo rm -rf /usr/src/anbox-binder-1
```
* Finally remove the configuration files:
```
$ sudo rm -f /etc/modules-load.d/anbox.conf
$ sudo rm -f /lib/udev/rules.d/99-anbox.rules
```
You must then restart your device. You can then verify modules were removed by trying to load the modules and checking the created devices:
```
$ sudo modprobe ashmem_linux
$ sudo modprobe binder_linux
$ lsmod | grep -e ashmem_linux -e binder_linux
$ ls -alh /dev/binder /dev/ashmem
```
You are expected to see output like:
```
modprobe: FATAL: Module ashmem_linux not found in directory /lib/modules/6.0.2-76060002-generic
modprobe: FATAL: Module binder_linux not found in directory /lib/modules/6.0.2-76060002-generic
ls: cannot access '/dev/binder': No such file or directory
ls: cannot access '/dev/ashmem': No such file or directory
```

45
UNINSTALL.sh Executable file
View File

@ -0,0 +1,45 @@
#!/usr/bin/env bash
# First use dkms to remove the modules:
sudo dkms remove anbox-ashmem/1
sudo dkms remove anbox-binder/1
# Then remove the module sources from /usr/src/:
sudo rm -rf /usr/src/anbox-ashmem-1
sudo rm -rf /usr/src/anbox-binder-1
# Finally remove the configuration files:
sudo rm -f /etc/modules-load.d/anbox.conf
sudo rm -f /lib/udev/rules.d/99-anbox.rules
# Verify remove by trying to load the modules and checking the created devices:
failed_checks=0
if sudo modprobe ashmem_linux > /dev/null 2>&1; then
failed_checks=1
else
failed_checks=0
fi
if sudo modprobe binder_linux > /dev/null 2>&1; then
failed_checks=1
else
failed_checks=0
fi
if lsmod | grep -e ashmem_linux -e binder_linux > /dev/null 2>&1; then
failed_checks=1
else
failed_checks=0
fi
if ls -alh /dev/binder /dev/ashmem > /dev/null 2>&1; then
failed_checks=1
else
failed_checks=0
fi
if [ $failed_checks == 1 ]; then
echo "Please restart your device and rerun this script to verify changes"
else
echo "Modules not installed"
fi