Changes between Version 7 and Version 8 of VboxApps
- Timestamp:
- Sep 29, 2011, 11:04:35 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VboxApps
v7 v8 1 1 [[PageOutline]] 2 2 3 = Running apps in VirtualBox virtual machines = 3 4 BOINC's '''vboxwrapper''' program lets you run applications in virtual machines. 5 This eliminates the need to build app versions for different architectures, 6 and provides a stronger security sandbox than is otherwise available. 4 BOINC's '''vboxwrapper''' program lets you run applications in virtual machines. This eliminates the need to build app versions for different architectures, and provides a stronger security sandbox than is otherwise available. 7 5 8 6 To do this, create an application version of plan class "vbox" containing the following files: 9 7 10 * The VM image (VirtualBox format). 11 Must have the '''copy_file''' attribute. 12 Must have logical name "vm_image.vdi". 8 * The VM image (VirtualBox format). Must have the '''copy_file''' attribute. Must have logical name "vm_image.vdi". 13 9 * An XML job description file (see below) 14 10 * '''vboxwrapper''', compiled for the platform 15 11 16 Include '''<dont_throttle/>''' in the version.xml file; 17 VirtualBox does its own CPU throttling. 12 Include '''<dont_throttle/>''' in the version.xml file; VirtualBox does its own CPU throttling. 18 13 19 14 == Job description file == 20 21 15 '''vboxwrapper''' takes an input file '''vbox_job.xml''' with the following structure: 22 16 … … 29 23 </vbox_job> 30 24 }}} 31 32 25 The elements are: 33 26 … … 41 34 42 35 == Requirements of the VM == 36 The VM image, when booted, must run the application. This is typically done using a script in /etc. 43 37 44 The VM image, when booted, must run the application. 45 This is typically done using a script in /etc. 38 When the application is finished, it must shut down the VM (e.g., by running '''shutdown''' on Linux). 46 39 47 When the application is finished, it must shut down the VM 48 (e.g., by running '''shutdown''' on Linux). 49 50 If the applications has input or output files, 51 the VM must contain the VirtualBox "guest additions", 52 and it must mount the shared directory using 40 If the applications has input or output files, the VM must contain the VirtualBox "guest additions", and it must mount the shared directory using 53 41 54 42 {{{ 55 43 mount -t vboxsf share ~/host 56 44 }}} 57 where "~/host" is the path where the shared directory is to be mounted. 58 Typically it will then cd into that directory 59 to run the application. 45 where "~/host" is the path where the shared directory is to be mounted. Typically it will then cd into that directory to run the application. 46 47 [[Image(vmprocess.png)]]