0

I am trying to uninstall the oracle database xe 10g from ubuntu but I am unable. Please guide me.

Ali
  • 11

1 Answers1

1

I uninstall it successfully by using dpkg. Use the following commands dpkg --list (use this command you will get a list of packages install on your system. Find the package you want to delete from list.) then use
sudo apt-get --purge remove packageName (Package name should same as in the list)

In this way you can uninstall any package.

Ali
  • 11