Added some installer scripts for manual setup of local VBox environment running Debian Jessie

This commit is contained in:
Tom Staubitz
2016-12-27 00:15:04 +01:00
parent f4c01879bf
commit 730d76843b
8 changed files with 379 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
echo "Mount Shared Folder..."
mkdir /home/debian/codeocean_host
sudo mount -t vboxsf -o rw,uid=1000,gid=1000 codeocean /home/debian/codeocean_host
# Enable automount during startup
sudo sh -c 'echo "sudo mount -t vboxsf -o rw,uid=1000,gid=1000 codeocean /home/debian/codeocean_host" >> /home/debian/.bashrc '
echo "Done"