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

Ubuntu: Auto Updates Configuration

Prepare the Linux OS: # Install auto-update packages sudo apt install -y unattended-upgrades apt-listchanges #…

Centos 5.3 Server preparation for web hosting

These are compatible Repositories: FreshRPMS, Dries, NewRPMS and PlanetCCRMA   Note: to update PHP and…

Linux: How to Create a User and Add to Group in a Single Line?

This is a common question for Linux Admins. It would be necessary to memorize the…