Changes between Version 21 and Version 22 of VboxApps
- Timestamp:
- Oct 4, 2011, 2:10:54 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
VboxApps
v21 v22 3 3 = Running apps in VirtualBox virtual machines = 4 4 5 BOINC's '''vboxwrapper''' program lets you run applications in VirtualBox virtual machines. 6 This eliminates the need to build app versions for different architectures, 7 and provides a stronger security sandbox than is otherwise available. 8 9 NOTE: Do not use software which uses a license that has a pay-per-use clause. 5 == Introduction == 6 7 BOINC supports applications that run in !VirtualBox virtual machines. 8 This provides two benefits: 9 * You don't need to build app versions for different architectures. 10 You develop your app in your environment of choice (say, Scientific Linux), 11 and then bundle the resulting executable together with 12 a virtual machine image containing the appropriate runtime environment. 13 The application can then be run on all platforms 14 (Windows, Mac OS X, all versions of Linux) 15 with no additional work on your part. 16 * Virtual machines provide the strongest available security sandbox; 17 a program running in a virtual machine cannot access or modify 18 the host system. 19 This makes it feasible to deploy untrusted applications. 20 21 BOINC's support for VM apps is based on a program called 22 '''vboxwrapper''' that interfaces between 23 the BOINC client and the !VirtualBox system. 24 25 === Licensing issues === 26 27 Commercial operating systems like Windows and Mac OS X 28 have a license with a pay-per-use clause, 29 so in general you can't use them in the VM image. 30 Similarly, you can't include pay-per-use software such as Matlab 31 in the VM image. 32 33 === 32/64 bit issues === 34 35 A VM image is called 32- or 64-bit depending on the operating system it contains. 36 The BOINC host population includes 32-bit and 64-bit hosts. 37 64-bit hosts can run 32-bit VMs, but not conversely. 38 You can choose to provide 32- or 64-bit VM images, or both. 39 40 Possible reasons for using 64-bit VM images: 41 * The 64-bit version of your app runs significantly faster than the 32-bit version. 42 * Your app uses more than 3 GB of virtual address space. 43 44 If you provide only 32-bit VM images, 45 you must still create separate 32- and 64-bit app versions, 46 using the same VM image but different '''vboxwrapper''' executables. 47 ('''vboxwrapper''' is a C++ program and has different executables 48 for each platform, include 32- and 64-bit; these are available below. 49 The 32-bit vboxwrapper will generally not work on a 64-bit machine). 50 51 === Non-Intel and GPU applications === 52 53 !VirtualBox runs only on Intel-compatible processors. 54 If you want to support other processors, 55 you'll need to use non-VM-based app versions. 56 57 Currently you can't run GPU applications in !VirtualBox VMs. 58 This may change in the future. 10 59 11 60 == Creating app versions == 12 61 13 62 You must create app versions for each platform you want to support; 14 the app versions differ only in one file. 63 the app versions differ in which '''vboxwrapper''' executable they use. 64 If you use both 32- and 64-bit VMs, 65 the versions will also differ in the VM image and the application executable. 15 66 16 67 The application versions for a given platform are of plan class "vbox32" … … 18 69 and include the following files: 19 70 20 * The VM image, in VirtualBox format.71 * The VM image, in !VirtualBox format. 21 72 * Must have the '''copy_file''' attribute. 22 73 * Must have logical name "vm_image.vdi". 23 74 * The application executable to be run in the VM image. 24 The logical name must be '''shared/boinc_app'''. 75 * This may be a shell script or a binary program. 76 * The logical name must be '''shared/boinc_app'''. 25 77 * Other files needed by the application, all with logical names starting with '''shared/'''. 26 * An XML job description filewith logical name '''vbox_job.xml''' (see below)27 * '''vboxwrapper''', compiled for the platform .78 * An XML '''job description file''' with logical name '''vbox_job.xml''' (see below) 79 * '''vboxwrapper''', compiled for the platform (executables are available below). 28 80 * All scripts and executables must have the execute permission set. 29 These executables can be downloaded from the BOINC site (see below). 30 31 Include '''<dont_throttle/>''' in the version.xml file; VirtualBox does its own CPU throttling. 81 82 Include '''<dont_throttle/>''' in the version.xml file; !VirtualBox does its own CPU throttling. 32 83 33 84 Typically you can use the same VM image for multiple applications. 34 85 This reduces network traffic and client disk usage. 35 36 The bitness of the vboxwrapper and VM image must match the plan class.37 A 32-bit wrapper cannot use VirtualBox on a 64-bit machine.38 86 39 87 === The job description file === … … 53 101 The elements are: 54 102 55 '''os_name''':: the name of the guest OS as defined by VirtualBox, e.g. "Linux26", "Linux26_64", "Linux24", etc.[[BR]] 56 To see a list of available os_names, type "vboxmanage list ostypes" at a shell prompt 103 '''os_name''':: the name of the guest OS as defined by !VirtualBox, 104 e.g. "Linux26", "Linux26_64", "Linux24", etc. 105 To see a list of all available OS names, install !VirtualBox on a Linux system, 106 and type "vboxmanage list ostypes". 57 107 58 108 '''memory_size_mb''':: the amount of physical memory allocated to the VM, in megabytes. … … 74 124 }}} 75 125 where "/root/shared" is the path where the shared directory is to be mounted. 76 In this case the VM must contain the VirtualBox "guest additions". Guest additions 77 are required for shared folders to work or any special features of the virtualized 78 hardware. 126 In this case the VM must contain the !VirtualBox "guest additions". 127 Guest additions are required for shared folders to work. 79 128 80 129 * Run the application. … … 91 140 Using this script, 92 141 your application executable must have logical name '''share/boinc_app'''. 93 It may be a compiled program or a script that runs other programs.94 142 95 143 Doing things this way, the VM image is independent of the application. … … 101 149 102 150 * Have logical names starting with '''shared/'''. 103 * Have the '''copy_file''' attribute 151 * Have the '''copy_file''' attribute. 104 152 105 153 This causes the BOINC client to copy them to and from the '''slot/x/shared/''' directory. … … 130 178 131 179 The example startup script follows. 132 You can deploy it by appending to '''/root/.bashrc''' .180 You can deploy it by appending to '''/root/.bashrc''' in the VM image. 133 181 {{{ 134 182 echo --- BOINC VM starting … … 162 210 == Creating VM images == 163 211 164 The easiest way to make a Linux VM is to install the network install of Debian within the VM. 212 The VM image that you distribute need contain only the 213 runtime environment for your applications. 214 In particular, it need not contain: 215 216 * Development tools such as gcc 217 * GUI software such as X11, gtk etc. 218 219 Reducing the VM image size reduces the network load 220 on your server and on volunteer hosts, and the disk usage on volunteer hosts. 221 222 The easiest way to make a "small" Linux VM is to install the network install of Debian within the VM. 165 223 You can find the netinst images [http://www.debian.org/distrib/netinst here]. 166 167 Advantages: 168 * Small install size 169 * !VirtualBox guest additions installed by default 224 Such VMs have !VirtualBox and guest additions installed by default. 225 226 '''NOTE: 32- and 64-bit VM images created in this way, 227 and containing all the changes described below, 228 are available (see links below). 229 If you use these VM images, you can skip the rest of this section.''' 170 230 171 231 === Role Selection === … … 209 269 }}} 210 270 211 == Precompiled vboxwrapper == 212 === Windows === 271 == Premade vboxwrapper executables == 272 273 Windows: 213 274 x86: [http://boinc.berkeley.edu/dl/vboxwrapper_6.20_windows_intelx86.exe.gz vboxwrapper_6.20_windows_intelx86.exe.gz] 214 275 215 276 x64: [http://boinc.berkeley.edu/dl/vboxwrapper_6.20_windows_x86_64.exe.gz vboxwrapper_6.20_windows_x86_64.exe.gz] 216 277 217 === Mac === 218 TBD 219 === Linux === 220 TBD 278 Mac OS X: 279 280 Linux: 221 281 222 282 == Premade Linux VM Images == 223 283 224 These VM images were built using the instructions for creating vm images and the example startup script. 225 226 Baseline image: Debian 4.0, without GCC or any build tools installed. 284 These VM images were built using the above instructions for creating VM images. 285 They contain Debian 4.0, without GCC or any build tools installed. 286 They contain the example startup script. 287 288 In most cases, you can use these VM images with no modifications. 227 289 228 290 x86: [http://boinc.berkeley.edu/dl/vmimage_x86.zip vmimage_x86.zip]