User Tools

Site Tools


docs:tips_n_tricks:virtualbox.html

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
docs:tips_n_tricks:virtualbox.html [07.07.2012 14:37 CEST] peterdocs:tips_n_tricks:virtualbox.html [07.07.2012 15:46 CEST] (current) peter
Line 70: Line 70:
 (Provided the VM is running on your local machine and ''VBoxHeadless'' told you VRDE server is listening on port 3389) (Provided the VM is running on your local machine and ''VBoxHeadless'' told you VRDE server is listening on port 3389)
  
 +====== rc.vbox ======
 +This is some very basic start-stop script suited more to support your memory then to be used as a init.d script ...
 +  #!/bin/sh
 +  
 +  vm="${2:-MyDefaultVM}"
 +  
 +  case "$1" in
 +  "start"      VBoxHeadless --startvm "$vm" -vrde on & ;;
 +  "show"|"view") /opt/local/bin/rdesktop -k de localhost   ;;
 +  "stop"       VBoxManage controlvm "$vm" savestate    ;;
 +  *)             echo "Usage: ${0##*/} start|stop|show" >&1 ; exit 42 ;;
 +  esac
  
 __Credits:__ __Credits:__
  
 Information from [[http://forums.virtualbox.org/viewtopic.php?f=2&t=14754|here]] and from my experience. Information from [[http://forums.virtualbox.org/viewtopic.php?f=2&t=14754|here]] and from my experience.
docs/tips_n_tricks/virtualbox.html.txt · Last modified: 07.07.2012 15:46 CEST by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki