1

I am trying to uninstall "Libreoffice", "onboard", "onlineaccounts" etc. from ubuntu software center GUI after authenticating remove these are removed from there for short time after some time they appear back. Kindly tell me how to uninstall these items completely and delete there data as well.

3 Answers3

1

Use the apt command. It will look something like this

sudo apt-get remove --purge libreoffice*
sudo apt-get clean
sudo apt-get autoremove

Here is the link to the Ubuntu forum for more detail. How to uninstall LibreOffice?

Joe
  • 162
0

Or if you are uncomfortable with terminal you can also remove them using Ubuntu Software->Installed->Remove. You might need to retry it a couple of times if it failsenter image description here

0

Even if the Ubuntu software center GUI is a very pretty eye candy i suggest learning your way around the Linux cli because there lays the true power of this operating system. You can use the purge command from the apt package manager to permanently delete some pack and its dependencies. For example for libre office you should type: sudo apt purge libreoffice

  • libreoffice is just a met-package. Removing/purging it won't actually uninstall any of the LO components. sudo apt purge libreoffice* will remove everything with libreoffice in its name. –  Feb 14 '17 at 16:47
  • correct forgot about the globbing sorry – Tiberiu Lepadatu Feb 14 '17 at 16:49