-
-
Save orivee/3a647b0fda2bf54e9a3bcf63061478f4 to your computer and use it in GitHub Desktop.
Virtualbox archlinux notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sudo /sbin/rcvboxdrv -h | |
# Unloading modules: | |
# Loading modules: modprobe: FATAL: Module vboxnetadp not found in directory /lib/modules/4.4.3-1-ARCH | |
# modprobe: FATAL: Module vboxnetflt not found in directory /lib/modules/4.4.3-1-ARCH | |
# modprobe: FATAL: Module vboxpci not found in directory /lib/modules/4.4.3-1-ARCH | |
# modprobe: FATAL: Module vboxdrv not found in directory /lib/modules/4.4.3-1-ARCH | |
# Solution | |
# from https://forum.antergos.com/topic/818/can-t-run-my-vitualbox/4 | |
pacman -Si linux | |
sudo pacman -S linux-headers | |
# will install DKMS properly | |
sudo pacman -S virtualbox virtualbox-guest-iso | |
# now this command should work :) | |
sudo modprobe -a vboxdrv vboxnetflt vboxpci vboxnetadp | |
# you may run this | |
sudo /sbin/rcvboxdrv -h | |
# add current user to vboxusers group | |
sudo gpasswd -a $USER vboxusers | |
# now add entries to /etc/modules-load.d/virtualbox.conf | |
# for startup | |
vim /etc/modules-load.d/virtualbox.conf | |
# insert this: | |
#vboxdrv | |
#vboxnetadp | |
#vboxnetflt | |
#vboxpci |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment