I am trying to uninstall the oracle database xe 10g from ubuntu but I am unable. Please guide me.
Asked
Active
Viewed 436 times
0
1 Answers
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
-
The package name is
virtualbox
, not oracle.sudo apt purge virtualbox*
will remove all oracle vmware for any version. Can follow withsudo apt autoremove
to remove the libraries/dependencies. – Jason Liu Apr 13 '23 at 22:30
then use
sudo apt-get --purge remove packageName `
– Ali Oct 26 '22 at 19:32