VirtualBox

source: vbox/trunk/doc/manual/en_US/user_AdvancedTopics.xml@ 45071

Last change on this file since 45071 was 44906, checked in by vboxsync, 12 years ago

Documentation: Backed out r82308, r82418 + r82419 (vbox-greeter documentation not needed yet).

File size: 121.5 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3"http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
4<chapter id="AdvancedTopics">
5 <title>Advanced topics</title>
6
7 <sect1 id="vboxsdl">
8 <title>VBoxSDL, the simplified VM displayer</title>
9
10 <sect2>
11 <title>Introduction</title>
12
13 <para>VBoxSDL is a simple graphical user interface (GUI) that lacks the
14 nice point-and-click support which VirtualBox, our main GUI, provides.
15 VBoxSDL is currently primarily used internally for debugging VirtualBox
16 and therefore not officially supported. Still, you may find it useful
17 for environments where the virtual machines are not necessarily
18 controlled by the same person that uses the virtual machine.<note>
19 <para>VBoxSDL is not available on the Mac OS X host platform.</para>
20 </note></para>
21
22 <para>As you can see in the following screenshot, VBoxSDL does indeed
23 only provide a simple window that contains only the "pure" virtual
24 machine, without menus or other controls to click upon and no additional
25 indicators of virtual machine activity:</para>
26
27 <para><mediaobject>
28 <imageobject>
29 <imagedata align="center" fileref="images/vbox-sdl.png"
30 width="10cm" />
31 </imageobject>
32 </mediaobject></para>
33
34 <para>To start a virtual machine with VBoxSDL instead of the VirtualBox
35 GUI, enter the following on a command line:<screen>VBoxSDL --startvm &lt;vm&gt;</screen></para>
36
37 <para>where <computeroutput>&lt;vm&gt;</computeroutput> is, as usual
38 with VirtualBox command line parameters, the name or UUID of an existing
39 virtual machine.</para>
40 </sect2>
41
42 <sect2>
43 <title>Secure labeling with VBoxSDL</title>
44
45 <para>When running guest operating systems in full screen mode, the guest
46 operating system usually has control over the whole screen. This could
47 present a security risk as the guest operating system might fool the
48 user into thinking that it is either a different system (which might
49 have a higher security level) or it might present messages on the screen
50 that appear to stem from the host operating system.</para>
51
52 <para>In order to protect the user against the above mentioned security
53 risks, the secure labeling feature has been developed. Secure labeling
54 is currently available only for VBoxSDL. When enabled, a portion of the
55 display area is reserved for a label in which a user defined message is
56 displayed. The label height in set to 20 pixels in VBoxSDL. The label
57 font color and background color can be optionally set as hexadecimal RGB
58 color values. The following syntax is used to enable secure
59 labeling:</para>
60
61 <screen>VBoxSDL --startvm "VM name"
62 --securelabel --seclabelfnt ~/fonts/arial.ttf
63 --seclabelsiz 14 --seclabelfgcol 00FF00 --seclabelbgcol 00FFFF</screen>
64
65 <para>In addition to enabling secure labeling, a TrueType font has to be
66 supplied. To use another font size than 12 point use the parameter
67 <computeroutput>--seclabelsiz</computeroutput>.</para>
68
69 <para>The label text can be set with <screen>VBoxManage setextradata "VM name" "VBoxSDL/SecureLabel" "The Label"</screen>
70 Changing this label will take effect immediately.</para>
71
72 <para>Typically, full screen resolutions are limited to certain
73 "standard" geometries such as 1024 x 768. Increasing this by twenty
74 lines is not usually feasible, so in most cases, VBoxSDL will chose the
75 next higher resolution, e.g. 1280 x 1024 and the guest's screen will not
76 cover the whole display surface. If VBoxSDL is unable to choose a higher
77 resolution, the secure label will be painted on top of the guest's
78 screen surface. In order to address the problem of the bottom part of
79 the guest screen being hidden, VBoxSDL can provide custom video modes to
80 the guest that are reduced by the height of the label. For Windows
81 guests and recent Solaris and Linux guests, the VirtualBox Guest
82 Additions automatically provide the reduced video modes. Additionally,
83 the VESA BIOS has been adjusted to duplicate its standard mode table
84 with adjusted resolutions. The adjusted mode IDs can be calculated using
85 the following formula:</para>
86
87 <screen>reduced_modeid = modeid + 0x30</screen>
88
89 <para>For example, in order to start Linux with 1024 x 748 x 16, the
90 standard mode 0x117 (1024 x 768 x 16) is used as a base. The Linux video
91 mode kernel parameter can then be calculated using:</para>
92
93 <screen>vga = 0x200 | 0x117 + 0x30
94vga = 839</screen>
95
96 <para>The reason for duplicating the standard modes instead of only
97 supplying the adjusted modes is that most guest operating systems
98 require the standard VESA modes to be fixed and refuse to start with
99 different modes.</para>
100
101 <para>When using the X.org VESA driver, custom modelines have to be
102 calculated and added to the configuration (usually in
103 <literal>/etc/X11/xorg.conf</literal>. A handy tool to determine
104 modeline entries can be found at <literal><ulink
105 url="http://www.tkk.fi/Misc/Electronics/faq/vga2rgb/calc.html">http://www.tkk.fi/Misc/Electronics/faq/vga2rgb/calc.html</ulink></literal>.)</para>
106 </sect2>
107
108 <sect2>
109 <title>Releasing modifiers with VBoxSDL on Linux</title>
110
111 <para>When switching from a X virtual terminal (VT) to another VT using
112 Ctrl-Alt-Fx while the VBoxSDL window has the input focus, the guest will
113 receive Ctrl and Alt keypress events without receiving the corresponding
114 key release events. This is an architectural limitation of Linux. In
115 order to reset the modifier keys, it is possible to send
116 <computeroutput>SIGUSR1</computeroutput> to the VBoxSDL main thread
117 (first entry in the <computeroutput>ps</computeroutput> list). For
118 example, when switching away to another VT and saving the virtual
119 machine from this terminal, the following sequence can be used to make
120 sure the VM is not saved with stuck modifiers:</para>
121
122 <para><screen>kill -usr1 &lt;pid&gt;
123VBoxManage controlvm "Windows 2000" savestate</screen></para>
124 </sect2>
125 </sect1>
126
127 <sect1>
128 <title id="autologon">Automated guest logons</title>
129
130 <para>VirtualBox provides Guest Addition modules for Windows, Linux and
131 Solaris to enable automated logons on the guest.</para>
132
133 <para>When a guest operating system is running in a virtual machine, it
134 might be desirable to perform coordinated and automated logons using
135 credentials from a master logon system. (With "credentials", we are
136 referring to logon information consisting of user name, password and
137 domain name, where each value might be empty.)</para>
138
139 <sect2 id="autologon_win">
140 <title>Automated Windows guest logons</title>
141
142 <para>Since Windows NT, Windows has provided a modular system logon
143 subsystem ("Winlogon") which can be customized and extended by means of
144 so-called GINA modules (Graphical Identification and Authentication).
145 With Windows Vista and Windows 7, the GINA modules were replaced with a
146 new mechanism called "credential providers". The VirtualBox Guest
147 Additions for Windows come with both, a GINA and a credential provider
148 module, and therefore enable any Windows guest to perform automated
149 logons.</para>
150
151 <para>To activate the VirtualBox GINA or credential provider module,
152 install the Guest Additions with using the command line switch
153 <computeroutput>/with_autologon</computeroutput>. All the following
154 manual steps required for installing these modules will be then done by
155 the installer.</para>
156
157 <para>To manually install the VirtualBox GINA module, extract the Guest
158 Additions (see <xref linkend="windows-guest-file-extraction" />) and
159 copy the file <computeroutput>VBoxGINA.dll</computeroutput> to the
160 Windows <computeroutput>SYSTEM32</computeroutput> directory. Then, in
161 the registry, create the following key: <screen>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\GinaDLL</screen>
162 with a value of <computeroutput>VBoxGINA.dll</computeroutput>.</para>
163
164 <note>
165 <para>The VirtualBox GINA module is implemented as a wrapper around
166 the standard Windows GINA module
167 (<computeroutput>MSGINA.DLL</computeroutput>). As a result, it will
168 most likely not work correctly with 3rd party GINA modules.</para>
169 </note>
170
171 <para>To manually install the VirtualBox credential provider module,
172 extract the Guest Additions (see <xref
173 linkend="windows-guest-file-extraction" />) and copy the file
174 <computeroutput>VBoxCredProv.dll</computeroutput> to the Windows
175 <computeroutput>SYSTEM32</computeroutput> directory. Then, in the
176 registry, create the following keys:<screen>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\
177 Authentication\Credential Providers\{275D3BCC-22BB-4948-A7F6-3A3054EBA92B}
178
179HKEY_CLASSES_ROOT\CLSID\{275D3BCC-22BB-4948-A7F6-3A3054EBA92B}
180
181HKEY_CLASSES_ROOT\CLSID\{275D3BCC-22BB-4948-A7F6-3A3054EBA92B}\InprocServer32</screen></para>
182
183 <para>with all default values (the key named
184 <computeroutput>(Default)</computeroutput> in each key) set to
185 <computeroutput>VBoxCredProv</computeroutput>. After that a new string
186 named <screen>HKEY_CLASSES_ROOT\CLSID\{275D3BCC-22BB-4948-A7F6-3A3054EBA92B}\InprocServer32\ThreadingModel</screen>
187 with a value of <computeroutput>Apartment</computeroutput> has to be
188 created.</para>
189
190 <para>To set credentials, use the following command on a
191 <emphasis>running</emphasis> VM:</para>
192
193 <screen>VBoxManage controlvm "Windows XP" setcredentials "John Doe" "secretpassword" "DOMTEST"</screen>
194
195 <para>While the VM is running, the credentials can be queried by the
196 VirtualBox logon modules (GINA or credential provider) using the
197 VirtualBox Guest Additions device driver. When Windows is in "logged
198 out" mode, the logon modules will constantly poll for credentials and if
199 they are present, a logon will be attempted. After retrieving the
200 credentials, the logon modules will erase them so that the above command
201 will have to be repeated for subsequent logons.</para>
202
203 <para>For security reasons, credentials are not stored in any persistent
204 manner and will be lost when the VM is reset. Also, the credentials are
205 "write-only", i.e. there is no way to retrieve the credentials from the
206 host side. Credentials can be reset from the host side by setting empty
207 values.</para>
208
209 <para>Depending on the particular variant of the Windows guest, the
210 following restrictions apply: <orderedlist>
211 <listitem>
212 <para>For <emphasis role="bold">Windows XP guests,</emphasis> the
213 logon subsystem needs to be configured to use the classic logon
214 dialog as the VirtualBox GINA module does not support the XP-style
215 welcome dialog.</para>
216 </listitem>
217
218 <listitem>
219 <para>For <emphasis role="bold">Windows Vista, Windows 7
220 and Windows 8 guests,</emphasis> the logon subsystem does not support
221 the so-called Secure Attention Sequence
222 (<computeroutput>CTRL+ALT+DEL</computeroutput>). As a result, the
223 guest's group policy settings need to be changed to not use the
224 Secure Attention Sequence. Also, the user name given is only
225 compared to the true user name, not the user friendly name. This
226 means that when you rename a user, you still have to supply the
227 original user name (internally, Windows never renames user
228 accounts).</para>
229 </listitem>
230
231 <listitem>
232 <para>Auto-logon handling of the built-in Windows Remote Desktop
233 Service (formerly known as Terminal Services) is disabled by
234 default. To enable it, create the registry key <screen>HKEY_LOCAL_MACHINE\SOFTWARE\Oracle\VirtualBox Guest Additions\AutoLogon</screen>
235 with a <computeroutput>DWORD</computeroutput> value of
236 <computeroutput>1</computeroutput>.</para>
237 </listitem>
238 </orderedlist></para>
239
240 <para>The following command forces VirtualBox to keep the credentials
241 after they were read by the guest and on VM reset: <screen>VBoxManage setextradata "Windows XP" VBoxInternal/Devices/VMMDev/0/Config/KeepCredentials 1</screen>Note
242 that this is a potential security risk as a malicious application
243 running on the guest could request this information using the proper
244 interface.</para>
245 </sect2>
246
247 <sect2 id="autologon_unix">
248 <title>Automated Linux/Unix guest logons</title>
249
250 <para>Starting with version 3.2, VirtualBox provides a custom PAM module
251 (Pluggable Authentication Module) which can be used to perform automated
252 guest logons on platforms which support this framework. Virtually all
253 modern Linux/Unix distributions rely on PAM.</para>
254
255 <para>The <computeroutput>pam_vbox.so</computeroutput> module itself
256 <emphasis role="bold">does not</emphasis> do an actual verification of
257 the credentials passed to the guest OS; instead it relies on other
258 modules such as <computeroutput>pam_unix.so</computeroutput> or
259 <computeroutput>pam_unix2.so</computeroutput> down in the PAM stack to
260 do the actual validation using the credentials retrieved by
261 <computeroutput>pam_vbox.so</computeroutput>. Therefore
262 <computeroutput>pam_vbox.so</computeroutput> has to be on top of the
263 authentication PAM service list.</para>
264
265 <note>
266 <para>The <computeroutput>pam_vbox.so</computeroutput> only supports
267 the <computeroutput>auth</computeroutput> primitive. Other primitives
268 such as <computeroutput>account</computeroutput>,
269 <computeroutput>session</computeroutput> or
270 <computeroutput>password</computeroutput> are not supported.</para>
271 </note>
272
273 <para>The <computeroutput>pam_vbox.so</computeroutput> module is shipped
274 as part of the Guest Additions but it is not installed and/or activated
275 on the guest OS by default. In order to install it, it has to be copied
276 from
277 <computeroutput>/opt/VBoxGuestAdditions-&lt;version&gt;/lib/VBoxGuestAdditions/</computeroutput>
278 to the security modules directory, usually
279 <computeroutput>/lib/security/</computeroutput> on 32-bit guest Linuxes
280 or <computeroutput>/lib64/security/</computeroutput> on 64-bit ones.
281 Please refer to your guest OS documentation for the correct PAM module
282 directory.</para>
283
284 <para>For example, to use <computeroutput>pam_vbox.so</computeroutput>
285 with a Ubuntu Linux guest OS and GDM (the GNOME Desktop Manager) to
286 logon users automatically with the credentials passed by the host, the
287 guest OS has to be configured like the following:</para>
288
289 <orderedlist>
290 <listitem>
291 <para>The <computeroutput>pam_vbox.so</computeroutput> module has to
292 be copied to the security modules directory, in this case it is
293 <computeroutput>/lib/security</computeroutput>.</para>
294 </listitem>
295
296 <listitem>
297 <para>Edit the PAM configuration file for GDM found at
298 <computeroutput>/etc/pam.d/gdm</computeroutput>, adding the line
299 <computeroutput>auth requisite pam_vbox.so</computeroutput> at the
300 top. Additionaly, in most Linux distributions there is a file called
301 <computeroutput>/etc/pam.d/common-auth</computeroutput>. This file
302 is included in many other services (like the GDM file mentioned
303 above). There you also have to add the line <computeroutput>auth
304 requisite pam_vbox.so</computeroutput>.</para>
305 </listitem>
306
307 <listitem>
308 <para>If authentication against the shadow database using
309 <computeroutput>pam_unix.so</computeroutput> or
310 <computeroutput>pam_unix2.so</computeroutput> is desired, the
311 argument <computeroutput>try_first_pass</computeroutput> for
312 <computeroutput>pam_unix.so</computeroutput> or
313 <computeroutput>use_first_pass</computeroutput> for
314 <computeroutput>pam_unix2.so</computeroutput> is needed in order to
315 pass the credentials from the VirtualBox module to the shadow
316 database authentication module. For Ubuntu, this needs to be added
317 to <computeroutput>/etc/pam.d/common-auth</computeroutput>, to the
318 end of the line referencing
319 <computeroutput>pam_unix.so</computeroutput>. This argument tells
320 the PAM module to use credentials already present in the stack, i.e.
321 the ones provided by the VirtualBox PAM module.</para>
322 </listitem>
323 </orderedlist>
324
325 <para><warning>
326 <para>An incorrectly configured PAM stack can effectively prevent
327 you from logging into your guest system!</para>
328 </warning></para>
329
330 <para>To make deployment easier, you can pass the argument
331 <computeroutput>debug</computeroutput> right after the
332 <computeroutput>pam_vbox.so</computeroutput> statement. Debug log output
333 will then be recorded using syslog.</para>
334
335 <para><note>
336 <para>By default, pam_vbox will not wait for credentials to arrive
337 from the host, in other words: When a login prompt is shown (for
338 example by GDM/KDM or the text console) and pam_vbox does not yet
339 have credentials it does not wait until they arrive. Instead the
340 next module in the PAM stack (depending on the PAM configuration)
341 will have the chance for authentication.</para>
342 </note></para>
343
344 <para>Starting with VirtualBox 4.1.4 pam_vbox supports various guest
345 property parameters which all reside in
346 <computeroutput>/VirtualBox/GuestAdd/PAM/</computeroutput>. These
347 parameters allow pam_vbox to wait for credentials to be provided by the
348 host and optionally can show a message while waiting for those. The
349 following guest properties can be set:</para>
350
351 <orderedlist>
352 <listitem>
353 <para><computeroutput>CredsWait</computeroutput>: Set to "1" if
354 pam_vbox should start waiting until credentials arrive from the
355 host. Until then no other authentication methods such as manually
356 logging in will be available. If this property is empty or get
357 deleted no waiting for credentials will be performed and pam_vbox
358 will act like before (see paragraph above). This property must be
359 set read-only for the guest
360 (<computeroutput>RDONLYGUEST</computeroutput>).</para>
361 </listitem>
362
363 <listitem>
364 <para><computeroutput>CredsWaitAbort</computeroutput>: Aborts waiting
365 for credentials when set to any value. Can be set from host and the
366 guest.</para>
367 </listitem>
368
369 <listitem>
370 <para><computeroutput>CredsWaitTimeout</computeroutput>: Timeout (in
371 seconds) to let pam_vbox wait for credentials to arrive. When no
372 credentials arrive within this timeout, authentication of pam_vbox
373 will be set to failed and the next PAM module in chain will be
374 asked. If this property is not specified, set to "0" or an invalid
375 value, an infinite timeout will be used. This property must be set
376 read-only for the guest
377 (<computeroutput>RDONLYGUEST</computeroutput>).</para>
378 </listitem>
379 </orderedlist>
380
381 <para>To customize pam_vbox further there are the following guest
382 properties:</para>
383
384 <orderedlist>
385 <listitem>
386 <para><computeroutput>CredsMsgWaiting</computeroutput>: Custom
387 message showed while pam_vbox is waiting for credentials from the
388 host. This property must be set read-only for the guest
389 (<computeroutput>RDONLYGUEST</computeroutput>).</para>
390 </listitem>
391
392 <listitem>
393 <para><computeroutput>CredsMsgWaitTimeout</computeroutput>: Custom
394 message showed when waiting for credentials by pam_vbox timed out,
395 e.g. did not arrive within time. This property must be set read-only
396 for the guest (<computeroutput>RDONLYGUEST</computeroutput>).</para>
397 </listitem>
398 </orderedlist>
399
400 <para><note>
401 <para>If a pam_vbox guest property does not have set the right flags
402 (<computeroutput>RDONLYGUEST</computeroutput>) this property will be
403 ignored then and - depending on the property - a default value will
404 be set. This can result in pam_vbox not waiting for credentials.
405 Consult the appropriate syslog file for more information and use the
406 <computeroutput>debug</computeroutput> option.</para>
407 </note></para>
408 </sect2>
409 </sect1>
410
411 <sect1>
412 <title>Advanced configuration for Windows guests</title>
413
414 <sect2 id="sysprep">
415 <title>Automated Windows system preparation</title>
416
417 <para>Beginning with Windows NT 4.0, Microsoft offers a "system
418 preparation" tool (in short: Sysprep) to prepare a Windows system for
419 deployment or redistribution. Whereas Windows 2000 and XP ship with
420 Sysprep on the installation medium, the tool also is available for
421 download on the Microsoft web site. In a standard installation of
422 Windows Vista and 7, Sysprep is already included. Sysprep mainly
423 consists of an executable called
424 <computeroutput>sysprep.exe</computeroutput> which is invoked by the
425 user to put the Windows installation into preparation mode.</para>
426
427 <para>Starting with VirtualBox 3.2.2, the Guest Additions offer a way to
428 launch a system preparation on the guest operating system in an
429 automated way, controlled from the host system. To achieve that, see
430 <xref linkend="guestadd-guestcontrol" /> for using the feature with the
431 special identifier <computeroutput>sysprep</computeroutput> as the
432 program to execute, along with the user name
433 <computeroutput>sysprep</computeroutput> and password
434 <computeroutput>sysprep</computeroutput> for the credentials. Sysprep
435 then gets launched with the required system rights.</para>
436
437 <note>
438 <para>Specifying the location of "sysprep.exe" is <emphasis
439 role="bold">not possible</emphasis> -- instead the following paths are
440 used (based on the operating system): <itemizedlist>
441 <listitem>
442 <para><computeroutput>C:\sysprep\sysprep.exe</computeroutput>
443 for Windows NT 4.0, 2000 and XP</para>
444 </listitem>
445
446 <listitem>
447 <para><computeroutput>%WINDIR%\System32\Sysprep\sysprep.exe</computeroutput>
448 for Windows Vista, 2008 Server and 7</para>
449 </listitem>
450 </itemizedlist> The Guest Additions will automatically use the
451 appropriate path to execute the system preparation tool.</para>
452 </note>
453 </sect2>
454 </sect1>
455
456 <sect1>
457 <title>Advanced configuration for Linux and Solaris guests</title>
458
459 <sect2>
460 <title>Manual setup of selected guest services on Linux</title>
461
462 <para>The VirtualBox Guest Additions contain several different drivers.
463 If for any reason you do not wish to set them all up, you can install
464 the Guest Additions using the following command:</para>
465
466 <screen> sh ./VBoxLinuxAdditions.run no_setup</screen>
467
468 <para>After this, you will need to at least compile the kernel modules
469 by running the command <screen> /usr/lib/VBoxGuestAdditions/vboxadd setup</screen>
470 as root (you will need to replace <emphasis>lib</emphasis> by
471 <emphasis>lib64</emphasis> on some 64bit guests), and on older guests
472 without the udev service you will need to add the
473 <emphasis>vboxadd</emphasis> service to the default runlevel to ensure
474 that the modules get loaded.</para>
475
476 <para>To setup the time synchronization service, run the command
477 <screen> /usr/lib/VBoxGuestAdditions/vboxadd-service setup</screen> and
478 add the service vboxadd-service to the default runlevel. To set up the
479 X11 and OpenGL part of the Guest Additions, run the command <screen> /usr/lib/VBoxGuestAdditions/vboxadd-x11 setup</screen>
480 (you do not need to enable any services for this).</para>
481
482 <para>To recompile the guest kernel modules, use this command: <screen> /usr/lib/VBoxGuestAdditions/vboxadd setup</screen>
483 After compilation you should reboot your guest to ensure that the new
484 modules are actually used.</para>
485 </sect2>
486
487 <sect2 id="guestxorgsetup">
488 <title>Guest graphics and mouse driver setup in depth</title>
489
490 <para>This section assumes that you are familiar with configuring the
491 X.Org server using xorg.conf and optionally the newer mechanisms using
492 hal or udev and xorg.conf.d. If not you can learn about them by studying
493 the documentation which comes with X.Org.</para>
494
495 <para>The VirtualBox Guest Additions come with drivers for X.Org
496 versions <itemizedlist>
497 <listitem>
498 X11R6.8/X11R6.9 and XFree86 version 4.3 (vboxvideo_drv_68.o and vboxmouse_drv_68.o)
499 </listitem>
500
501 <listitem>
502 X11R7.0 (vboxvideo_drv_70.so and vboxmouse_drv_70.so)
503 </listitem>
504
505 <listitem>
506 X11R7.1 (vboxvideo_drv_71.so and vboxmouse_drv_71.so)
507 </listitem>
508
509 <listitem>
510 X.Org Server versions 1.3 and later (vboxvideo_drv_13.so and vboxmouse_drv_13.so and so on).
511 </listitem>
512 </itemizedlist> By default these drivers can be found in the
513 directory</para>
514
515 <para><computeroutput>/opt/VBoxGuestAdditions-&lt;version&gt;/lib/VBoxGuestAdditions</computeroutput></para>
516
517 <para>and the correct versions for the X server are symbolically linked
518 into the X.Org driver directories.</para>
519
520 <para>For graphics integration to work correctly, the X server must load
521 the vboxvideo driver (many recent X server versions look for it
522 automatically if they see that they are running in VirtualBox) and for
523 an optimal user experience the guest kernel drivers must be loaded and
524 the Guest Additions tool VBoxClient must be running as a client in the X
525 session. For mouse integration to work correctly, the guest kernel
526 drivers must be loaded and in addition, in X servers from X.Org X11R6.8
527 to X11R7.1 and in XFree86 version 4.3 the right vboxmouse driver must be
528 loaded and associated with /dev/mouse or /dev/psaux; in X.Org server 1.3
529 or later a driver for a PS/2 mouse must be loaded and the right
530 vboxmouse driver must be associated with /dev/vboxguest.</para>
531
532 <para>The VirtualBox guest graphics driver can use any graphics
533 configuration for which the virtual resolution fits into the virtual
534 video memory allocated to the virtual machine (minus a small amount used
535 by the guest driver) as described in <xref
536 linkend="settings-display" />. The driver will offer a range of standard
537 modes at least up to the default guest resolution for all active guest
538 monitors. In X.Org Server 1.3 and later the default mode can be changed
539 by setting the output property VBOX_MODE to
540 "&lt;width&gt;x&lt;height&gt;" for any guest monitor. When VBoxClient
541 and the kernel drivers are active this is done automatically when the
542 host requests a mode change. The driver for older versions can only
543 receive new modes by querying the host for requests at regular
544 intervals.</para>
545
546 <para>With pre-1.3 X Servers you can also add your own modes to the X
547 server configuration file. You simply need to add them to the "Modes"
548 list in the "Display" subsection of the "Screen" section. For example,
549 the section shown here has a custom 2048x800 resolution mode
550 added:</para>
551
552 <screen>Section "Screen"
553 Identifier "Default Screen"
554 Device "VirtualBox graphics card"
555 Monitor "Generic Monitor"
556 DefaultDepth 24
557 SubSection "Display"
558 Depth 24
559 Modes "2048x800" "800x600" "640x480"
560 EndSubSection
561EndSection</screen>
562 </sect2>
563 </sect1>
564
565 <sect1 id="cpuhotplug">
566 <title>CPU hot-plugging</title>
567
568 <para>With virtual machines running modern server operating systems,
569 VirtualBox supports CPU hot-plugging.<footnote>
570 <para>Support for CPU hot-plugging was introduced with VirtualBox
571 3.2.</para>
572 </footnote> Whereas on a physical computer this would mean that a CPU
573 can be added or removed while the machine is running, VirtualBox supports
574 adding and removing virtual CPUs while a virtual machine is
575 running.</para>
576
577 <para>CPU hot-plugging works only with guest operating systems that
578 support it. So far this applies only to Linux and Windows Server 2008 x64
579 Data Center Edition. Windows supports only hot-add while Linux supports
580 hot-add and hot-remove but to use this feature with more than 8 CPUs a
581 64bit Linux guest is required.</para>
582
583 <para>At this time, CPU hot-plugging requires using the VBoxManage
584 command-line interface. First, hot-plugging needs to be enabled for a
585 virtual machine:<screen>VBoxManage modifyvm "VM name" --cpuhotplug on</screen></para>
586
587 <para>After that, the --cpus option specifies the maximum number of CPUs
588 that the virtual machine can have:<screen>VBoxManage modifyvm "VM name" --cpus 8</screen>When
589 the VM is off, you can then add and remove virtual CPUs with the modifyvm
590 --plugcpu and --unplugcpu subcommands, which take the number of the
591 virtual CPU as a parameter, like this:<screen>VBoxManage modifyvm "VM name" --plugcpu 3
592VBoxManage modifyvm "VM name" --unplugcpu 3</screen>Note that CPU 0 can never
593 be removed.</para>
594
595 <para>While the VM is running, CPUs can be added with the
596 <computeroutput>controlvm plugcpu/unplugcpu</computeroutput> commands
597 instead:<screen>VBoxManage controlvm "VM name" plugcpu 3
598VBoxManage controlvm "VM name" unplugcpu 3</screen></para>
599
600 <para>See <xref linkend="vboxmanage-modifyvm" /> and <xref
601 linkend="vboxmanage-controlvm" /> for details.</para>
602
603 <para>With Linux guests, the following applies: To prevent ejection while
604 the CPU is still used it has to be ejected from within the guest before.
605 The Linux Guest Additions contain a service which receives hot-remove
606 events and ejects the CPU. Also, after a CPU is added to the VM it is not
607 automatically used by Linux. The Linux Guest Additions service will take
608 care of that if installed. If not a CPU can be started with the following
609 command:<screen>echo 1 &gt; /sys/devices/system/cpu/cpu&lt;id&gt;/online</screen></para>
610 </sect1>
611
612 <sect1 id="pcipassthrough">
613 <title>PCI passthrough</title>
614
615 <para>When running on Linux hosts, with a recent enough kernel (at least
616 version <computeroutput>2.6.31</computeroutput>) experimental host PCI
617 devices passthrough is available.<footnote>
618 <para>Experimental support for PCI passthrough was introduced with
619 VirtualBox 4.1.</para>
620 </footnote></para>
621
622 <note>
623 <para>The PCI passthrough module is shipped as a VirtualBox extension
624 package, which must be installed separately. See <xref
625 linkend="intro-installing" /> for more information.</para>
626 </note>
627
628 <para>Essentially this feature allows to directly use physical PCI devices
629 on the host by the guest even if host doesn't have drivers for this
630 particular device. Both, regular PCI and some PCI Express cards, are
631 supported. AGP and certain PCI Express cards are not supported at the
632 moment if they rely on GART (Graphics Address Remapping Table) unit
633 programming for texture management as it does rather nontrivial operations
634 with pages remapping interfering with IOMMU. This limitation may be lifted
635 in future releases.</para>
636
637 <para>To be fully functional, PCI passthrough support in VirtualBox
638 depends upon an IOMMU hardware unit which is not yet too widely available.
639 If the device uses bus mastering (i.e. it performs DMA to the OS memory on
640 its own), then an IOMMU is required, otherwise such DMA transactions may
641 write to the wrong physical memory address as the device DMA engine is
642 programmed using a device-specific protocol to perform memory
643 transactions. The IOMMU functions as translation unit mapping physical
644 memory access requests from the device using knowledge of the guest
645 physical address to host physical addresses translation rules.</para>
646
647 <para>Intel's solution for IOMMU is marketed as "Intel Virtualization
648 Technology for Directed I/O" (VT-d), and AMD's one is called AMD-Vi. So
649 please check if your motherboard datasheet has appropriate technology.
650 Even if your hardware doesn't have a IOMMU, certain PCI cards may work
651 (such as serial PCI adapters), but the guest will show a warning on boot
652 and the VM execution will terminate if the guest driver will attempt to
653 enable card bus mastering.</para>
654
655 <para>It is very common that the BIOS or the host OS disables the IOMMU by
656 default. So before any attempt to use it please make sure that
657 <orderedlist>
658 <listitem>
659 <para>Your motherboard has an IOMMU unit.</para>
660 </listitem>
661
662 <listitem>
663 <para>Your CPU supports the IOMMU.</para>
664 </listitem>
665
666 <listitem>
667 <para>The IOMMU is enabled in the BIOS.</para>
668 </listitem>
669
670 <listitem>
671 <para>The VM must run with VT-x/AMD-V and nested paging
672 enabled.</para>
673 </listitem>
674
675 <listitem>
676 <para>Your Linux kernel was compiled with IOMMU support (including
677 DMA remapping, see <computeroutput>CONFIG_DMAR</computeroutput>
678 kernel compilation option). The PCI stub driver
679 (<computeroutput>CONFIG_PCI_STUB</computeroutput>) is required as
680 well.</para>
681 </listitem>
682
683 <listitem>
684 <para>Your Linux kernel recognizes and uses the IOMMU unit
685 (<computeroutput>intel_iommu=on</computeroutput> boot option could
686 be needed). Search for DMAR and PCI-DMA in kernel boot log.</para>
687 </listitem>
688 </orderedlist></para>
689
690 <para>Once you made sure that the host kernel supports the IOMMU, the next
691 step is to select the PCI card and attach it to the guest. To figure out
692 the list of available PCI devices, use the
693 <computeroutput>lspci</computeroutput> command. The output will look like
694 this <screen>
695 01:00.0 VGA compatible controller: ATI Technologies Inc Cedar PRO [Radeon HD 5450]
696 01:00.1 Audio device: ATI Technologies Inc Manhattan HDMI Audio [Mobility Radeon HD 5000 Series]
697 02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller (rev 03)
698 03:00.0 SATA controller: JMicron Technology Corp. JMB362/JMB363 Serial ATA Controller (rev 03)
699 03:00.1 IDE interface: JMicron Technology Corp. JMB362/JMB363 Serial ATA Controller (rev 03)
700 06:00.0 VGA compatible controller: nVidia Corporation G86 [GeForce 8500 GT] (rev a1)
701 </screen> The first column is a PCI address (in format
702 <computeroutput>bus:device.function</computeroutput>). This address could
703 be used to identify the device for further operations. For example, to
704 attach a PCI network controller on the system listed above to the second
705 PCI bus in the guest, as device 5, function 0, use the following command:
706 <screen>VBoxManage modifyvm "VM name" --pciattach 02:00.0@01:05.0</screen>
707 To detach same device, use <screen>VBoxManage modifyvm "VM name" --pcidetach 02:00.0</screen>
708 Please note that both host and guest could freely assign a different PCI
709 address to the card attached during runtime, so those addresses only apply
710 to the address of the card at the moment of attachment (host), and during
711 BIOS PCI init (guest).</para>
712
713 <para>If the virtual machine has a PCI device attached, certain
714 limitations apply: <orderedlist>
715 <listitem>
716 Only PCI cards with non-shared interrupts (such as using MSI on host) are supported at the moment.
717 </listitem>
718
719 <listitem>
720 No guest state can be reliably saved/restored (as the internal state of the PCI card could not be retrieved).
721 </listitem>
722
723 <listitem>
724 Teleportation (live migration) doesn't work (for the same reason).
725 </listitem>
726
727 <listitem>
728 No lazy physical memory allocation. The host will preallocate the whole RAM required for the VM on startup (as we cannot catch physical hardware accesses to the physical memory).
729 </listitem>
730 </orderedlist></para>
731 </sect1>
732
733 <sect1>
734 <title>Advanced display configuration</title>
735
736 <sect2>
737 <title>Custom VESA resolutions</title>
738
739 <para>Apart from the standard VESA resolutions, the VirtualBox VESA BIOS
740 allows you to add up to 16 custom video modes which will be reported to
741 the guest operating system. When using Windows guests with the
742 VirtualBox Guest Additions, a custom graphics driver will be used
743 instead of the fallback VESA solution so this information does not
744 apply.</para>
745
746 <para>Additional video modes can be configured for each VM using the
747 extra data facility. The extra data key is called
748 <literal>CustomVideoMode&lt;x&gt;</literal> with <literal>x</literal>
749 being a number from 1 to 16. Please note that modes will be read from 1
750 until either the following number is not defined or 16 is reached. The
751 following example adds a video mode that corresponds to the native
752 display resolution of many notebook computers:</para>
753
754 <screen>VBoxManage setextradata "VM name" "CustomVideoMode1" "1400x1050x16"</screen>
755
756 <para>The VESA mode IDs for custom video modes start at
757 <literal>0x160</literal>. In order to use the above defined custom video
758 mode, the following command line has be supplied to Linux:</para>
759
760 <screen>vga = 0x200 | 0x160
761vga = 864</screen>
762
763 <para>For guest operating systems with VirtualBox Guest Additions, a
764 custom video mode can be set using the video mode hint feature.</para>
765 </sect2>
766
767 <sect2>
768 <title>Configuring the maximum resolution of guests when using the
769 graphical frontend</title>
770
771 <para>When guest systems with the Guest Additions installed are started
772 using the graphical frontend (the normal VirtualBox application), they
773 will not be allowed to use screen resolutions greater than the host's
774 screen size unless the user manually resizes them by dragging the
775 window, switching to full screen or seamless mode or sending a video mode
776 hint using VBoxManage. This behavior is what most users will want, but
777 if you have different needs, it is possible to change it by issuing one
778 of the following commands from the command line:</para>
779
780 <screen>VBoxManage setextradata global GUI/MaxGuestResolution any</screen>
781
782 <para>will remove all limits on guest resolutions.</para>
783
784 <screen>VBoxManage setextradata global GUI/MaxGuestResolution &gt;width,height&lt;</screen>
785
786 <para>manually specifies a maximum resolution.</para>
787
788 <screen>VBoxManage setextradata global GUI/MaxGuestResolution auto</screen>
789
790 <para>restores the default settings. Note that these settings apply
791 globally to all guest systems, not just to a single machine.</para>
792 </sect2>
793 </sect1>
794
795 <sect1>
796 <title>Advanced storage configuration</title>
797
798 <sect2 id="rawdisk">
799 <title>Using a raw host hard disk from a guest</title>
800
801 <para>Starting with version 1.4, as an alternative to using virtual disk
802 images (as described in detail in <xref linkend="storage" />),
803 VirtualBox can also present either entire physical hard disks or
804 selected partitions thereof as virtual disks to virtual machines.</para>
805
806 <para>With VirtualBox, this type of access is called "raw hard disk
807 access"; it allows a guest operating system to access its virtual hard
808 disk without going through the host OS file system. The actual
809 performance difference for image files vs. raw disk varies greatly
810 depending on the overhead of the host file system, whether dynamically
811 growing images are used, and on host OS caching strategies. The caching
812 indirectly also affects other aspects such as failure behavior, i.e.
813 whether the virtual disk contains all data written before a host OS
814 crash. Consult your host OS documentation for details on this.</para>
815
816 <para><warning>
817 <para>Raw hard disk access is for expert users only. Incorrect use
818 or use of an outdated configuration can lead to <emphasis
819 role="bold">total loss of data </emphasis>on the physical disk. Most
820 importantly, <emphasis>do not</emphasis> attempt to boot the
821 partition with the currently running host operating system in a
822 guest. This will lead to severe data corruption.</para>
823 </warning></para>
824
825 <para>Raw hard disk access -- both for entire disks and individual
826 partitions -- is implemented as part of the VMDK image format support.
827 As a result, you will need to create a special VMDK image file which
828 defines where the data will be stored. After creating such a special
829 VMDK image, you can use it like a regular virtual disk image. For
830 example, you can use the VirtualBox Manager (<xref linkend="vdis" />)
831 or <computeroutput>VBoxManage</computeroutput> to assign the image to a
832 virtual machine.</para>
833
834 <sect3>
835 <title>Access to entire physical hard disk</title>
836
837 <para>While this variant is the simplest to set up, you must be aware
838 that this will give a guest operating system direct and full access to
839 an <emphasis>entire physical disk</emphasis>. If your
840 <emphasis>host</emphasis> operating system is also booted from this
841 disk, please take special care to not access the partition from the
842 guest at all. On the positive side, the physical disk can be
843 repartitioned in arbitrary ways without having to recreate the image
844 file that gives access to the raw disk.</para>
845
846 <para>To create an image that represents an entire physical hard disk
847 (which will not contain any actual data, as this will all be stored on
848 the physical disk), on a Linux host, use the command<screen>VBoxManage internalcommands createrawvmdk -filename /path/to/file.vmdk
849 -rawdisk /dev/sda</screen>This creates the image
850 <code>/path/to/file.vmdk</code> (must be absolute), and all data will
851 be read and written from <code>/dev/sda</code>.</para>
852
853 <para>On a Windows host, instead of the above device specification,
854 use e.g. <code>\\.\PhysicalDrive0</code>. On a Mac OS X host, instead
855 of the above device specification use e.g. <code>/dev/disk1</code>.
856 Note that on OS X you can only get access to an entire disk if no
857 volume is mounted from it.</para>
858
859 <para>Creating the image requires read/write access for the given
860 device. Read/write access is also later needed when using the image
861 from a virtual machine. On some host platforms (e.g. Windows Vista
862 and later), raw disk access may be restricted and not permitted by
863 the host OS in some situations.</para>
864
865 <para>Just like with regular disk images, this does not automatically
866 attach the newly created image to a virtual machine. This can be done
867 with e.g. <screen>VBoxManage storageattach WindowsXP --storagectl "IDE Controller"
868 --port 0 --device 0 --type hdd --medium /path/to/file.vmdk</screen>When
869 this is done the selected virtual machine will boot from the specified
870 physical disk.</para>
871 </sect3>
872
873 <sect3>
874 <title>Access to individual physical hard disk partitions</title>
875
876 <para>This "raw partition support" is quite similar to the "full hard
877 disk" access described above. However, in this case, any partitioning
878 information will be stored inside the VMDK image, so you can e.g.
879 install a different boot loader in the virtual hard disk without
880 affecting the host's partitioning information. While the guest will be
881 able to <emphasis>see</emphasis> all partitions that exist on the
882 physical disk, access will be filtered in that reading from partitions
883 for which no access is allowed the partitions will only yield zeroes,
884 and all writes to them are ignored.</para>
885
886 <para>To create a special image for raw partition support (which will
887 contain a small amount of data, as already mentioned), on a Linux
888 host, use the command<screen>VBoxManage internalcommands createrawvmdk -filename /path/to/file.vmdk
889 -rawdisk /dev/sda -partitions 1,5</screen></para>
890
891 <para>As you can see, the command is identical to the one for "full
892 hard disk" access, except for the additional
893 <computeroutput>-partitions</computeroutput> parameter. This example
894 would create the image <code>/path/to/file.vmdk</code> (which, again,
895 must be absolute), and partitions 1 and 5 of <code>/dev/sda</code>
896 would be made accessible to the guest.</para>
897
898 <para>VirtualBox uses the same partition numbering as your Linux host.
899 As a result, the numbers given in the above example would refer to the
900 first primary partition and the first logical drive in the extended
901 partition, respectively.</para>
902
903 <para>On a Windows host, instead of the above device specification,
904 use e.g. <code>\\.\PhysicalDrive0</code>. On a Mac OS X host, instead
905 of the above device specification use e.g. <code>/dev/disk1</code>.
906 Note that on OS X you can only use partitions which are not mounted
907 (eject the respective volume first). Partition numbers are the same on
908 Linux, Windows and Mac OS X hosts.</para>
909
910 <para>The numbers for the list of partitions can be taken from the
911 output of<screen>VBoxManage internalcommands listpartitions -rawdisk /dev/sda</screen>The
912 output lists the partition types and sizes to give the user enough
913 information to identify the partitions necessary for the guest.</para>
914
915 <para>Images which give access to individual partitions are specific
916 to a particular host disk setup. You cannot transfer these images to
917 another host; also, whenever the host partitioning changes, the image
918 <emphasis>must be recreated</emphasis>.</para>
919
920 <para>Creating the image requires read/write access for the given
921 device. Read/write access is also later needed when using the image
922 from a virtual machine. If this is not feasible, there is a special
923 variant for raw partition access (currently only available on Linux
924 hosts) that avoids having to give the current user access to the
925 entire disk. To set up such an image, use<screen>VBoxManage internalcommands createrawvmdk -filename /path/to/file.vmdk
926 -rawdisk /dev/sda -partitions 1,5 -relative</screen>When used from a
927 virtual machine, the image will then refer not to the entire disk, but
928 only to the individual partitions (in the example
929 <code>/dev/sda1</code> and <code>/dev/sda5</code>). As a consequence,
930 read/write access is only required for the affected partitions, not
931 for the entire disk. During creation however, read-only access to the
932 entire disk is required to obtain the partitioning information.</para>
933
934 <para>In some configurations it may be necessary to change the MBR
935 code of the created image, e.g. to replace the Linux boot loader that
936 is used on the host by another boot loader. This allows e.g. the guest
937 to boot directly to Windows, while the host boots Linux from the
938 "same" disk. For this purpose the
939 <computeroutput>-mbr</computeroutput> parameter is provided. It
940 specifies a file name from which to take the MBR code. The partition
941 table is not modified at all, so a MBR file from a system with totally
942 different partitioning can be used. An example of this is<screen>VBoxManage internalcommands createrawvmdk -filename /path/to/file.vmdk
943 -rawdisk /dev/sda -partitions 1,5 -mbr winxp.mbr</screen>The modified
944 MBR will be stored inside the image, not on the host disk.</para>
945
946 <para>The created image can be attached to a storage controller in a
947 VM configuration as usual.</para>
948 </sect3>
949 </sect2>
950
951 <sect2 id="changevpd">
952 <title>Configuring the hard disk vendor product data (VPD)</title>
953
954 <para>VirtualBox reports vendor product data for its virtual hard disks
955 which consist of hard disk serial number, firmware revision and model
956 number. These can be changed using the following commands:</para>
957
958 <screen>VBoxManage setextradata "VM name"
959 "VBoxInternal/Devices/ahci/0/Config/Port0/SerialNumber" "serial"
960VBoxManage setextradata "VM name"
961 "VBoxInternal/Devices/ahci/0/Config/Port0/FirmwareRevision" "firmware"
962VBoxManage setextradata "VM name"
963 "VBoxInternal/Devices/ahci/0/Config/Port0/ModelNumber" "model"</screen>
964
965 <para>The serial number is a 20 byte alphanumeric string, the firmware
966 revision an 8 byte alphanumeric string and the model number a 40 byte
967 alphanumeric string. Instead of "Port0" (referring to the first port),
968 specify the desired SATA hard disk port.</para>
969
970 <para>The above commands apply to virtual machines with an AHCI (SATA)
971 controller. The commands for virtual machines with an IDE controller
972 are:</para>
973
974 <screen>VBoxManage setextradata "VM name"
975 "VBoxInternal/Devices/piix3ide/0/Config/PrimaryMaster/SerialNumber" "serial"
976VBoxManage setextradata "VM name"
977 "VBoxInternal/Devices/piix3ide/0/Config/PrimaryMaster/FirmwareRevision" "firmware"
978VBoxManage setextradata "VM name"
979 "VBoxInternal/Devices/piix3ide/0/Config/PrimaryMaster/ModelNumber" "model"</screen>
980
981 <para>For hard disks it's also possible to mark the
982 drive as having a non-rotational medium with:</para>
983
984 <screen>VBoxManage setextradata "VM name"
985 "VBoxInternal/Devices/ahci/0/Config/Port0/NonRotational" "1"</screen>
986
987 <para>Additional three parameters are needed for CD/DVD drives to report
988 the vendor product data:</para>
989
990 <screen>VBoxManage setextradata "VM name"
991 "VBoxInternal/Devices/ahci/0/Config/Port0/ATAPIVendorId" "vendor"
992VBoxManage setextradata "VM name"
993 "VBoxInternal/Devices/ahci/0/Config/Port0/ATAPIProductId" "product"
994VBoxManage setextradata "VM name"
995 "VBoxInternal/Devices/ahci/0/Config/Port0/ATAPIRevision" "revision"</screen>
996
997 <para>The vendor id is an 8 byte alphanumeric string, the product id an
998 16 byte alphanumeric string and the revision a 4 byte alphanumeric
999 string. Instead of "Port0" (referring to the first port), specify the
1000 desired SATA hard disk port.</para>
1001 </sect2>
1002
1003 <sect2>
1004 <title id="iscsi-intnet">Access iSCSI targets via Internal
1005 Networking</title>
1006
1007 <para>As an experimental feature, VirtualBox allows for accessing an
1008 iSCSI target running in a virtual machine which is configured for using
1009 Internal Networking mode. Please see <xref linkend="storage-iscsi" />;
1010 <xref linkend="network_internal" />; and <xref
1011 linkend="vboxmanage-storageattach" /> for additional information.</para>
1012
1013 <para>The IP stack accessing Internal Networking must be configured in
1014 the virtual machine which accesses the iSCSI target. A free static IP
1015 and a MAC address not used by other virtual machines must be chosen. In
1016 the example below, adapt the name of the virtual machine, the MAC
1017 address, the IP configuration and the Internal Networking name
1018 ("MyIntNet") according to your needs. The following eigth commands must
1019 first be issued:<screen>VBoxManage setextradata "VM name" VBoxInternal/Devices/IntNetIP/0/Trusted 1
1020VBoxManage setextradata "VM name" VBoxInternal/Devices/IntNetIP/0/Config/MAC 08:00:27:01:02:0f
1021VBoxManage setextradata "VM name" VBoxInternal/Devices/IntNetIP/0/Config/IP 10.0.9.1
1022VBoxManage setextradata "VM name" VBoxInternal/Devices/IntNetIP/0/Config/Netmask 255.255.255.0
1023VBoxManage setextradata "VM name" VBoxInternal/Devices/IntNetIP/0/LUN#0/Driver IntNet
1024VBoxManage setextradata "VM name" VBoxInternal/Devices/IntNetIP/0/LUN#0/Config/Network MyIntNet
1025VBoxManage setextradata "VM name" VBoxInternal/Devices/IntNetIP/0/LUN#0/Config/TrunkType 2
1026VBoxManage setextradata "VM name" VBoxInternal/Devices/IntNetIP/0/LUN#0/Config/IsService 1</screen></para>
1027
1028 <para>Finally the iSCSI disk must be attached with the
1029 <computeroutput>--intnet</computeroutput> option to tell the iSCSI
1030 initiator to use internal networking:<screen>VBoxManage storageattach ... --medium iscsi
1031 --server 10.0.9.30 --target iqn.2008-12.com.sun:sampletarget --intnet</screen></para>
1032
1033 <para>Compared to a "regular" iSCSI setup, IP address of the target
1034 <emphasis>must</emphasis> be specified as a numeric IP address, as there
1035 is no DNS resolver for internal networking.</para>
1036
1037 <para>The virtual machine with the iSCSI target should be started before
1038 the VM using it is powered on. If a virtual machine using an iSCSI disk
1039 is started without having the iSCSI target powered up, it can take up to
1040 200 seconds to detect this situation. The VM will fail to power
1041 up.</para>
1042 </sect2>
1043 </sect1>
1044
1045 <sect1>
1046 <title>Launching more than 128 VMs on Linux hosts</title>
1047
1048 <para>Linux hosts have a fixed number of IPC semaphores IDs per process
1049 preventing users from starting substantially many VMs. The exact number
1050 may vary with each Linux distribution. While trying to launch more VMs you
1051 would be shown a "Cannot create IPC semaphore" error. In order to run more
1052 VMs, you will need to increase the semaphore ID limit of the VBoxSVC
1053 process. Find the current semaphore limits imposed by the kernel by
1054 executing as root:<screen>#/sbin/sysctl kernel.sem
1055kernel.sem = 250 32000 32 128</screen></para>
1056
1057 <para>The "kernel.sem" parameter bundles together 4 values, the one we are
1058 interested in is called "SEMMNI", the maximum number of semaphore IDs
1059 which is 128 in the above example. Increase this semaphore ID limit by
1060 executing as root:<screen>echo "kernel.sem = 250 32000 32 2048" &gt;&gt; /etc/sysctl.conf
1061/sbin/sysctl -p</screen></para>
1062
1063 <para>The above commands will add the new limits to the configuration file, thus
1064 making the effect persistent across reboots, and will activate the new
1065 limits into the currently running kernel.</para>
1066 </sect1>
1067
1068 <sect1>
1069 <title>Launching more than 120 VMs on Solaris hosts</title>
1070
1071 <para>Solaris hosts have a fixed number of IPC semaphores IDs per process
1072 preventing users from starting more than 120 VMs. While trying to launch
1073 more VMs you would be shown a "Cannot create IPC semaphore" error. In
1074 order to run more VMs, you will need to increase the semaphore ID limit of
1075 the VBoxSVC process.</para>
1076
1077 <sect2>
1078 <title>Temporary solution while VirtualBox is running</title>
1079
1080 <para>Execute as root the <computeroutput>prctl</computeroutput> command
1081 as shown below for the currently running VBoxSVC process. The process ID
1082 of VBoxSVC can be obtained using the <computeroutput>ps</computeroutput>
1083 command.</para>
1084
1085 <screen>prctl -r -n project.max-sem-ids -v 2048 &lt;pid-of-VBoxSVC&gt;</screen>
1086
1087 <para>This will immediately increase the semaphore limit of the
1088 currently running VBoxSVC process and allow you to launch more VMs.
1089 However, this change is not persistent and will be lost when VBoxSVC
1090 terminates.</para>
1091 </sect2>
1092
1093 <sect2>
1094 <title>Persistent solution, requires user to re-login</title>
1095
1096 <para>If the user running VirtualBox is root, execute the following
1097 command:</para>
1098
1099 <screen>prctl -n project.max-sem-ids -v 2048 -r -i project user.root</screen>
1100
1101 <para>From this point, starting new processes will have the increased
1102 limit of 2048. You may then re-login or close all VMs and restart
1103 VBoxSVC. You can check the current VBoxSVC semaphore ID limit using the
1104 following command:</para>
1105
1106 <screen>prctl -n project.max-sem-ids -i process &lt;pid-of-VBoxSVC&gt;</screen>
1107
1108 <para>If the user running VirtualBox is not root, you must add the
1109 property to the user's default project. Create the default project and
1110 set the limit by executing as root:</para>
1111
1112 <screen>projadd -U &lt;username&gt; user.&lt;username&gt;
1113projmod -s -K "project.max-sem-ids=(priv,2048,deny)" user.&lt;username&gt;</screen>
1114
1115 <para>Substitute "&lt;username&gt;" with the name of the user running
1116 VirtualBox. Then re-login as this user to be able to run more than 120
1117 VMs.</para>
1118 </sect2>
1119 </sect1>
1120
1121 <sect1>
1122 <title>Legacy commands for using serial ports</title>
1123
1124 <para>Starting with version 1.4, VirtualBox provided support for virtual
1125 serial ports, which, at the time, was rather complicated to set up with a
1126 sequence of <computeroutput>VBoxManage setextradata</computeroutput>
1127 statements. Since version 1.5, that way of setting up serial ports is no
1128 longer necessary and <emphasis>deprecated.</emphasis> To set up virtual
1129 serial ports, use the methods now described in <xref
1130 linkend="serialports" />.<note>
1131 <para>For backwards compatibility, the old
1132 <computeroutput>setextradata</computeroutput> statements, whose
1133 description is retained below from the old version of the manual, take
1134 <emphasis>precedence</emphasis> over the new way of configuring serial
1135 ports. As a result, if configuring serial ports the new way doesn't
1136 work, make sure the VM in question does not have old configuration
1137 data such as below still active.</para>
1138 </note></para>
1139
1140 <para>The old sequence of configuring a serial port used the following 6
1141 commands:</para>
1142
1143 <screen>VBoxManage setextradata "VM name"
1144 "VBoxInternal/Devices/serial/0/Config/IRQ" 4
1145VBoxManage setextradata "VM name"
1146 "VBoxInternal/Devices/serial/0/Config/IOBase" 0x3f8
1147VBoxManage setextradata "VM name"
1148 "VBoxInternal/Devices/serial/0/LUN#0/Driver" Char
1149VBoxManage setextradata "VM name"
1150 "VBoxInternal/Devices/serial/0/LUN#0/AttachedDriver/Driver" NamedPipe
1151VBoxManage setextradata "VM name"
1152 "VBoxInternal/Devices/serial/0/LUN#0/AttachedDriver/Config/Location" "\\.\pipe\vboxCOM1"
1153VBoxManage setextradata "VM name"
1154 "VBoxInternal/Devices/serial/0/LUN#0/AttachedDriver/Config/IsServer" 1</screen>
1155
1156 <para>This sets up a serial port in the guest with the default settings
1157 for COM1 (IRQ 4, I/O address 0x3f8) and the
1158 <computeroutput>Location</computeroutput> setting assumes that this
1159 configuration is used on a Windows host, because the Windows named pipe
1160 syntax is used. Keep in mind that on Windows hosts a named pipe must
1161 always start with <computeroutput>\\.\pipe\</computeroutput>. On Linux the
1162 same configuration settings apply, except that the path name for the
1163 <computeroutput>Location</computeroutput> can be chosen more freely. Local
1164 domain sockets can be placed anywhere, provided the user running
1165 VirtualBox has the permission to create a new file in the directory. The
1166 final command above defines that VirtualBox acts as a server, i.e. it
1167 creates the named pipe itself instead of connecting to an already existing
1168 one.</para>
1169 </sect1>
1170
1171 <sect1 id="changenat">
1172 <title>Fine-tuning the VirtualBox NAT engine</title>
1173
1174 <sect2>
1175 <title>Configuring the address of a NAT network interface</title>
1176
1177 <para>In NAT mode, the guest network interface is assigned to the IPv4
1178 range <computeroutput>10.0.x.0/24</computeroutput> by default where
1179 <computeroutput>x</computeroutput> corresponds to the instance of the
1180 NAT interface +2. So <computeroutput>x</computeroutput> is 2 when there
1181 is only one NAT instance active. In that case the guest is assigned to
1182 the address <computeroutput>10.0.2.15</computeroutput>, the gateway is
1183 set to <computeroutput>10.0.2.2</computeroutput> and the name server can
1184 be found at <computeroutput>10.0.2.3</computeroutput>.</para>
1185
1186 <para>If, for any reason, the NAT network needs to be changed, this can
1187 be achieved with the following command:</para>
1188
1189 <screen>VBoxManage modifyvm "VM name" --natnet1 "192.168/16"</screen>
1190
1191 <para>This command would reserve the network addresses from
1192 <computeroutput>192.168.0.0</computeroutput> to
1193 <computeroutput>192.168.254.254</computeroutput> for the first NAT
1194 network instance of "VM name". The guest IP would be assigned to
1195 <computeroutput>192.168.0.15</computeroutput> and the default gateway
1196 could be found at <computeroutput>192.168.0.2</computeroutput>.</para>
1197 </sect2>
1198
1199 <sect2 id="nat-adv-tftp">
1200 <title>Configuring the boot server (next server) of a NAT network
1201 interface</title>
1202
1203 <para>For network booting in NAT mode, by default VirtualBox uses a
1204 built-in TFTP server at the IP address 10.0.2.3. This default behavior
1205 should work fine for typical remote-booting scenarios. However, it is
1206 possible to change the boot server IP and the location of the boot image
1207 with the following commands: <screen>VBoxManage modifyvm "VM name" --nattftpserver1 10.0.2.2
1208VBoxManage modifyvm "VM name" --nattftpfile1 /srv/tftp/boot/MyPXEBoot.pxe</screen></para>
1209 </sect2>
1210
1211 <sect2 id="nat-adv-settings">
1212 <title>Tuning TCP/IP buffers for NAT</title>
1213
1214 <para>The VirtualBox NAT stack performance is often determined by its
1215 interaction with the host's TCP/IP stack and the size of several buffers
1216 (<computeroutput>SO_RCVBUF</computeroutput> and
1217 <computeroutput>SO_SNDBUF</computeroutput>). For certain setups users
1218 might want to adjust the buffer size for a better performance. This can
1219 by achieved using the following commands (values are in kilobytes and
1220 can range from 8 to 1024): <screen>VBoxManage modifyvm "VM name" --natsettings1 16000,128,128,0,0</screen>
1221 This example illustrates tuning the NAT settings. The first parameter is
1222 the MTU, then the size of the socket's send buffer and the size of the
1223 socket's receive buffer, the initial size of the TCP send window, and
1224 lastly the initial size of the TCP receive window. Note that specifying
1225 zero means fallback to the default value.</para>
1226
1227 <para>Each of these buffers has a default size of 64KB and default MTU
1228 is 1500.</para>
1229 </sect2>
1230
1231 <sect2>
1232 <title>Binding NAT sockets to a specific interface</title>
1233
1234 <para>By default, VirtualBox's NAT engine will route TCP/IP packets
1235 through the default interface assigned by the host's TCP/IP stack. (The
1236 technical reason for this is that the NAT engine uses sockets for
1237 communication.) If, for some reason, you want to change this behavior,
1238 you can tell the NAT engine to bind to a particular IP address instead.
1239 Use the following command: <screen>VBoxManage modifyvm "VM name" --natbindip1 "10.45.0.2"</screen></para>
1240
1241 <para>After this, all outgoing traffic will be sent through the
1242 interface with the IP address 10.45.0.2. Please make sure that this
1243 interface is up and running prior to this assignment.</para>
1244 </sect2>
1245
1246 <sect2 id="nat-adv-dns">
1247 <title>Enabling DNS proxy in NAT mode</title>
1248
1249 <para>The NAT engine by default offers the same DNS servers to the guest
1250 that are configured on the host. In some scenarios, it can be desirable
1251 to hide the DNS server IPs from the guest, for example when this
1252 information can change on the host due to expiring DHCP leases. In this
1253 case, you can tell the NAT engine to act as DNS proxy using the
1254 following command: <screen>VBoxManage modifyvm "VM name" --natdnsproxy1 on</screen></para>
1255 </sect2>
1256
1257 <sect2 id="nat_host_resolver_proxy">
1258 <title>Using the host's resolver as a DNS proxy in NAT mode</title>
1259
1260 <para>For resolving network names, the DHCP server of the NAT engine
1261 offers a list of registered DNS servers of the host. If for some reason
1262 you need to hide this DNS server list and use the host's resolver
1263 settings, thereby forcing the VirtualBox NAT engine to intercept DNS
1264 requests and forward them to host's resolver, use the following command:
1265 <screen>VBoxManage modifyvm "VM name" --natdnshostresolver1 on</screen>
1266 Note that this setting is similar to the DNS proxy mode, however whereas
1267 the proxy mode just forwards DNS requests to the appropriate servers,
1268 the resolver mode will interpret the DNS requests and use the host's DNS
1269 API to query the information and return it to the guest.</para>
1270
1271 <sect3 id="nat_host_resolver_name_intercepting">
1272 <title>User-defined host name resolving</title>
1273 <para>In some cases it might be useful to intercept the name resolving mechanism,
1274 providing a user-defined IP address on a particular DNS request. The intercepting
1275 mechanism allows the user to map not only a single host but domains and even more
1276 complex namings conventions if required.</para>
1277 <para>
1278 The following command sets a rule for mapping a name to a specified IP:</para>
1279 <screen>VBoxManage setextradata "VM name" \
1280 "VBoxInternal/Devices/{pcnet,e1000}/0/LUN#0/Config/HostResolverMappings/ \
1281 &lt;uniq name of interception rule&gt;/HostIP" &lt;IPv4&gt;
1282VBoxManage setextradata "VM name" \
1283 "VBoxInternal/Devices/{pcnet,e1000}/0/LUN#0/Config/HostResolverMappings/ \
1284 &lt;uniq name of interception rule&gt;/HostName" &lt;name of host&gt;</screen>
1285 <para>The following command sets a rule for mapping a pattern name to a specified IP:</para>
1286 <screen>VBoxManage setextradata "VM name" \
1287 "VBoxInternal/Devices/{pcnet,e1000}/0/LUN#0/Config/HostResolverMappings/ \
1288 &lt;uniq name of interception rule&gt;/HostIP" &lt;IPv4&gt;
1289VBoxManage setextradata "VM name" \
1290 "VBoxInternal/Devices/{pcnet,e1000}/0/LUN#0/Config/HostResolverMappings/ \
1291 &lt;uniq name of interception rule&gt;/HostNamePattern" &lt;hostpattern&gt;</screen>
1292 <para>The host pattern may include <computeroutput>"|", "?" and "*"</computeroutput>.</para>
1293 <para>This example demonstrates how to instruct the host-resolver mechanism to resolve
1294 all domain and probably some mirrors of www.blocked-site.info site with IP 127.0.0.1:</para>
1295 <screen>VBoxManage setextradata "VM name" \
1296 "VBoxInternal/Devices/e1000/0/LUN#0/Config/HostResolverMappings/ \
1297 all_blocked_site/HostIP" 127.0.0.1
1298VBoxManage setextradata "VM name" \
1299 "VBoxInternal/Devices/e1000/0/LUN#0/Config/HostResolverMappings/ \
1300 all_blocked_site/HostNamePattern" "*.blocked-site.*|*.fb.org"</screen>
1301 <note><para>The host resolver mechanism should be enabled to use user-defined
1302 mapping rules (please see
1303 <xref linkend="nat_host_resolver_proxy" /> for more details).</para></note>
1304 </sect3>
1305 </sect2>
1306
1307 <sect2 id="nat-adv-alias">
1308 <title>Configuring aliasing of the NAT engine</title>
1309
1310 <para>By default, the NAT core uses aliasing and uses random ports when
1311 generating an alias for a connection. This works well for the most
1312 protocols like SSH, FTP and so on. Though some protocols might need a
1313 more transparent behavior or may depend on the real port number the
1314 packet was sent from. It is possible to change the NAT mode via the
1315 VBoxManage frontend with the following commands: <screen>VBoxManage modifyvm "VM name" --nataliasmode1 proxyonly</screen>
1316 and <screen>VBoxManage modifyvm "Linux Guest" --nataliasmode1 sameports</screen>
1317 The first example disables aliasing and switches NAT into transparent
1318 mode, the second example enforces preserving of port values. These modes
1319 can be combined if necessary.</para>
1320 </sect2>
1321 </sect1>
1322
1323 <sect1 id="changedmi">
1324 <title>Configuring the BIOS DMI information</title>
1325
1326 <para>The DMI data VirtualBox provides to guests can be changed for a
1327 specific VM. Use the following commands to configure the DMI BIOS
1328 information:</para>
1329
1330 <sect2>
1331 <title>DMI BIOS information (type 0)</title>
1332 <screen>VBoxManage setextradata "VM name"
1333 "VBoxInternal/Devices/pcbios/0/Config/DmiBIOSVendor" "BIOS Vendor"
1334VBoxManage setextradata "VM name"
1335 "VBoxInternal/Devices/pcbios/0/Config/DmiBIOSVersion" "BIOS Version"
1336VBoxManage setextradata "VM name"
1337 "VBoxInternal/Devices/pcbios/0/Config/DmiBIOSReleaseDate" "BIOS Release Date"
1338VBoxManage setextradata "VM name"
1339 "VBoxInternal/Devices/pcbios/0/Config/DmiBIOSReleaseMajor" 1
1340VBoxManage setextradata "VM name"
1341 "VBoxInternal/Devices/pcbios/0/Config/DmiBIOSReleaseMinor" 2
1342VBoxManage setextradata "VM name"
1343 "VBoxInternal/Devices/pcbios/0/Config/DmiBIOSFirmwareMajor" 3
1344VBoxManage setextradata "VM name"
1345 "VBoxInternal/Devices/pcbios/0/Config/DmiBIOSFirmwareMinor" 4</screen>
1346 </sect2>
1347 <sect2>
1348 <title>DMI system information (type 1)</title>
1349 <screen>VBoxManage setextradata "VM name"
1350 "VBoxInternal/Devices/pcbios/0/Config/DmiSystemVendor" "System Vendor"
1351VBoxManage setextradata "VM name"
1352 "VBoxInternal/Devices/pcbios/0/Config/DmiSystemProduct" "System Product"
1353VBoxManage setextradata "VM name"
1354 "VBoxInternal/Devices/pcbios/0/Config/DmiSystemVersion" "System Version"
1355VBoxManage setextradata "VM name"
1356 "VBoxInternal/Devices/pcbios/0/Config/DmiSystemSerial" "System Serial"
1357VBoxManage setextradata "VM name"
1358 "VBoxInternal/Devices/pcbios/0/Config/DmiSystemSKU" "System SKU"
1359VBoxManage setextradata "VM name"
1360 "VBoxInternal/Devices/pcbios/0/Config/DmiSystemFamily" "System Family"
1361VBoxManage setextradata "VM name"
1362 "VBoxInternal/Devices/pcbios/0/Config/DmiSystemUuid"
1363 "9852bf98-b83c-49db-a8de-182c42c7226b"</screen>
1364 </sect2>
1365 <sect2>
1366 <title>DMI board information (type 2)</title>
1367 <screen>VBoxManage setextradata "VM name"
1368 "VBoxInternal/Devices/pcbios/0/Config/DmiBoardVendor" "Board Vendor"
1369VBoxManage setextradata "VM name"
1370 "VBoxInternal/Devices/pcbios/0/Config/DmiBoardProduct" "Board Product"
1371VBoxManage setextradata "VM name"
1372 "VBoxInternal/Devices/pcbios/0/Config/DmiBoardVersion" "Board Version"
1373VBoxManage setextradata "VM name"
1374 "VBoxInternal/Devices/pcbios/0/Config/DmiBoardSerial" "Board Serial"
1375VBoxManage setextradata "VM name"
1376 "VBoxInternal/Devices/pcbios/0/Config/DmiBoardAssetTag" "Board Tag"
1377VBoxManage setextradata "VM name"
1378 "VBoxInternal/Devices/pcbios/0/Config/DmiBoardLocInChass" "Board Location"
1379VBoxManage setextradata "VM name"
1380 "VBoxInternal/Devices/pcbios/0/Config/DmiBoardType" 10</screen>
1381 </sect2>
1382 <sect2>
1383 <title>DMI system enclosure or chassis (type 3)</title>
1384 <screen>VBoxManage setextradata "VM name"
1385 "VBoxInternal/Devices/pcbios/0/Config/DmiChassisVendor" "Chassis Vendor"
1386VBoxManage setextradata "VM name"
1387 "VBoxInternal/Devices/pcbios/0/Config/DmiChassisVersion" "Chassis Version"
1388VBoxManage setextradata "VM name"
1389 "VBoxInternal/Devices/pcbios/0/Config/DmiChassisSerial" "Chassis Serial"
1390VBoxManage setextradata "VM name"
1391 "VBoxInternal/Devices/pcbios/0/Config/DmiChassisAssetTag" "Chassis Tag"</screen>
1392 </sect2>
1393 <sect2>
1394 <title>DMI processor informatiion (type 4)</title>
1395 <screen>VBoxManage setextradata "VM name"
1396 "VBoxInternal/Devices/pcbios/0/Config/DmiProcManufacturer" "GenuineIntel"
1397VBoxManage setextradata "VM name"
1398 "VBoxInternal/Devices/pcbios/0/Config/DmiProcVersion" "Pentium(R) III"</screen>
1399 </sect2>
1400 <sect2>
1401 <title>DMI OEM strings (type 11)</title>
1402 <screen>VBoxManage setextradata "VM name"
1403 "VBoxInternal/Devices/pcbios/0/Config/DmiOEMVBoxVer" "vboxVer_1.2.3"
1404VBoxManage setextradata "VM name"
1405 "VBoxInternal/Devices/pcbios/0/Config/DmiOEMVBoxRev" "vboxRev_12345"</screen>
1406 </sect2>
1407 <para>If a DMI string is not set, the default value of VirtualBox is used.
1408 To set an empty string use
1409 <computeroutput>"&lt;EMPTY&gt;"</computeroutput>.</para>
1410
1411 <para>Note that in the above list, all quoted parameters (DmiBIOSVendor,
1412 DmiBIOSVersion but not DmiBIOSReleaseMajor) are expected to be strings. If
1413 such a string is a valid number, the parameter is treated as number and
1414 the VM will most probably refuse to start with an
1415 <computeroutput>VERR_CFGM_NOT_STRING</computeroutput> error. In that case,
1416 use <computeroutput>"string:&lt;value&gt;"</computeroutput>, for instance
1417 <screen>VBoxManage setextradata "VM name"
1418 "VBoxInternal/Devices/pcbios/0/Config/DmiSystemSerial" "string:1234"</screen></para>
1419
1420 <para>Changing this information can be necessary to provide the DMI
1421 information of the host to the guest to prevent Windows from asking for a
1422 new product key. On Linux hosts the DMI BIOS information can be obtained
1423 with <screen>dmidecode -t0</screen>and the DMI system information can be
1424 obtained with <screen>dmidecode -t1</screen></para>
1425 </sect1>
1426
1427 <sect1 id="changeacpicust">
1428 <title>Configuring the custom ACPI table</title>
1429
1430 <para>VirtualBox can be configured to present an custom ACPI table to
1431 the guest. Use the following command to configure this:</para>
1432
1433 <screen>VBoxManage setextradata "VM name"
1434 "VBoxInternal/Devices/acpi/0/Config/CustomTable" "/path/to/table.bin"</screen>
1435
1436 <para>Configuring a custom ACPI table can prevent Windows
1437 Vista and Windows 7 from asking for a new product key. On Linux hosts,
1438 one of the host tables can be read from
1439 <filename>/sys/firmware/acpi/tables/</filename>.</para>
1440 </sect1>
1441
1442 <sect1>
1443 <title>Fine-tuning timers and time synchronization</title>
1444
1445 <sect2 id="changetscmode">
1446 <title>Configuring the guest time stamp counter (TSC) to reflect guest
1447 execution</title>
1448
1449 <para>By default, VirtualBox keeps all sources of time visible to the
1450 guest synchronized to a single time source, the monotonic host time.
1451 This reflects the assumptions of many guest operating systems, which
1452 expect all time sources to reflect "wall clock" time. In special
1453 circumstances it may be useful however to make the TSC (time stamp
1454 counter) in the guest reflect the time actually spent executing the
1455 guest.</para>
1456
1457 <para>This special TSC handling mode can be enabled on a per-VM basis,
1458 and for best results must be used only in combination with hardware
1459 virtualization. To enable this mode use the following command:</para>
1460
1461 <screen>VBoxManage setextradata "VM name" "VBoxInternal/TM/TSCTiedToExecution" 1</screen>
1462
1463 <para>To revert to the default TSC handling mode use:</para>
1464
1465 <screen>VBoxManage setextradata "VM name" "VBoxInternal/TM/TSCTiedToExecution"</screen>
1466
1467 <para>Note that if you use the special TSC handling mode with a guest
1468 operating system which is very strict about the consistency of time
1469 sources you may get a warning or error message about the timing
1470 inconsistency. It may also cause clocks to become unreliable with some
1471 guest operating systems depending on how they use the TSC.</para>
1472 </sect2>
1473
1474 <sect2 id="warpguest">
1475 <title>Accelerate or slow down the guest clock</title>
1476
1477 <para>For certain purposes it can be useful to accelerate or to slow
1478 down the (virtual) guest clock. This can be achieved as follows:</para>
1479
1480 <screen>VBoxManage setextradata "VM name" "VBoxInternal/TM/WarpDrivePercentage" 200</screen>
1481
1482 <para>The above example will double the speed of the guest clock
1483 while</para>
1484
1485 <screen>VBoxManage setextradata "VM name" "VBoxInternal/TM/WarpDrivePercentage" 50</screen>
1486
1487 <para>will halve the speed of the guest clock. Note that changing the
1488 rate of the virtual clock can confuse the guest and can even lead to
1489 abnormal guest behavior. For instance, a higher clock rate means shorter
1490 timeouts for virtual devices with the result that a slightly increased
1491 response time of a virtual device due to an increased host load can
1492 cause guest failures. Note further that any time synchronization
1493 mechanism will frequently try to resynchronize the guest clock with the
1494 reference clock (which is the host clock if the VirtualBox Guest
1495 Additions are active). Therefore any time synchronization should be
1496 disabled if the rate of the guest clock is changed as described above
1497 (see <xref linkend="changetimesync" />).</para>
1498 </sect2>
1499
1500 <sect2 id="changetimesync">
1501 <title>Tuning the Guest Additions time synchronization
1502 parameters</title>
1503
1504 <para>The VirtualBox Guest Additions ensure that the guest's system time
1505 is synchronized with the host time. There are several parameters which
1506 can be tuned. The parameters can be set for a specific VM using the
1507 following command:</para>
1508
1509 <screen>VBoxManage guestproperty set "VM name" "/VirtualBox/GuestAdd/VBoxService/PARAMETER" VALUE</screen>
1510
1511 <para>where <computeroutput>PARAMETER</computeroutput> is one of the
1512 following:</para>
1513
1514 <para><glosslist>
1515 <glossentry>
1516 <glossterm><computeroutput>--timesync-interval</computeroutput></glossterm>
1517
1518 <glossdef>
1519 <para>Specifies the interval at which to synchronize the time
1520 with the host. The default is 10000 ms (10 seconds).</para>
1521 </glossdef>
1522 </glossentry>
1523
1524 <glossentry>
1525 <glossterm><computeroutput>--timesync-min-adjust</computeroutput></glossterm>
1526
1527 <glossdef>
1528 <para>The minimum absolute drift value measured in milliseconds
1529 to make adjustments for. The default is 1000 ms on OS/2 and 100
1530 ms elsewhere.</para>
1531 </glossdef>
1532 </glossentry>
1533
1534 <glossentry>
1535 <glossterm><computeroutput>--timesync-latency-factor</computeroutput></glossterm>
1536
1537 <glossdef>
1538 <para>The factor to multiply the time query latency with to
1539 calculate the dynamic minimum adjust time. The default is 8
1540 times, that means in detail: Measure the time it takes to
1541 determine the host time (the guest has to contact the VM host
1542 service which may take some time), multiply this value by 8 and
1543 do an adjustment only if the time difference between host and
1544 guest is bigger than this value. Don't do any time adjustment
1545 otherwise.</para>
1546 </glossdef>
1547 </glossentry>
1548
1549 <glossentry>
1550 <glossterm><computeroutput>--timesync-max-latency</computeroutput></glossterm>
1551
1552 <glossdef>
1553 <para>The max host timer query latency to accept. The default is
1554 250 ms.</para>
1555 </glossdef>
1556 </glossentry>
1557
1558 <glossentry>
1559 <glossterm><computeroutput>--timesync-set-threshold</computeroutput></glossterm>
1560
1561 <glossdef>
1562 <para>The absolute drift threshold, given as milliseconds where
1563 to start setting the time instead of trying to smoothly adjust
1564 it. The default is 20 minutes.</para>
1565 </glossdef>
1566 </glossentry>
1567
1568 <glossentry>
1569 <glossterm><computeroutput>--timesync-set-start</computeroutput></glossterm>
1570
1571 <glossdef>
1572 <para>Set the time when starting the time sync service.</para>
1573 </glossdef>
1574 </glossentry>
1575
1576 <glossentry>
1577 <glossterm><computeroutput>--timesync-set-on-restore
1578 0|1</computeroutput></glossterm>
1579
1580 <glossdef>
1581 <para>Set the time after the VM was restored from a saved state
1582 when passing 1 as parameter (default). Disable by passing 0. In
1583 the latter case, the time will be adjusted smoothly which can
1584 take a long time.</para>
1585 </glossdef>
1586 </glossentry>
1587 </glosslist></para>
1588
1589 <para>All these parameters can be specified as command line parameters
1590 to VBoxService as well.</para>
1591 </sect2>
1592
1593 <sect2 id="disabletimesync">
1594
1595 <title>Disabling the Guest Additions time synchronization</title>
1596
1597 <para>Once installed and started, the VirtualBox Guest Additions will
1598 try to synchronize the guest time with the host time. This can be
1599 prevented by forbidding the guest service from reading the host
1600 clock:</para>
1601
1602 <screen>VBoxManage setextradata "VM name" "VBoxInternal/Devices/VMMDev/0/Config/GetHostTimeDisabled" 1</screen>
1603
1604 </sect2>
1605
1606 </sect1>
1607
1608 <sect1 id="vboxbowsolaris11">
1609 <title>Installing the alternate bridged networking driver on Solaris 11
1610 hosts</title>
1611
1612 <para>Starting with VirtualBox 4.1, VirtualBox ships a new network filter
1613 driver that utilizes Solaris 11's Crossbow functionality. By default, this
1614 new driver is installed for Solaris 11 hosts (builds 159 and above) that
1615 has support for it.</para>
1616
1617 <para>To force installation of the older STREAMS based network filter
1618 driver, execute as root the following command before installing the
1619 VirtualBox package:</para>
1620
1621 <screen>touch /etc/vboxinst_vboxflt</screen>
1622
1623 <para>To force installation of the Crossbow based network filter driver,
1624 execute as root the following command before installing the VirtualBox
1625 package:</para>
1626
1627 <screen>touch /etc/vboxinst_vboxbow</screen>
1628
1629 <para>To check which driver is currently being used by VirtualBox,
1630 execute:</para>
1631
1632 <screen>modinfo | grep vbox</screen>
1633
1634 <para>If the output contains "vboxbow", it indicates VirtualBox is using
1635 the Crossbow network filter driver, while the name "vboxflt" indicates
1636 usage of the older STREAMS network filter.</para>
1637 </sect1>
1638
1639 <sect1 id="vboxbowvnictemplates">
1640 <title>VirtualBox VNIC templates for VLANs on Solaris 11 hosts</title>
1641
1642 <para>VirtualBox supports VNIC (Virtual Network Interface) templates for
1643 configuring VMs over VLANs.<footnote>
1644 <para>Support for Crossbow based bridged networking was introduced
1645 with VirtualBox 4.1 and requires Solaris 11 build 159 or above.</para>
1646 </footnote> A VirtualBox VNIC template is a VNIC whose name starts with
1647 "vboxvnic_template".</para>
1648
1649 <para>Here is an example of how to use a VNIC template to configure a VLAN
1650 for VMs. Create a VirtualBox VNIC template, by executing as root:</para>
1651
1652 <screen>dladm create-vnic -t -l nge0 -v 23 vboxvnic_template0
1653</screen>
1654
1655 <para>This will create a temporary VNIC over interface "nge0" with the
1656 VLAN ID 23. To create VNIC templates that are persistent across host
1657 reboots, skip the <computeroutput>-t</computeroutput> parameter in the
1658 above command. You may check the current state of links using:</para>
1659
1660 <para><screen>$ dladm show-link
1661LINK CLASS MTU STATE BRIDGE OVER
1662nge0 phys 1500 up -- --
1663nge1 phys 1500 down -- --
1664vboxvnic_template0 vnic 1500 up -- nge0
1665
1666$ dladm show-vnic
1667LINK OVER SPEED MACADDRESS MACADDRTYPE VID
1668vboxvnic_template0 nge0 1000 2:8:20:25:12:75 random 23
1669</screen></para>
1670
1671 <para>Once the VNIC template is created, all VMs that need to be part of
1672 VLAN 23 over the physical interface "nge0" can use the same VNIC template.
1673 This makes managing VMs on VLANs simpler and efficient, as the VLAN
1674 details are not stored as part of every VM's configuration but rather
1675 picked from the VNIC template which can be modified anytime using
1676 <computeroutput>dladm</computeroutput>. Apart from the VLAN ID, VNIC
1677 templates can be created with additional properties such as bandwidth
1678 limits, CPU fanout etc. Refer to your Solaris network documentation on how
1679 to accomplish this. These additional properties, if any, are also applied
1680 to VMs which use the VNIC template.</para>
1681 </sect1>
1682
1683 <sect1 id="addhostonlysolaris">
1684 <title>Configuring multiple host-only network interfaces on Solaris
1685 hosts</title>
1686
1687 <para>By default VirtualBox provides you with one host-only network
1688 interface. Adding more host-only network interfaces on Solaris hosts
1689 requires manual configuration. Here's how to add two more host-only
1690 network interfaces.</para>
1691
1692 <para>You first need to stop all running VMs and unplumb all existing
1693 "vboxnet" interfaces. Execute the following commands as root:</para>
1694
1695 <screen>ifconfig vboxnet0 unplumb</screen>
1696
1697 <para>Once you make sure all vboxnet interfaces are unplumbed, remove the
1698 driver using:</para>
1699
1700 <para><screen>rem_drv vboxnet</screen>then edit the file
1701 <computeroutput>/platform/i86pc/kernel/drv/vboxnet.conf</computeroutput>
1702 and add a line for the new interfaces:</para>
1703
1704 <para><screen>name="vboxnet" parent="pseudo" instance=1;
1705name="vboxnet" parent="pseudo" instance=2;</screen>Add as many of these lines
1706 as required and make sure "instance" number is uniquely incremented. Next
1707 reload the vboxnet driver using:</para>
1708
1709 <para><screen>add_drv vboxnet</screen>Now plumb all the interfaces using
1710 <computeroutput>ifconfig vboxnetX plumb</computeroutput> (where X can be
1711 0, 1 or 2 in this case) and once plumbed you can then configure the
1712 interface like any other network interface.</para>
1713
1714 <para>To make your newly added interfaces' settings persistent across
1715 reboots you will need to edit the files
1716 <computeroutput>/etc/netmasks</computeroutput>, and if you are using NWAM
1717 <computeroutput>/etc/nwam/llp</computeroutput> and add the appropriate
1718 entries to set the netmask and static IP for each of those interfaces. The
1719 VirtualBox installer only updates these configuration files for the one
1720 "vboxnet0" interface it creates by default.</para>
1721 </sect1>
1722
1723 <sect1 id="solariscodedumper">
1724 <title>Configuring the VirtualBox CoreDumper on Solaris hosts</title>
1725
1726 <para>VirtualBox is capable of producing its own core files for extensive
1727 debugging when things go wrong. Currently this is only available on
1728 Solaris hosts.</para>
1729
1730 <para>The VirtualBox CoreDumper can be enabled using the following
1731 command:</para>
1732
1733 <para><screen>VBoxManage setextradata "VM name" VBoxInternal2/CoreDumpEnabled 1</screen></para>
1734
1735 <para>You can specify which directory to use for core dumps with this
1736 command:</para>
1737
1738 <para><screen>VBoxManage setextradata "VM name" VBoxInternal2/CoreDumpDir &lt;path-to-directory&gt;</screen>Make
1739 sure the directory you specify is on a volume with sufficient free space
1740 and that the VirtualBox process has sufficient permissions to write files
1741 to this directory. If you skip this command and don't specify any core
1742 dump directory, the current directory of the VirtualBox executable will be
1743 used (which would most likely fail when writing cores as they are
1744 protected with root permissions). It is recommended you explicitly set a
1745 core dump directory.</para>
1746
1747 <para>You must specify when the VirtualBox CoreDumper should be triggered.
1748 This is done using the following commands:</para>
1749
1750 <para><screen>VBoxManage setextradata "VM name" VBoxInternal2/CoreDumpReplaceSystemDump 1
1751VBoxManage setextradata "VM name" VBoxInternal2/CoreDumpLive 1</screen>At
1752 least one of the above two commands will have to be provided if you have
1753 enabled the VirtualBox CoreDumper.</para>
1754
1755 <para>Setting <computeroutput>CoreDumpReplaceSystemDump</computeroutput>
1756 sets up the VM to override the host's core dumping mechanism and in the
1757 event of any crash only the VirtualBox CoreDumper would produce the core
1758 file.</para>
1759
1760 <para>Setting <computeroutput>CoreDumpLive</computeroutput> sets up the VM
1761 to produce cores whenever the VM process receives a
1762 <computeroutput>SIGUSR2</computeroutput> signal. After producing the core
1763 file, the VM will not be terminated and will continue to run. You can thus
1764 take cores of the VM process using:</para>
1765
1766 <para><screen>kill -s SIGUSR2 &lt;VM-process-id&gt;</screen></para>
1767
1768 <para>Core files produced by the VirtualBox CoreDumper are of the form
1769 <computeroutput>core.vb.&lt;ProcessName&gt;.&lt;ProcessID&gt;</computeroutput>,
1770 for example <computeroutput>core.vb.VBoxHeadless.11321</computeroutput>.</para>
1771 </sect1>
1772
1773 <sect1 id="guitweaks">
1774 <title>Locking down the VirtualBox manager GUI</title>
1775
1776 <sect2>
1777 <title>GUI customization</title>
1778
1779 <para>There are several advanced customization settings for locking down
1780 the VirtualBox manager, that is, removing some features that the user
1781 should not see.</para>
1782
1783 <para><screen>VBoxManage setextradata global GUI/Customizations OPTION[,OPTION...]</screen></para>
1784
1785 <para>where <computeroutput>OPTION</computeroutput> is one of the
1786 following keywords:<glosslist>
1787 <glossentry>
1788 <glossterm><computeroutput>noSelector</computeroutput></glossterm>
1789
1790 <glossdef>
1791 <para>Don't allow to start the VirtualBox manager. Trying to do so
1792 will show a window containing a proper error message.</para>
1793 </glossdef>
1794 </glossentry>
1795
1796 <glossentry>
1797 <glossterm><computeroutput>noMenuBar</computeroutput></glossterm>
1798
1799 <glossdef>
1800 <para>VM windows will not contain a menu bar.</para>
1801 </glossdef>
1802 </glossentry>
1803
1804 <glossentry>
1805 <glossterm><computeroutput>noStatusBar</computeroutput></glossterm>
1806
1807 <glossdef>
1808 <para>VM windows will not contain a status bar.</para>
1809 </glossdef>
1810 </glossentry>
1811 </glosslist></para>
1812
1813 <para>To disable any GUI customization do <screen>VBoxManage setextradata global GUI/Customizations</screen></para>
1814 </sect2>
1815
1816 <sect2>
1817 <title>Host Key customization</title>
1818
1819 <para>To disable all host key combinations, open the preferences and
1820 change the host key to <emphasis>None</emphasis>. This might be useful
1821 when using VirtualBox in a kiosk mode.</para>
1822
1823 <para>To redefine or disable certain host key actions, use the following command:</para>
1824
1825 <screen>VBoxManage setextradata global GUI/Input/MachineShortcuts "FullscreenMode=F,...."</screen>
1826
1827 <para>The following list shows the possible host key actions together with their default
1828 host key shortcut. Setting an action to <emphasis>None</emphasis> will disable
1829 that host key action.</para>
1830 <table>
1831 <title>ignoreme</title>
1832 <tgroup cols="3">
1833 <tbody>
1834 <row>
1835 <entry><emphasis role="bold">Action</emphasis></entry>
1836 <entry><emphasis role="bold">Default Host Key</emphasis></entry>
1837 <entry><emphasis role="bold">Action</emphasis></entry>
1838 </row>
1839 <row>
1840 <entry>SettingsDialog</entry>
1841 <entry>S</entry>
1842 <entry>open the VM settings dialog</entry>
1843 </row>
1844 <row>
1845 <entry>TakeSnapshot</entry>
1846 <entry>S</entry>
1847 <entry>take a snapshot</entry>
1848 </row>
1849 <row>
1850 <entry>InformationsDialog</entry>
1851 <entry>N</entry>
1852 <entry>show the VM information dialog</entry>
1853 </row>
1854 <row>
1855 <entry>MouseIntegration</entry>
1856 <entry>I</entry>
1857 <entry>toggle mouse integration</entry>
1858 </row>
1859 <row>
1860 <entry>TypeCAD</entry>
1861 <entry>Del</entry>
1862 <entry>inject Ctrl+Alt+Del</entry>
1863 </row>
1864 <row>
1865 <entry>TypeCABS</entry>
1866 <entry>Backspace</entry>
1867 <entry>inject Ctrl+Alt+Backspace</entry>
1868 </row>
1869 <row>
1870 <entry>Pause</entry>
1871 <entry>P</entry>
1872 <entry>Pause the VM</entry>
1873 </row>
1874 <row>
1875 <entry>Reset</entry>
1876 <entry>R</entry>
1877 <entry>(hard) reset the guest</entry>
1878 </row>
1879 <row>
1880 <entry>Shutdown</entry>
1881 <entry>H</entry>
1882 <entry>press the ACPI power button</entry>
1883 </row>
1884 <row>
1885 <entry>Close</entry>
1886 <entry>Q</entry>
1887 <entry>show the VM close dialog</entry>
1888 </row>
1889 <row>
1890 <entry>FullscreenMode</entry>
1891 <entry>F</entry>
1892 <entry>switch the VM into fullscreen</entry>
1893 </row>
1894 <row>
1895 <entry>SeamlessMode</entry>
1896 <entry>L</entry>
1897 <entry>switch the VM into seamless mode</entry>
1898 </row>
1899 <row>
1900 <entry>ScaleMode</entry>
1901 <entry>C</entry>
1902 <entry>switch the VM into scale mode</entry>
1903 </row>
1904 <row>
1905 <entry>PopupMenu</entry>
1906 <entry>Home</entry>
1907 <entry>show popup menu in fullscreen / seamless mode</entry>
1908 </row>
1909 </tbody>
1910 </tgroup>
1911 </table>
1912
1913 <para>To disable the fullscreen mode as well as the seamless mode, use the following command:
1914 <screen>VBoxManage setextradata global GUI/Input/MachineShortcuts "FullscreenMode=None,SeamlessMode=None"</screen>
1915 </para>
1916
1917 </sect2>
1918 <sect2>
1919 <title>Action when terminating the VM</title>
1920
1921 <para>You can disallow certain actions when terminating a VM. To disallow specific actions, type:</para>
1922
1923 <para><screen>VBoxManage setextradata "VM name" GUI/RestrictedCloseActions OPTION[,OPTION...]</screen></para>
1924
1925 <para>where <computeroutput>OPTION</computeroutput> is one of the
1926 following keywords:<glosslist>
1927 <glossentry>
1928 <glossterm><computeroutput>SaveState</computeroutput></glossterm>
1929
1930 <glossdef>
1931 <para>Don't allow the user to save the VM state when terminating
1932 the VM.</para>
1933 </glossdef>
1934 </glossentry>
1935
1936 <glossentry>
1937 <glossterm><computeroutput>Shutdown</computeroutput></glossterm>
1938
1939 <glossdef>
1940 <para>Don't allow the user to shutdown the VM by sending the ACPI
1941 power-off event to the guest.</para>
1942 </glossdef>
1943 </glossentry>
1944
1945 <glossentry>
1946 <glossterm><computeroutput>PowerOff</computeroutput></glossterm>
1947
1948 <glossdef>
1949 <para>Don't allow the user to power off the VM.</para>
1950 </glossdef>
1951 </glossentry>
1952
1953 <glossentry>
1954 <glossterm><computeroutput>Restore</computeroutput></glossterm>
1955
1956 <glossdef>
1957 <para>Don't allow the user to return to the last snapshot when
1958 powering off the VM.</para>
1959 </glossdef>
1960 </glossentry>
1961 </glosslist></para>
1962
1963 <para>Any combination of the above is allowed. If all options are
1964 specified, the VM cannot be shut down at all.</para>
1965 </sect2>
1966 </sect1>
1967
1968 <sect1 id="vboxwebsrv-daemon">
1969 <title>Starting the VirtualBox web service automatically</title>
1970
1971 <para>The VirtualBox web service
1972 (<computeroutput>vboxwebsrv</computeroutput>) is used for controlling
1973 VirtualBox remotely. It is documented in detail in the VirtualBox Software
1974 Development Kit (SDK); please see <xref linkend="VirtualBoxAPI" />. As the
1975 client base using this interface is growing, we added start scripts for
1976 the various operation systems we support. The following sections describe
1977 how to use them. The VirtualBox web service is never started automatically
1978 as a result of a standard installation.</para>
1979
1980 <sect2 id="vboxwebsrv-linux">
1981 <title>Linux: starting the webservice via <computeroutput>init</computeroutput></title>
1982
1983 <para>On Linux, the web service can be automatically started during
1984 host boot by adding appropriate parameters to the file
1985 <computeroutput>/etc/default/virtualbox</computeroutput>.
1986 There is one mandatory parameter, <computeroutput>VBOXWEB_USER</computeroutput>,
1987 which must be set to the user which will later start the VMs. The
1988 parameters in the table below all start with <computeroutput>VBOXWEB_</computeroutput>
1989 (<computeroutput>VBOXWEB_HOST</computeroutput>,
1990 <computeroutput>VBOXWEB_PORT</computeroutput> etc.):
1991 <table>
1992 <title>ignored</title>
1993 <tgroup cols="3">
1994 <tbody>
1995 <row>
1996 <entry><emphasis role="bold">Parameter</emphasis></entry>
1997 <entry><emphasis role="bold">Description</emphasis></entry>
1998 <entry><emphasis role="bold">Default</emphasis></entry>
1999 </row>
2000 <row>
2001 <entry>USER</entry>
2002 <entry>The user as which the web service runs</entry>
2003 <entry></entry>
2004 </row>
2005 <row>
2006 <entry>HOST</entry>
2007 <entry>The host to bind the web service to</entry>
2008 <entry>localhost</entry>
2009 </row>
2010 <row>
2011 <entry>PORT</entry>
2012 <entry>The port to bind the web service to</entry>
2013 <entry>18083</entry>
2014 </row>
2015 <row>
2016 <entry>SSL_KEYFILE</entry>
2017 <entry>Server key and certificate file, PEM format</entry>
2018 <entry></entry>
2019 </row>
2020 <row>
2021 <entry>SSL_PASSWORDFILE</entry>
2022 <entry>File name for password to server key</entry>
2023 <entry></entry>
2024 </row>
2025 <row>
2026 <entry>SSL_CACERT</entry>
2027 <entry>CA certificate file, PEM format</entry>
2028 <entry></entry>
2029 </row>
2030 <row>
2031 <entry>SSL_CAPATH</entry>
2032 <entry>CA certificate path</entry>
2033 <entry></entry>
2034 </row>
2035 <row>
2036 <entry>SSL_DHFILE</entry>
2037 <entry>DH file name or DH key length in bits</entry>
2038 <entry></entry>
2039 </row>
2040 <row>
2041 <entry>SSL_RANDFILE</entry>
2042 <entry>File containing seed for random number generator</entry>
2043 <entry></entry>
2044 </row>
2045 <row>
2046 <entry>TIMEOUT</entry>
2047 <entry>Session timeout in seconds; 0 disables timeouts</entry>
2048 <entry>300</entry>
2049 </row>
2050 <row>
2051 <entry>CHECK_INTERVAL</entry>
2052 <entry>Frequency of timeout checks in seconds</entry>
2053 <entry>5</entry>
2054 </row>
2055 <row>
2056 <entry>THREADS</entry>
2057 <entry>Maximum number of worker threads to run in parallel</entry>
2058 <entry>100</entry>
2059 </row>
2060 <row>
2061 <entry>KEEPALIVE</entry>
2062 <entry>Maximum number of requests before a socket will be closed</entry>
2063 <entry>100</entry>
2064 </row>
2065 <row>
2066 <entry>ROTATE</entry>
2067 <entry>Number of log files; 0 disables log rotation</entry>
2068 <entry>10</entry>
2069 </row>
2070 <row>
2071 <entry>LOGSIZE</entry>
2072 <entry>Maximum size of a log file in bytes to trigger rotation</entry>
2073 <entry>1MB</entry>
2074 </row>
2075 <row>
2076 <entry>LOGINTERVAL</entry>
2077 <entry>Maximum time interval in seconds to trigger log rotation</entry>
2078 <entry>1 day</entry>
2079 </row>
2080 </tbody>
2081 </tgroup>
2082 </table>
2083 </para>
2084
2085 <para>Setting the parameter <computeroutput>SSL_KEYFILE</computeroutput>
2086 enables the SSL/TLS support. Using encryption is strongly encouraged, as
2087 otherwise everything (including passwords) is transferred in clear
2088 text.</para>
2089 </sect2>
2090
2091 <sect2 id="vboxwebsrv-solaris">
2092 <title>Solaris: starting the web service via SMF</title>
2093
2094 <para>On Solaris hosts, the VirtualBox web service daemon is
2095 integrated into the SMF framework. You can change the parameters, but
2096 don't have to if the defaults below already match your needs:<screen>svccfg -s svc:/application/virtualbox/webservice:default setprop config/host=localhost
2097svccfg -s svc:/application/virtualbox/webservice:default setprop config/port=18083
2098svccfg -s svc:/application/virtualbox/webservice:default setprop config/user=root</screen></para>
2099
2100 <para>The table in the previous section showing the parameter names and
2101 defaults also applies to Solaris. The parameter names must be changed
2102 to lowercase and a prefix of <computeroutput>config/</computeroutput>
2103 has to be added, e.g. <computeroutput>config/user</computeroutput> or
2104 <computeroutput>config/ssl_keyfile</computeroutput>. If you made any
2105 change, don't forget to run the following command to put the changes into
2106 effect immediately:<screen>svcadm refresh svc:/application/virtualbox/webservice:default</screen></para>
2107
2108 <para>If you forget the above command then the previous settings will
2109 be used when enabling the service. Check the current property settings
2110 with:<screen>svcprop -p config svc:/application/virtualbox/webservice:default</screen></para>
2111
2112 <para>When everything is configured correctly you can start the
2113 VirtualBox web service with the following command:<screen>svcadm enable svc:/application/virtualbox/webservice:default</screen></para>
2114
2115 <para>For more information about SMF, please refer to the Solaris
2116 documentation.</para>
2117 </sect2>
2118
2119 <sect2 id="vboxwebsrv-osx">
2120 <title>Mac OS X: starting the webservice via launchd</title>
2121
2122 <para>On Mac OS X, launchd is used to start the VirtualBox webservice. An
2123 example configuration file can be found in
2124 <computeroutput>$HOME/Library/LaunchAgents/org.virtualbox.vboxwebsrv.plist</computeroutput>.
2125 It can be enabled by changing the
2126 <computeroutput>Disabled</computeroutput> key from
2127 <computeroutput>true</computeroutput> to
2128 <computeroutput>false</computeroutput>. To manually start the
2129 service use the following command: <screen>launchctl load ~/Library/LaunchAgents/org.virtualbox.vboxwebsrv.plist</screen>
2130 For additional information on how launchd services could be
2131 configured see <literal><ulink
2132 url="http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPSystemStartup/BPSystemStartup.html">http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPSystemStartup/BPSystemStartup.html</ulink></literal>.</para>
2133 </sect2>
2134 </sect1>
2135
2136 <sect1 id="vboxwatchdog">
2137 <title>VirtualBox Watchdog</title>
2138 <para>Starting with VirtualBox 4.2 the memory ballooning service formerly
2139 known as <computeroutput>VBoxBalloonCtrl</computeroutput> was renamed to
2140 VBoxWatchdog, which now incorporates several host services that are meant
2141 to be run in a server environment.</para>
2142
2143 <para>These services are: <itemizedlist>
2144 <listitem>
2145 <para>Memory ballooning control, which automatically takes care of
2146 a VM's configured memory balloon (see <xref linkend="guestadd-balloon" />
2147 for an introduction to memory ballooning). This especially is useful
2148 for server environments where VMs may dynamically require more or
2149 less memory during runtime.</para>
2150
2151 <para>The service periodically checks a VM's current memory balloon
2152 and its free guest RAM and automatically adjusts the current memory
2153 balloon by inflating or deflating it accordingly. This handling only
2154 applies to running VMs having recent Guest Additions installed.</para>
2155 </listitem>
2156 <listitem>
2157 <para>Host isolation detection, which provides a way to detect whether
2158 the host cannot reach the specific VirtualBox server instance anymore
2159 and take appropriate actions, such as shutting down, saving the
2160 current state or even powering down certain VMs.</para>
2161 </listitem>
2162 </itemizedlist></para>
2163
2164 <para>
2165 All configuration values can be either specified via command line or global
2166 extradata, whereas command line values always have a higher priority when set.
2167 Some of the configuration values also be be specified on a per-VM basis. So
2168 the overall lookup order is: command line, per-VM basis extradata (if available),
2169 global extradata.
2170 </para>
2171
2172 <sect2 id="vboxwatchdog-ballonctrl">
2173 <title>Memory ballooning control</title>
2174 <para>The memory ballooning control inflates and deflates the memory balloon
2175 of VMs based on the VMs free memory and the desired maximum balloon size.</para>
2176
2177 <para>To set up the memory ballooning control the maximum ballooning size a
2178 VM can reach needs to be set. This can be specified via command line with
2179 <screen>--balloon-max &lt;Size in MB&gt;</screen>, on a per-VM basis extradata value with
2180 <screen>VBoxManage setextradata &lt;VM-Name&gt; VBoxInternal2/Watchdog/BalloonCtrl/BalloonSizeMax &lt;Size in MB&gt;</screen>
2181 or using a global extradata value with
2182 <screen>VBoxManage setextradata global VBoxInternal2/Watchdog/BalloonCtrl/BalloonSizeMax &lt;Size in MB&gt;</screen>
2183 <note><para>If no maximum ballooning size is specified by at least one of
2184 the parameters above, no ballooning will be performed at all.</para></note>
2185 </para>
2186
2187 <para>Setting the ballooning increment in MB can be either done via
2188 command line with
2189 <screen>--balloon-inc &lt;Size in MB&gt;</screen> or using a global
2190 extradata value with
2191 <screen>VBoxManage setextradata global VBoxInternal2/Watchdog/BalloonCtrl/BalloonIncrementMB &lt;Size in MB&gt;</screen>
2192 Default ballooning increment is 256 MB if not specified.</para>
2193
2194 <para>Same goes with the ballooning decrement: Via command line with
2195 <screen>--balloon-dec &lt;Size in MB&gt;</screen> or using a global
2196 extradata value with
2197 <screen>VBoxManage setextradata global VBoxInternal2/Watchdog/BalloonCtrl/BalloonDecrementMB &lt;Size in MB&gt;</screen>
2198 Default ballooning decrement is 128 MB if not specified.</para>
2199
2200 <para>To define the lower limit in MB a balloon can be the command line with
2201 <screen>--balloon-lower-limit &lt;Size in MB&gt;</screen> can be used or using a global
2202 extradata value with
2203 <screen>VBoxManage setextradata global VBoxInternal2/Watchdog/BalloonCtrl/BalloonLowerLimitMB &lt;Size in MB&gt;</screen>
2204 is available. Default lower limit is 128 if not specified.</para>
2205 </sect2>
2206
2207 <sect2 id="vboxwatchdog-hostisln">
2208 <title>Host isolation detection</title>
2209 <para>To detect whether a host is being isolated, that is, the host cannot
2210 reach the VirtualBox server instance anymore, the host needs to set an
2211 alternating value to a global extradata value within a time period. If
2212 this value is not set within that time period a timeout occurred and the
2213 so-called host isolation response will be performed to the VMs handled.
2214 Which VMs are handled can be controlled by defining VM groups and assigning
2215 VMs to those groups. By default no groups are set, meaning that all VMs
2216 on the server will be handled when no host response is received within
2217 30 seconds.</para>
2218
2219 <para>To set the groups handled by the host isolation detection via
2220 command line:
2221 <screen>--apimon-groups=&lt;string[,stringN]&gt;</screen> or using a global
2222 extradata value with
2223 <screen>VBoxManage setextradata global VBoxInternal2/Watchdog/APIMonitor/Groups &lt;string[,stringN]&gt;</screen>
2224 </para>
2225
2226 <para>To set the host isolation timeout via command line:
2227 <screen>--apimon-isln-timeout=&lt;ms&gt;</screen> or using a global
2228 extradata value with
2229 <screen>VBoxManage setextradata global VBoxInternal2/Watchdog/APIMonitor/IsolationTimeoutMS &lt;ms&gt;</screen>
2230 </para>
2231
2232 <para>To set the actual host isolation response via command line:
2233 <screen>--apimon-isln-response=&lt;cmd&gt;</screen> or using a global
2234 extradata value with
2235 <screen>VBoxManage setextradata global VBoxInternal2/Watchdog/APIMonitor/IsolationResponse &lt;cmd&gt;</screen>
2236 The following response commands are available:
2237 <itemizedlist>
2238 <listitem>
2239 <para><computeroutput>none</computeroutput>, which does nothing.</para>
2240 </listitem>
2241 <listitem>
2242 <para><computeroutput>pause</computeroutput>, which pauses the
2243 execution of a VM.</para>
2244 </listitem>
2245 <listitem>
2246 <para><computeroutput>poweroff</computeroutput>, which shuts down
2247 the VM by pressing the virtual power button. The VM will not have
2248 the chance of saving any data or veto the shutdown process.</para>
2249 </listitem>
2250 <listitem>
2251 <para><computeroutput>save</computeroutput>, which saves the current
2252 machine state and powers off the VM afterwards. If saving the machine
2253 state fails the VM will be paused.</para>
2254 </listitem>
2255 <listitem>
2256 <para><computeroutput>shutdown</computeroutput>, which shuts down
2257 the VM in a gentle way by sending an <computeroutput>ACPI</computeroutput>
2258 shutdown event to the VM's operating system. The OS then has the
2259 chance of doing a clean shutdown.</para>
2260 </listitem>
2261 </itemizedlist>
2262 </para>
2263 </sect2>
2264
2265 <sect2 id="vboxwatchdog-moreinfo">
2266 <title>More information</title>
2267 <para>For more advanced options and parameters like verbose logging check
2268 the built-in command line help accessible with
2269 <computeroutput>--help</computeroutput>.</para>
2270 </sect2>
2271
2272 <sect2 id="vboxwatchdog-linux">
2273 <title>Linux: starting the watchdog service via <computeroutput>init</computeroutput></title>
2274
2275 <para>On Linux, the watchdog service can be automatically started during
2276 host boot by adding appropriate parameters to the file
2277 <computeroutput>/etc/default/virtualbox</computeroutput>.
2278 There is one mandatory parameter, <computeroutput>VBOXWATCHDOG_USER</computeroutput>,
2279 which must be set to the user which will later start the VMs. For backward
2280 compatibility you can also specify <computeroutput>VBOXBALLOONCTRL_USER</computeroutput>The
2281 parameters in the table below all start with <computeroutput>VBOXWATCHDOG_</computeroutput>
2282 (<computeroutput>VBOXWATCHDOG_BALLOON_INTERVAL</computeroutput>,
2283 <computeroutput>VBOXWATCHDOG_LOGSIZE</computeroutput> etc., and for
2284 previously existing parameters the
2285 <computeroutput>VBOXBALLOONCTRL_INTERVAL</computeroutput> etc. parameters
2286 can still be used):
2287 <table>
2288 <title>ignored</title>
2289 <tgroup cols="3">
2290 <tbody>
2291 <row>
2292 <entry><emphasis role="bold">Parameter</emphasis></entry>
2293 <entry><emphasis role="bold">Description</emphasis></entry>
2294 <entry><emphasis role="bold">Default</emphasis></entry>
2295 </row>
2296 <row>
2297 <entry>USER</entry>
2298 <entry>The user as which the watchdog service runs</entry>
2299 <entry></entry>
2300 </row>
2301 <row>
2302 <entry>ROTATE</entry>
2303 <entry>Number of log files; 0 disables log rotation</entry>
2304 <entry>10</entry>
2305 </row>
2306 <row>
2307 <entry>LOGSIZE</entry>
2308 <entry>Maximum size of a log file in bytes to trigger rotation</entry>
2309 <entry>1MB</entry>
2310 </row>
2311 <row>
2312 <entry>LOGINTERVAL</entry>
2313 <entry>Maximum time interval in seconds to trigger log rotation</entry>
2314 <entry>1 day</entry>
2315 </row>
2316 <row>
2317 <entry>BALLOON_INTERVAL</entry>
2318 <entry>Interval for checking the balloon size (msec)</entry>
2319 <entry>30000</entry>
2320 </row>
2321 <row>
2322 <entry>BALLOON_INCREMENT</entry>
2323 <entry>Balloon size increment (MByte)</entry>
2324 <entry>256</entry>
2325 </row>
2326 <row>
2327 <entry>BALLOON_DECREMENT</entry>
2328 <entry>Balloon size decrement (MByte)</entry>
2329 <entry>128</entry>
2330 </row>
2331 <row>
2332 <entry>BALLOON_LOWERLIMIT</entry>
2333 <entry>Balloon size lower limit (MByte)</entry>
2334 <entry>64</entry>
2335 </row>
2336 <row>
2337 <entry>BALLOON_SAFETYMARGIN</entry>
2338 <entry>Free memory required for decreasing the balloon size (MByte)</entry>
2339 <entry>1024</entry>
2340 </row>
2341 </tbody>
2342 </tgroup>
2343 </table>
2344 </para>
2345 </sect2>
2346
2347 <sect2 id="vboxwatchdog-solaris">
2348 <title>Solaris: starting the watchdog service via SMF</title>
2349
2350 <para>On Solaris hosts, the VirtualBox watchdog service daemon is
2351 integrated into the SMF framework. You can change the parameters, but
2352 don't have to if the defaults already match your needs:<screen>svccfg -s svc:/application/virtualbox/balloonctrl:default setprop config/balloon_interval=10000
2353svccfg -s svc:/application/virtualbox/balloonctrl:default setprop config/balloon_safetymargin=134217728</screen></para>
2354
2355 <para>The table in the previous section showing the parameter names and
2356 defaults also applies to Solaris. The parameter names must be changed
2357 to lowercase and a prefix of <computeroutput>config/</computeroutput>
2358 has to be added, e.g. <computeroutput>config/user</computeroutput> or
2359 <computeroutput>config/balloon_safetymargin</computeroutput>. If you made any
2360 change, don't forget to run the following command to put the changes into
2361 effect immediately:<screen>svcadm refresh svc:/application/virtualbox/balloonctrl:default</screen></para>
2362
2363 <para>If you forget the above command then the previous settings will
2364 be used when enabling the service. Check the current property settings
2365 with:<screen>svcprop -p config svc:/application/virtualbox/balloonctrl:default</screen></para>
2366
2367 <para>When everything is configured correctly you can start the
2368 VirtualBox watchdog service with the following command:<screen>svcadm enable svc:/application/virtualbox/balloonctrl:default</screen></para>
2369
2370 <para>For more information about SMF, please refer to the Solaris
2371 documentation.</para>
2372 </sect2>
2373
2374 </sect1>
2375
2376 <sect1 id="otherextpacks">
2377 <title>Other extension packs</title>
2378
2379 <para>Starting with VirtualBox 4.2.0 there is another extension pack,
2380 <code>VNC</code>, which is open source and replaces the previous
2381 integration of the VNC remote access protocol. This is experimental code,
2382 and will be initially available in the VirtualBox source code package only.
2383 It is to a large portion code contributed by users, and is not supported
2384 in any way by Oracle.</para>
2385
2386 <para>The keyboard handling is severely limited, and only the US keyboard
2387 layout works. Other keyboard layouts will have at least some keys which
2388 produce the wrong results (often quite surprising effects), and for layouts
2389 which have significant differences to the US keyboard layout it is most
2390 likely unusable.</para>
2391
2392 <para>It is possible to install both the Oracle VM VirtualBox Extension
2393 Pack and VNC, but only one VRDE module can be active at any time. The
2394 following command switches to the VNC VRDE module in
2395 VNC:<screen>VBoxManage setproperty vrdeextpack VNC</screen></para>
2396
2397 <para>Configuring the remote access works very similarly to VRDP (see
2398 <xref linkend="vrde" />), with some limitations: VNC does not
2399 support specifying several port numbers, and the authentication is done
2400 differently. VNC can only deal with password authentication, and there
2401 is no option to use password hashes. This leaves no other choice than
2402 having a clear-text password in the VM configuration, which can be set with
2403 the following command:<screen>VBoxManage modifyvm VMNAME --vrdeproperty VNCPassword=secret</screen></para>
2404
2405 <para>The user is responsible for keeping this password secret, and it
2406 should be removed when a VM configuration is passed to another person,
2407 for whatever purpose. Some VNC servers claim to have "encrypted" passwords
2408 in the configuration. This is not true encryption, it is only concealing
2409 the passwords, which is exactly as secure as clear-text passwords.</para>
2410
2411 <para>The following command switches back to VRDP (if
2412 installed):<screen>VBoxManage setproperty vrdeextpack "Oracle VM VirtualBox Extension Pack"</screen></para>
2413 </sect1>
2414
2415 <sect1 id="autostart">
2416 <title>Starting virtual machines during system boot</title>
2417
2418 <para>Starting with VirtualBox 4.2.0 it is possible to start VMs automatically during
2419 system boot on Linux, Solaris and Mac OS X for all users. </para>
2420
2421 <sect2 id="autostart-linux">
2422 <title>Linux: starting the autostart service via <computeroutput>init</computeroutput></title>
2423
2424 <para>On Linux, the autostart service is activated by setting two variables in
2425 <computeroutput>/etc/default/virtualbox</computeroutput>.
2426 The first one is <computeroutput>VBOXAUTOSTART_DB</computeroutput> which
2427 contains an absolute path to the autostart database directory.
2428 The directory should have write access for every user who should be able to
2429 start virtual machines automatically. Furthermore the directory should have the
2430 sticky bit set.
2431 The second variable is <computeroutput>VBOXAUTOSTART_CONFIG</computeroutput>
2432 which points the service to the autostart configuration file which is used
2433 during boot to determine whether to allow individual users to start a VM
2434 automatically and configure startup delays.
2435 The configuration file can be placed in <computeroutput>/etc/vbox</computeroutput>
2436 and contains several options. One is <computeroutput>default_policy</computeroutput>
2437 which controls whether the autostart service allows or denies to start a VM
2438 for users which are not in the exception list.
2439 The exception list starts with <computeroutput>exception_list</computeroutput>
2440 and contains a comma seperated list with usernames. Furthermore a separate
2441 startup delay can be configured for every user to avoid overloading the host.
2442 A sample configuration is given below:</para>
2443
2444 <para><screen>
2445# Default policy is to deny starting a VM, the other option is "allow".
2446default_policy = deny
2447
2448# Bob is allowed to start virtual machines but starting them
2449# will be delayed for 10 seconds
2450bob = {
2451 allow = true
2452 startup_delay = 10
2453}
2454
2455# Alice is not allowed to start virtual machines, useful to exclude certain users
2456# if the default policy is set to allow.
2457alice = {
2458 allow = false
2459}
2460 </screen></para>
2461
2462 <para>Every user who wants to enable autostart for individual machines
2463 has to set the path to the autostart database directory with
2464 <screen>VBoxManage setproperty autostartdbpath &lt;Autostart directory&gt;</screen>
2465 </para>
2466 </sect2>
2467
2468 <sect2 id="autostart-solaris">
2469 <title>Solaris: starting the autostart service via SMF</title>
2470
2471 <para>On Solaris hosts, the VirtualBox autostart daemon is
2472 integrated into the SMF framework. To enable it you have to point the service
2473 to an existing configuration file which has the same format as on Linux (see <xref linkend="autostart-linux" />):
2474 <screen>svccfg -s svc:/application/virtualbox/autostart:default setprop config/config=/etc/vbox/autostart.cfg</screen>
2475 </para>
2476
2477 <para>When everything is configured correctly you can start the
2478 VirtualBox autostart service with the following command:<screen>svcadm enable svc:/application/virtualbox/autostart:default</screen></para>
2479
2480 <para>For more information about SMF, please refer to the Solaris
2481 documentation.</para>
2482 </sect2>
2483
2484 <sect2 id="autostart-osx">
2485 <title>Mac OS X: starting the autostart service via launchd</title>
2486
2487 <para>On Mac OS X, launchd is used to start the VirtualBox autostart service. An
2488 example configuration file can be found in
2489 <computeroutput>/Applications/VirtualBox.app/Contents/MacOS/org.virtualbox.vboxautostart.plist</computeroutput>.
2490 To enable the service copy the file to <computeroutput>/Library/LaunchDaemons</computeroutput> and change the
2491 <computeroutput>Disabled</computeroutput> key from
2492 <computeroutput>true</computeroutput> to
2493 <computeroutput>false</computeroutput>. Furthermore replace the second parameter
2494 to an existing configuration file which has the same format as on Linux (see <xref linkend="autostart-linux" />).
2495 To manually start the service use the following command:
2496 <screen>launchctl load /Library/LaunchDaemons/org.virtualbox.vboxautostart.plist</screen>
2497 For additional information on how launchd services could be
2498 configured see <literal><ulink
2499 url="http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPSystemStartup/BPSystemStartup.html">http://developer.apple.com/mac/library/documentation/MacOSX/Conceptual/BPSystemStartup/BPSystemStartup.html</ulink></literal>.</para>
2500 </sect2>
2501 </sect1>
2502</chapter>
Note: See TracBrowser for help on using the repository browser.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette