Skip to content

Instantly share code, notes, and snippets.

@djblue
Created December 8, 2014 06:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djblue/a8c14159ab20c15126f8 to your computer and use it in GitHub Desktop.
Save djblue/a8c14159ab20c15126f8 to your computer and use it in GitHub Desktop.
setup vbox on guest archy
#!/bin/sh
# quickly setup a guest virtualbox on arch linux
# should at least get you shared folders
pacupg # upgrade all current packages
# install guest additions
pacin virtualbox-guest-modules virtualbox-guest-utils
# enable kernal modules
echo 'vboxguest\nvboxsf\nvboxvideo' > /etc/modules-load.d/virtualbox.conf
# enable virtualbox guest additions as a service
systemctl enable vboxservice
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment