Created
December 8, 2014 06:40
-
-
Save djblue/a8c14159ab20c15126f8 to your computer and use it in GitHub Desktop.
setup vbox on guest archy
This file contains 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
#!/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