感谢这个帖子和不多的评论,让我有机会尝试搭建了自己的博客,在CSDN中记录一条链接。
以下为原文


想在自己的笔记本CentOS7上安装dnf玩玩儿,但是根据百度出来的方法没有成功

1
2
yum install epel-release -y
yum install dnf

通过yum安装dnf提示没有可用的dnf包
百度了一大圈还是没有找到解决办法,所有的结果都是指向了上方的yum安装方法,没办法只能偷偷翻墙看看谷歌的结果了。
在谷歌通过package dnf available搜索第1页就能看到这个记录centos7 - centos 7.4 can not install dnffrom epel - Server Fault
可能有些小伙伴政治觉悟较高不想翻墙,现在将解决办法转载过来,如下:

1
2
3
4
wget http://springdale.math.ias.edu/data/puias/unsupported/7/x86_64/dnf-conf-0.6.4-2.sdl7.noarch.rpm
wget http://springdale.math.ias.edu/data/puias/unsupported/7/x86_64//dnf-0.6.4-2.sdl7.noarch.rpm
wget http://springdale.math.ias.edu/data/puias/unsupported/7/x86_64/python-dnf-0.6.4-2.sdl7.noarch.rpm
yum install python-dnf-0.6.4-2.sdl7.noarch.rpm dnf-0.6.4-2.sdl7.noarch.rpm dnf-conf-0.6.4-2.sdl7.noarch.rpm

我本地的CentOS版本如下,亲试有效

1
2
3
4
5
6
7
8
9
10
11
[leo@ASUS-Leo ~]$ cat /etc/redhat-release
CentOS Linux release 7.4.1708 (Core)
[leo@ASUS-Leo ~]$ dnf update
Extra Packages for Enterprise Linux 7 - x86_64 2.5 MB/s | 13 MB 00:05
CentOS-7 - Base 1.9 MB/s | 9.5 MB 00:04
CentOS-7 - Updates 2.4 MB/s | 3.2 MB 00:01
CentOS-7 - Extras 348 kB/s | 421 kB 00:01
Using metadata from Thu Sep 21 23:01:58 2017
Dependencies resolved.
Nothing to do.
[leo@ASUS-Leo ~]$