How To Remove A Software From Linux

[Solved] How To Remove A Software From Linux | Shell - Code Explorer | yomemimo.com
Question : purge a software linux

Answered by : merwan

# List out all software installed on the machine
dpkg --list
# remove the software you want using the following command
sudo apt-get --purge remove NAME_SOFTWARE
# e.g.
sudo apt-get --purge remove gimp

Source : | Last Update : Mon, 23 May 22

Question : how to remove a software from linux

Answered by : uptight-unicorn-f95cjdcr271v

# use this for centos
sudo yum remove [pkg_name]

Source : | Last Update : Wed, 02 Dec 20

Answers related to how to remove a software from linux

Code Explorer Popular Question For Shell