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

How to Install Internet Explorer on Ubuntu 20.04

Step 1: Install PlayonLinux kim@kimlinux:~# sudo apt install playonlinux -y Step 2: Install Internet Explorer…

How To Install Kubernetes on Ubuntu 20.04 Server

Overview Docker is available in 2 versions, Community Edition (CE) and Enterprise Edition (DE). The…

CentOS System Setup

Notes from 2018...   # Upgrade system and clean disk yum upgrade yum clean all…