首先:
dnf swap centos-linux-repos centos-stream-repos
会删掉一些不合适的包。
然后:
dnf install centos-release-stream
启用Centos Stream的库
接着:
dnf distro-sync
更新系统.
这时执行:
cat /etc/centos-release
看到“CentOS Stream release 8”这样的返回,说明已经好了。
下面,可以安装php8了。
安装epel库
dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
安装 dnf-utils 和 remi库
dnf install dnf-utils http://rpms.remirepo.net/enterprise/remi-release-8.rpm
接下来就可以安装,php8了
先查看下PHP模块列表
dnf module list php
你将看到一张PHP模块的列表,
重置php列表
dnf module list reset php
设置自己想要的php版本
dnf module enable php:remi-8.1
这样就可以用 dnf install php来安装php8.1了。
版权声明:本文为HOOLOO原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。