很简remi源:
yum install http://rpms.remirepo.net/enterprise/remi-release-9.rpm
安装完后,默认是没启用的。
vim /etc/yum.repos.d/remi.repo
把
enabled=0
修改为:
enabled=1
一般情况下:
remi源和epel源一起配合着使用,所以建议一起安装了
# yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
# yum install http://rpms.remirepo.net/enterprise/remi-release-9.rpm
# yum update
=========================================================================
如果不是Centos Stream 9以下可以内容可以再看看。如果是,就不用看了。
安装Remi源需要注意:
Remi依赖于EPEL源,因此首先要安装EPEL(EPEL几乎是必不可少的yum/dnf源,许多发行版其实已经内置):yum install -y epel-release # CentOS 8用户可以使用dnf安装
接着安装Remi源。Remi源在全球有许多镜像,国内推荐使用清华大学的镜像源安装(官网首页列出了许多源,清华源是国内镜像源代表):# CentOS 8安装
yum install https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-8.rpm
# CentOS 7 安装
yum install https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-7.rpm
# CentOS 6 停止维护,不再建议使用
yum install https://mirrors.tuna.tsinghua.edu.cn/remi/enterprise/remi-release-6.rpm
此外建议安装 yum-utils 包,提供启用、禁用源等实用功能:yum install yum-utils
安装好Remi源后,/etc/yum.repos.d 目录下多了 remi.repo, remi-safe.repo等文件。对于CentOS 6/7,remi-phpxx文件容易理解,是对应PHP版本的源配置文件;CentOS 8默认使用dnf包管理工具,支持模块(module)安装,多了remi-modular.repo文件(但没有remi-phpxx.repo这些文件)。
Remi源的配置文件中,只有remi-safe是默认启用的。remi-safe如其名,其中的包都很安全,不会改变系统行为,其他源文件中的包则可能会影响系统环境。