CentOS的REMI源

CentOS下除了EPEL源之外还有REMI的源,REMI源保证了软件的最新版,注意:并不一定是稳定的。并且安装了REMI源默认是不开启的,只有有需要的时候才进行开启使用。

在CentOS 7上:

# rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi
# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

在CentOS 6上:

# rpm --import http://rpms.famillecollet.com/RPM-GPG-KEY-remi
# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

使用:

# yum --enablerepo=remi search <keyword>
# yum --enablerepo=remi install <package-name>

参考:

https://www.linuxidc.com/Linux/2014-11/109240.htm

猜你喜欢

转载自www.cnblogs.com/EasonJim/p/9029306.html