После установки CentOS minimal при попытке добавить репозиторий – система сообщила об ошибке:
# yum-config-manager --enable base bash: yum-config-manager: command not found
Пакет yum-config-manager
входит в yum-utils
. Поэтому для начала – надо поставить его. При этом – все репозитории находятся в соcтоянии disabled
:
# yum repolist all ... base CentOS-6 - Base disabled centosplus CentOS-6 - Plus disabled contrib CentOS-6 - Contrib disabled debug CentOS-6 - Debuginfo disabled extras CentOS-6 - Extras disabled updates CentOS-6 - Updates disabled
Выполняем:
# yum --enablerepo="base" -y install yum-utils
А теперь можно подключить все имеющиеся репозитории:
# yum-config-manager --enable base centosplus contrib extras updates ... Complete!