How to Delete Repos on CentOS Updated on August 16, 2021 by InMotion Hosting Contributor 1 Minutes, 30 Seconds to Read When working with your CentOS server, you may find yourself in a position where you need to remove installed software packages. This may be the result of software no longer being needed for a given project, or it may be due to conflicts with other software that is installed. A group of software packages is generally contained within what is called a repository. While it is fairly simple to delete repositories in CentOS, the process does require the use of a command-line interface. As such, it is only recommended to perform the steps in this article if you are comfortable with command-line operations. In this article, we will outline how to delete an installed EPEL repository. Note that you will require root access in order to use these directions. Delete Repos First, connect to your CentOS server with root access via SSH. Next, search for the package name installed by executing the following rpm command:rpm -qf /etc/yum.repos.d/epel.repo epel-release-6-8.noarchOnce you’ve found the package name, remove the packages and repos with the following yum command:yum remove epel-releaseFinally, it is a good idea to run the following command to clear any cached data regarding the installed packages as this can take up a large amount of disk space.yum clean all Congratulations! Now you know how to delete repos on your dedicated server! It is recommended that you remove any unneeded repos to avoid software conflicts or other system instabilities. Proper package management is crucial for secure and reliable system administration, making the above commands particularly useful. By familiarizing yourself with common repos and the commands for adding or removing them, you can better manage your software environment. Need more help with software repos? Learn how to create a repository in Github with this helpful guide. Share this Article InMotion Hosting Contributor Content Writer InMotion Hosting contributors are highly knowledgeable individuals who create relevant content on new trends and troubleshooting techniques to help you achieve your online goals! More Articles by InMotion Hosting Related Articles Understanding Linux Operating Systems How to Install Python 3.9 on CentOS 7 Speed Up grep Searches with LC_ALL=C How To Install RubyGems On Linux unrar and rar Commands 5 Ways to Find a File in Linux Setting Your PHP Settings in Command Line How to Check the Memory Usage on Linux How to Send Files to the Trash Can in Linux with Gio Trash How to Merge PDF Files in the Linux Terminal