Yum

在 Oracle Linux 7 中使用 yum 安裝 VirtualBox

  • February 26, 2021

我的 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

似乎沒有任何區別。

那麼如何解決這個問題呢?

手動創建儲存庫。將以下行添加到/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

引用自:https://unix.stackexchange.com/questions/636574