VirtualBox guest additions: Difference between revisions
(Added instructions for installing virtualbox guest additions) |
m (removed stray quotation mark) |
||
Line 13: | Line 13: | ||
If the error occurs, then you need to enable the alpine testing repo: | If the error occurs, then you need to enable the alpine testing repo: | ||
{{Cmd|echo "http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories | {{Cmd|echo "http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories}} | ||
Then update respository indexes from all remote repositories: | Then update respository indexes from all remote repositories: |
Revision as of 20:42, 29 August 2015
How to install VirtualBox guest additions
First install virtualbox-additions-grsec:
apk add virtualbox-additions-grsec
The following error may occur:
ERROR: unsatisfiable constraints: virtualbox-additions-grsec (missing): required by: world[virtualbox-additions-grsec]
If the error occurs, then you need to enable the alpine testing repo:
echo "http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
Then update respository indexes from all remote repositories:
apk update
Then add vboxpci
,vboxdrv
, and vboxnetflt
to /etc/modules
:
echo vboxpci >> /etc/modules echo vboxdrv >> /etc/modules echo vboxnetflt >> /etc/modules
And reboot to put these changes into effect.