ARM7 的 EPEL 存储库

EPEL repository for ARM7

尝试在 CentOS 7 上设置一个 banana-pi 以用作 NAS,我遇到了很多我必须自己编译的软件包。

不知道有没有专门针对armv7架构的repo?

%uname -a
Linux bananapi 4.2.3-200.el7.armv7hl #1 SMP Wed Nov 25 18:01:51 EST 2015 armv7l armv7l armv7l GNU/Linux

目前不可用。但他们正在努力 https://lists.centos.org/pipermail/arm-dev/2015-May/000184.html

我试图在我的 RPi3 运行 CentOS 7 上安装 Python3。我尝试从 EPEL 存储库安装 ( sudo yum install epel-release && sudo yum install python34)。这失败了,但经过一番挖掘后,我发现 CentOS wiki 有一个很好的 32 位 arm 部分。

我按照说明(位于 wiki 的最底部)进行操作,然后我能够安装自动生成、未签名且未经测试的 EPEL 7 工作版本。 我还没有在 SO 上找到这方面的提及,所以我希望它能有所帮助。

How can I enable EPEL 7 on armhfp ?

The answer is easy in a sense that there is no official EPEL repository for armfhp. But because lot of users were asking for this, we decided to use the centos armhfp builders to (re)build Source packages from EPEL 7 (and try to track those automatically) when they're idle. Please note that it's just an automatic rebuild without any QA/test, and also resulting pkgs aren't signed either. To use that repository, proceed like this :

cat > /etc/yum.repos.d/epel.repo << EOF
[epel]
name=Epel rebuild for armhfp
baseurl=https://armv7.dev.centos.org/repodir/epel-pass-1/
enabled=1
gpgcheck=0

EOF

之后,运行 sudo yum install epel-release 成功,安装 Python3。