Do you have any specific problem with yum?
Normally you would do yum install make
Or, maybe, sudo yum install make
Wow :-), Ok, i write the standard Make reference here, you take your pick on the source.
wget http://ftp.gnu.org/pub/gnu/make/make-3.81.tar.bz2
tar xfj make-3.81.tar.bz2
./configure
make
sudo make install
And, while you are there, might want to reinstall yum too...
Good to hear you have fixed it.
Answer from nik on serverfault.commakefile - Install 'yum' in Centos7 - Stack Overflow
Make and build utilities on CentOS/RHEL? - Stack Overflow
yum - Installing packages on CentOS 7 - Unix & Linux Stack Exchange
How to use yum on CentOS7
Do you have any specific problem with yum?
Normally you would do yum install make
Or, maybe, sudo yum install make
Wow :-), Ok, i write the standard Make reference here, you take your pick on the source.
wget http://ftp.gnu.org/pub/gnu/make/make-3.81.tar.bz2
tar xfj make-3.81.tar.bz2
./configure
make
sudo make install
And, while you are there, might want to reinstall yum too...
Good to hear you have fixed it.
Just download rpm:
wget http://mirrors.cat.pdx.edu/centos/5.3/os/x86_64/CentOS/make-3.81-3.el5.x86_64.rpm
and install it via rpm:
rpm -ivh make-3.81-3.el5.x86_64.rpm
Hi, I have been trying to build a docker image with CentOS7 for a personal project of mine and have accomplished this last month. But it seems like they have moved some files online and now I cannot use YUM anymore. I'm completely aware that CentOS7 has reached its EOL, so its completely understandable, I'm just trying to figure out how I can use yum again.
Last month on their docker hub page (https://hub.docker.com/_/centos) I was required to add the following 3 lines to my dockerfile which resolved the issue. But since Thursday last week this no longer works. The lines that I used (and they provided):
RUN sed -i s/mirror.centos.org/vault.centos.org/g /etc/yum.repos.d/CentOS-*.repo RUN sed -i s/^#.*baseurl=http/baseurl=http/g /etc/yum.repos.d/CentOS-*.repo RUN sed -i s/^mirrorlist=http/#mirrorlist=http/g /etc/yum.repos.d/CentOS-*.repo
after that "yum install -y httpd" works. But now I get the following error:
failure: repodata/repomd.xml from base: [Errno 256] No more mirrors to try. http://vault.centos.org/centos/7/os/x86_64/repodata/repomd.xml: [Errno 14] HTTPS Error 301 - Moved Permanently