Last active
March 18, 2016 20:26
-
-
Save paveltimofeev/29d18e6cda97e8aa09c2 to your computer and use it in GitHub Desktop.
VirtualBox command
This file contains hidden or 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
REM will start the specified virtual machine in the background. | |
REM To shut it down, request the shut down from the guest. | |
C:\Program Files\Oracle\VirtualBox\VBoxManage startvm $VM --type headless | |
REM enable symlinks on shared folders | |
C:\Program Files\Oracle\VirtualBox\VBoxManage setextradata YOUR_VM_NAME VBoxInternal2/SharedFoldersEnableSymlinksCreate/YOUR_SHAR_EFOLDER_NAME 1 | |
# Install Video at Ubuntu (Fix SCREEN Resolution) | |
sudo apt-get install virtualbox-guest-utils virtualbox-guest-x11 virtualbox-guest-dkms | |
# Mount Shared Folder between guset and host | |
sudo mount -t vboxsf VMGit ~/VMGit/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment