在 Oracle Linux 7 中使用 yum 安装 VirtualBox

在 Oracle Linux 7 中使用 yum 安装 VirtualBox

我的 Oracle Linux(Red Hat Enterprise Linux Server 版本 7.9 (Maipo))运行良好,但现在我想使用 yum 安装 VirtualBox。

这一页我只能找到说明

Users of Oracle Linux 6 and 7 can use the Oracle Linux yum  repository and enable the  ol6_developer channel for Oracle Linux 6 or the  ol7_developer channel for Oracle Linux 7. 

我有这些文件

ls -1 /etc/yum.repos.d/

epel-yum-ol7.repo
oracle-linux-ol7.repo
oracle-softwarecollection-ol7.repo
pgdg-redhat-all.repo
uek-ol7.repo
virt-ol7.repo

所以任何启用 ol7_developer 的命令

yum-config-manager --enable ol7_developer

似乎没有什么区别。

那么如何解决这个问题呢?

答案1

手动创建存储库。将以下行添加到/etc/yum.repos.d/ol7_developper.repo

[ol7_developer]
name=Oracle Linux $releasever Development Packages ($basearch)
baseurl=http://yum.oracle.com/repo/OracleLinux/OL7/developer/$basearch/
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-oracle
gpgcheck=1
enabled=1

或者安装rpm

wget https://yum.oracle.com/repo/OracleLinux/OL7/developer/x86_64/getPackage/VirtualBox-6.1-6.1.2_135662_el7-1.x86_64.rpm
wget http://yum.oracle.com/repo/OracleLinux/OL7/developer/x86_64/getPackage/containerd-1.2.0-1.0.4.el7.x86_64.rpm
sudo rpm -ivh VirtualBox-6.1-6.1.2_135662_el7-1.x86_64.rpm
sudo rpm -ivh containerd-1.2.0-1.0.4.el7.x86_64.rpm

相关内容