You are not logged in.
After the recent upgrades to virtualbox, I installed linux-headers as now required to make it work, but I'm getting errors about vboxguest and vboxsf on boot. Those errors are coming from the systemd module:
# cat /usr/lib/systemd/system/vboxservice.service
[Unit]
Description=VirtualBox Guest Service
ConditionVirtualization=oracle
[Service]
ExecStartPre=-/usr/bin/modprobe vboxguest
ExecStartPre=-/usr/bin/modprobe vboxvideo
ExecStartPre=-/usr/bin/modprobe vboxsf
ExecStart=/usr/bin/VBoxService -f
[Install]
WantedBy=multi-user.target
The only one that works is vboxvideo. Here are the specific errors:
# modprobe vboxsf
modprobe: ERROR: could not insert 'vboxsf': No such device
# modprobe vboxguest
modprobe: ERROR: could not insert 'vboxguest': No such device
Reading the wiki, I tried:
# dkms autoinstall
and
# dkms install vboxhost/$(pacman -Q virtualbox|awk '{print $2}'|sed 's/\-.\+//')_OSE -k $(uname -rm|sed 's/\ /\//')
Module vboxhost/5.0.16_OSE already installed on kernel 4.4.5-1-ARCH/x86_64
Someone else is having the same problem (they only mention vboxguest though): http://stackoverflow.com/questions/3461 … -vboxguest
The two answers mentioned in that stackoverflow post don't help.
Last edited by colinkeenan (2016-03-17 19:40:22)
Offline
What's the output of pacman -Qs virtualbox and pacman -Qoo /usr/lib/systemd/system/vboxservice.service
Is your Arch install host or guest?
Last edited by ugjka (2016-03-17 19:04:53)
https://ugjka.net
"It is easier to fool people, than to convince them that they've been fooled" ~ Dr. Andrea Love
Offline
I only use virtualbox to run Windows XP for an application that interacts with some hardware on my front door. I did install virtualbox-guest-iso, and installed that inside guest Windows XP.
Arch install: host
/home/colin %pacman -Qs virtualbox
local/virtualbox 5.0.16-3
Powerful x86 virtualization for enterprise as well as home use
local/virtualbox-ext-oracle 5.0.16-1
Oracle VM VirtualBox Extension Pack
local/virtualbox-guest-dkms 5.0.16-3
VirtualBox Guest kernel modules sources
local/virtualbox-guest-iso 5.0.16-1
The official VirtualBox Guest Additions ISO image
local/virtualbox-guest-utils 5.0.16-3
VirtualBox Guest userspace utilities
local/virtualbox-host-dkms 5.0.16-3
VirtualBox Host kernel modules sources
/home/colin %pacman -Qoo /usr/lib/systemd/system/vboxservice.service
/usr/lib/systemd/system/vboxservice.service is owned by virtualbox-guest-utils 5.0.16-3
Offline
So your arch is a host! Then you need to uninstall virtualbox-guest-dkms and virtualbox-guest-utils because those are needed only when your install is a guest.
https://ugjka.net
"It is easier to fool people, than to convince them that they've been fooled" ~ Dr. Andrea Love
Offline
Great. I was wondering why if there were errors it was still working fine. Of course, removing virtualbox-guest-utils and dependency (virtualbox-guest-dkms), removed the boot errors. Thanks.
Offline
Isn't that great, you did something silly and it didn't nuke your entire system?
Last edited by ugjka (2016-03-17 19:35:17)
https://ugjka.net
"It is easier to fool people, than to convince them that they've been fooled" ~ Dr. Andrea Love
Offline
hahaha I did this too P
Offline
So your arch is a host! Then you need to uninstall virtualbox-guest-dkms and virtualbox-guest-utils because those are needed only when your install is a guest.
Thank you! I understood the problem) Everything works now.
Last edited by bloadvenro (2016-10-23 17:30:47)
Offline