Posted On April 1, 2019

How to Remove Apps in CentOS/Redhat

kimconnect 0 comments
blog.KimConnect.com >> Linux >> How to Remove Apps in CentOS/Redhat
Check the repo directory:
[root@localhost ~]# ls /etc/yum.repos.d
CentOS-Base.repo CentOS-Sources.repo
CentOS-CR.repo CentOS-Vault.repo
CentOS-Debuginfo.repo docker-ce.repo
CentOS-fasttrack.repo download.docker.com_linux_centos_docker-ce.repo
CentOS-Media.repo
 
Test to see if such repo has been installed by RPM. If so, remove it using rpm
[root@localhost ~]# rpm -qa | grep -i download.docker.com_linux_centos_docker-ce.repo
[root@localhost ~]# rpm -e download.docker.com_linux_centos_docker-ce.repo
error: package download.docker.com_linux_centos_docker-ce.repo is not installed
 
As shown above, this download.docker.com_linux_centos_docker-ce.repo is not installed by RPM. Thus, it can be removed manually.
[root@localhost ~]# rm -f /etc/yum.repos.d/download.docker.com_linux_centos_docker-ce.repo

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Bash: How To Join Array With Comma Delimiter

# The following function joins an array of numbers # Limitation: the delimiter is expected…

PowerShell: Maintain Linux Services via SSH Remoting

Version 2: # maintainLinuxServices.ps1 # Version 0.0.2 # Description: this is a simple script to…

Yum commands to update server

Wanna ace your Linux job interviews? Well, read more Linuxy stuff and cramp your brain…