You can uninstall software on Ubuntu using the apt command. Here are the commands you can use:
-
To remove a package:
sudo apt remove package-name -
To remove a package along with its configuration files:
sudo apt purge package-name -
To remove unnecessary dependencies that were installed with the package:
sudo apt autoremove
Replace package-name with the name of the software you want to uninstall.
