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

Linux Networking: Manual Configurations

Ubuntu Systems /etc/resolv.conf specifies the nameservers for resolver lookups. The order of lookup is sequential…

Linux Cheat Sheet

Below is a quick reference to the most useful commands and techniques for a Linux…

How to configure Ubiquiti EdgeRouter to send logs to a Syslog Server

Method 1: using text editor # Edit the syslog config sudo vi /etc/rsyslog.d/vyatta-log.conf # Change…