CentOS 7にVirtualBoxをインストールするための明確な手順を提供する多くのチュートリアルを試しましたが、どちらもエラーが発生せずに実行できませんでした。
一部のチュートリアルでは、GUIにアクセスできると仮定しています。 CentOS 7サーバーにVIRTUALBOXをインストールする必要があるGUIはありません。
最近、私は次のことを試しました。このチュートリアルのガイドライン、CentOS 7の最小端末専用インストールにVirtualBoxをインストールする方法を示します。しかし、指示に従ってくださいno package VirtualBox-5.0 to install
。
Oracle WebサイトのURLを使用してバージョン名を更新したことを除いて、指示に正確に従いました。また、次の手順を実行する前にCentOSを新しくインストールしました。
[root@localhost ~]# yum groupinstall 'Development Tools' SDL kernel-devel kernel-headers dkms
.......................................
Complete!
[root@localhost ~]# cd /etc/yum.repos.d/
[root@localhost yum.repos.d]# wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc
[root@localhost yum.repos.d]# rpm --import oracle_vbox.asc
[root@localhost yum.repos.d]# yum update && yum install VirtualBox-5.0
........installed/updated lots of other stuff automatically
Complete!
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.sonn.com
* extras: centos.sonn.com
* updates: centos.sonn.com
No package VirtualBox-5.0 available.
Error: Nothing to do
[root@localhost yum.repos.d]#
私は何が間違っていましたか? VirtualBox-5.0を正常にインストールするには、上記で何を変更できますか?
答え1
間違ったリポジトリを使用しているようです。代わりにこれを使用してください:
wget -P /etc/yum.repo.d http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo
これを完了したら、次のことができるはずです。
yum install VirtualBox-5.0
追加情報:https://wiki.centos.org/HowTos/Virtualization/VirtualBox
答え2
このガイドラインは VirtualBox 4.3 に関するものです。
同じウェブサイトでVirtualBox 5.0のインストール手順を更新しました。http://www.tecmint.com/install-virtualbox-on-redhat-centos-fedora/