-1

In Ubuntu, is there something like the control panel of Windows from where I can uninstall a program?

kos
  • 41,268

2 Answers2

1

open software center, there you find the installed software option, click any software you want to uninstall and remove it.

enter image description here

1

Open a console and type the following:

sudo apt-get remove $PackageName

Please note that doing so will NOT remove dependency to prevent breaking your system.

Best regards, Gael.

Angel115
  • 260