output
virtualbox
input
https://www.if-not-true-then-false.com/2010/install-virtualbox-with-yum-on-fedora-centos-red-hat-rhel/
http://askubuntu.com/questions/762136/cannot-reinstall-virtualbox-on-ubuntu-16-04
algo
切换root用户
su安装VB依赖
dnf install binutils gcc make patch libgomp glibc-headers glibc-devel kernel-headers kernel-devel dkms
PS:这里可能安装不完整,例如kernel-devel是最新的而不是匹配的,但是后面有解决方案。安装VB
wget http://download.virtualbox.org/virtualbox/rpm/fedora/virtualbox.repo -P /etc/yum.repos.d/
dnf install VirtualBox-5.1添加用户到用户组
usermod -a -G vboxusers user_name
sum
- 一般出问题是在第三步,我的问题是kernel-devel版本不对,解决如下:
dnf install kernel-devel-4.5.5-300.fc24.x86_64 (我的内核版本是这个,但是第三步安装到了4.8版本)
/sbin/vboxconfig (重建VB模块) - 如果提示“modprobe vboxdrv failed. Please use ‘dmesg’ to find out why”错误,我的问题是需要去BIOS关闭secure boot启动,参考#input的链接2
- 有的教程需要你dnf update所有软件,没必要,这样很浪费时间资源,例如#input的链接1就是