0

(13.04) I downloaded and installed a program from the internet (.bundle), but it crashes every time I try to run it.

  • I can't find it in the software centre
  • It doesn't have an "uninstall" option in the dash
  • sudo apt-get remove v + Tab doesn't list it
  • dpkg --list doesn't show it either

I need to uninstall it and try installing a different version, but how do I find it?

1 Answers1

0

OK, there is no bundle name provided, so I will be general. If you installed something from Internet using .bundle or .run package, you have to search in Internet the right way to remove that package. For example, VMWare and Oracle have their own installation managers.

Some common uninstallation procedures for famous packages:

NVidia drivers (in case you have installed it through .run package)

Here is the original answer. Just run sudo NVIDIA-Linux-XXX-YYY.ZZ.run --uninstall.

ATI drivers

Here is the original answer. Run sudo sh /usr/share/ati/fglrx-uninstall.sh.

Oracle Universal Installer

$ORACLE_HOME/oui/bin/runInstaller

Note that ORACLE_HOME must contain path to Oracle Home directory.

VMWare Workstation

Taken from there. Run vmware-installer --uninstall-product vmware-workstation.

Sources package

In package home directory, run sudo make uninstall.

But in most cases, it is better to search for the distribution-provided package or for package in PPA. The exclusion is Calibre, which recommends install itself using Python script. And it's uninstallation procedure is pretty simple:

sudo rm -rf /opt/calibre/*

Hope it helps.

Danatela
  • 13,384