CentOS 8 Error unkown repo remi
centos
dnf
Software and digital electronics / IT
2023-01-05 05:47
I enter this command on the command-line of a fresh CentOS 8
sudo dnf --enablerepo=remi php74-php
and I receive this error
Error: Unknown repo: 'remi'
How to fix this?
add comment
Answered by robin
2023-01-05 05:57
You need to enable remi repository first.
sudo dnf -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
add comment