有人知道如何在moreutils
上安装Centos8吗?
我得到了一个错误:
[root@default-bento-centos-8 vagrant]# dnf install moreutils
Last metadata expiration check: 0:19:17 ago on Tue 17 Aug 2021 08:27:50 PM UTC.
Error:
Problem: conflicting requests
- nothing provides perl(IPC::Run) needed by moreutils-0.63-1.el8.x86_64
- nothing provides perl-IPC-Run needed by moreutils-0.63-1.el8.x86_64
(try to add '--skip-broken' to skip uninstallable packages or '--nobest' to use not only best candidate packages)
[root@default-bento-centos-8 vagrant]# dnf -y --enablerepo=PowerTools install moreutils
Error: Unknown repo: 'PowerTools'
我同时安装了epel-release
和perl
软件包。
发布于 2021-08-18 14:32:35
启用回购参数是区分大小写的,与Pascal大小写相比,powertools需要完全降低大小写。
这样做是可行的:
dnf install epel-release -y
dnf --enablerepo=powertools install moreutils -y
https://stackoverflow.com/questions/68823855
复制相似问题