How can I install git on RHEL 6?

It’s a problem with your YUM repo for the actual distribution… It doesn’t appear as though you have a “base” repository, based on your yum repolist command output. I suppose you could just download it as well… [root@Kitteh ~]# yum repolist Loaded plugins: fastestmirror, security Loading mirror speeds from cached hostfile * base: xt.lol.net * … Read more

yum error “Cannot retrieve metalink for repository: epel. Please verify its path and try again” updating ContextBroker

You just needed to update ca-certificates package. Before that just disable all repos with https that are failing. That’s why solution with commenting mirrorlist or using http instead https would work also. For example if you need to disable only epel repo: yum –disablerepo=epel -y update ca-certificates This will also help wget, curl, and anything … Read more

Exclude a specific repo from YUM Update

Try the disable repo switch: –disablerepo=REPONAME UPDATE To find all repositories currently “known” (enabled and disabled): yum repolist all Then to find which repository is giving you grief for the above package, try: yum list php53-mcrypt-5.3.3-4.ius.el5.x86_64 –showduplicates This will then show which of your repositories provide the above package (you’ll see “installed” on the list … Read more