I installed SBCL 1.2.3 on Ubuntu 12.04 by downloading sbcl-1.2.3-x86-64-linux-binary.tar.bz2, and running
sudo bash install.sh
However, I was curious about how I would be able to uninstall it? It has no Makefile (as it is not a source archive), so make uninstall
or anything similar would be impossible. The same applies for the Truecrypt 7.1a binary too.
How can I remove these kind of software?
install.sh
. It installs in various locations under /usr/local. Even better, it tells you the pathname after it installs each file. Just run install.sh again, look at the output, and remove whatever it creates under /usr/local, as well as any.old
files. It also runsinstall-info
; I don't know offhand what system files that touches. – Mark Plotnick Sep 19 '14 at 14:07