Changeset 37837 in vbox
- Timestamp:
- Jul 8, 2011 11:21:46 AM (14 years ago)
- Location:
- trunk/doc/manual/en_US
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_AdvancedTopics.xml
r37827 r37837 1547 1547 <computeroutput>true</computeroutput> to 1548 1548 <computeroutput>false</computeroutput>. To manually start the 1549 service use the following command: <screen>launchctl load ~/Library/LaunchAgents/org.virtualbox.vboxwebsrv.plist</screen> 1549 service use the following command: 1550 <screen>launchctl load ~/Library/LaunchAgents/org.virtualbox.vboxwebsrv.plist</screen> 1550 1551 For additional information on how launchd services could be 1551 1552 configured see <literal><ulink … … 1558 1559 <title>Memory Ballooning Service</title> 1559 1560 1560 <para>Starting with VirtualBox 4.0.8 a new host executable called <computeroutput>VBoxBalloonCtrl</computeroutput> is 1561 available to automatically take care of a VM's configured memory balloon (see <xref linkend="guestadd-balloon" /> 1562 for an introduction to memory ballooning). This is especially useful for server environments where VMs may dynamically 1563 require more or less memory during runtime.</para> 1564 1565 <para>VBoxBalloonCtrl periodically checks a VM's current memory balloon and its free guest RAM and automatically adjusts 1566 the current memory balloon by inflating or deflating it accordingly. This handling only applies to running VMs having recent 1567 Guest Additions installed.</para> 1568 1569 <para>To set up VBoxBalloonCtrl and adjust the maximum ballooning size a VM can reach the following parameters will be checked in the following 1570 order: 1561 <para>Starting with VirtualBox 4.0.8 a new host executable called 1562 <computeroutput>VBoxBalloonCtrl</computeroutput> is available to 1563 automatically take care of a VM's configured memory balloon 1564 (see <xref linkend="guestadd-balloon" /> for an introduction to memory 1565 ballooning). This is especially useful for server environments where 1566 VMs may dynamically require more or less memory during runtime.</para> 1567 1568 <para>VBoxBalloonCtrl periodically checks a VM's current memory balloon 1569 and its free guest RAM and automatically adjusts the current memory 1570 balloon by inflating or deflating it accordingly. This handling only 1571 applies to running VMs having recent Guest Additions installed.</para> 1572 1573 <para>To set up VBoxBalloonCtrl and adjust the maximum ballooning size a 1574 VM can reach the following parameters will be checked in the following 1575 order: 1571 1576 <itemizedlist> 1572 <listitem>specified via VBoxBalloonCtrl command line parameter <computeroutput>--balloon-max</computeroutput></listitem> 1573 <listitem>per-VM parameter using <screen>VBoxManage setextradata "VM-Name" VBoxInternal/Guest/BalloonSizeMax <Size in MB></screen></listitem> 1574 <listitem>global parameter for all VMs using <screen>VBoxManage setextradata global VBoxInternal/Guest/BalloonSizeMax <Size in MB></screen></listitem> 1577 <listitem>specified via VBoxBalloonCtrl command line parameter 1578 <computeroutput>--balloon-max</computeroutput></listitem> 1579 <listitem>per-VM parameter using 1580 <screen>VBoxManage setextradata "VM-Name" VBoxInternal/Guest/BalloonSizeMax <Size in MB></screen></listitem> 1581 <listitem>global parameter for all VMs using 1582 <screen>VBoxManage setextradata global VBoxInternal/Guest/BalloonSizeMax <Size in MB></screen></listitem> 1575 1583 </itemizedlist> 1576 1584 <note> 1577 <para>If no maximum ballooning size is specified by at least one of the parameters above, no ballooning will be performed at all.</para> 1585 <para>If no maximum ballooning size is specified by at least one of the 1586 parameters above, no ballooning will be performed at all.</para> 1578 1587 </note> 1579 1588 </para> 1580 1589 1581 <para>For more options and parameters check the built-in command line help accessible with <computeroutput>--help</computeroutput>.</para> 1590 <para>For more options and parameters check the built-in command line help 1591 accessible with <computeroutput>--help</computeroutput>.</para> 1582 1592 </sect1> 1583 1593 </chapter> -
trunk/doc/manual/en_US/user_Introduction.xml
r37727 r37837 748 748 <para>VirtualBox supports two types of image files:<itemizedlist> 749 749 <listitem> 750 <para>A <emphasis role="bold">dynamically expanding750 <para>A <emphasis role="bold">dynamically allocated 751 751 file</emphasis> will only grow in size when the guest actually 752 752 stores data on its virtual hard disk. It will therefore … … 761 761 occupying much more space, a fixed-size file incurs less 762 762 overhead and is therefore slightly faster than a dynamically 763 expandingfile.</para>763 allocated file.</para> 764 764 </listitem> 765 765 </itemizedlist></para> -
trunk/doc/manual/en_US/user_Storage.xml
r36094 r37837 295 295 <para>Irrespective of the disk capacity and format, as briefly mentioned 296 296 in <xref linkend="gui-createvm" />, there are two options of how to create 297 a disk image: fixed-size or dynamically expanding.</para>297 a disk image: fixed-size or dynamically allocated.</para> 298 298 299 299 <itemizedlist> … … 309 309 <listitem> 310 310 <para>For more flexible storage management, use a <emphasis 311 role="bold">dynamically expandingimage</emphasis>. This will311 role="bold">dynamically allocated image</emphasis>. This will 312 312 initially be very small and not occupy any space for unused virtual 313 disk sectors, but the image file will grow every time a disk sector is314 written to for the first time. While this format takes less space315 initially, the fact that VirtualBox needs to constantly expand the316 i mage file consumes additional computing resources, so until the disk317 has fully expanded, write operations are slower than with fixed size318 disks. However, after a dynamic disk has fully expanded, the319 performance penalty for read and write operations is320 negligible.</para>313 disk sectors, but will grow every time a disk sector is written to for 314 the first time, until the drive reaches the maximum capacity chosen 315 when the drive was created. While this format takes less space 316 initially, the fact that VirtualBox needs to expand the image file 317 consumes additional computing resources, so until the disk file size has 318 stabilized, write operations may be slower than with fixed size disks. 319 However, after a time the rate of growth will slow and the average penalty 320 for write operations will be negligible.</para> 321 321 </listitem> 322 322 </itemizedlist> … … 416 416 virtual machine and snapshot operations. This applies to all of the 417 417 aforementioned image formats (VDI, VMDK, VHD or HDD) and irrespective of 418 whether an image is fixed-size or dynamically expanding.</para>418 whether an image is fixed-size or dynamically allocated.</para> 419 419 420 420 <para>By default, images are in "normal" mode. To mark an existing image … … 473 473 between VMs and similar applications which are explicitly prepared to 474 474 access a disk concurrently. Only fixed size images can be used in this 475 way, and dynamically growingimages are rejected.<warning>475 way, and dynamically allocated images are rejected.<warning> 476 476 <para>This is an expert feature, and misuse can lead to data loss 477 477 -- regular filesystems are not prepared to handle simultaneous -
trunk/doc/manual/en_US/user_VBoxManage.xml
r37763 r37837 2046 2046 <para>With the <computeroutput>--compact</computeroutput> option, 2047 2047 can be used to compact disk images, i.e. remove blocks that only 2048 contains zeroes. This will shrink a dynamically expandingimage2048 contains zeroes. This will shrink a dynamically allocated image 2049 2049 again; it will reduce the <emphasis>physical</emphasis> size of the 2050 2050 image without affecting the logical size of the virtual disk. … … 2063 2063 <para>Please note that compacting is currently only available for 2064 2064 VDI images. A similar effect can be achieved by zeroing out free 2065 blocks and then cloning the disk to any other dynamically expanding2065 blocks and then cloning the disk to any other dynamically allocated 2066 2066 format. You can use this workaround until compacting is also 2067 2067 supported for disk formats other than VDI.</para> … … 2075 2075 <para>Image resizing was added with VirtualBox 4.0.</para> 2076 2076 </footnote> This currently works only for expanding the capacity of 2077 VDI and VHD formats, and only for the dynamically expandingvariants.2077 VDI and VHD formats, and only for the dynamically allocated variants. 2078 2078 For example, if you originally created a 10G disk which is now full, 2079 2079 you can use the <computeroutput>--resize 15360</computeroutput>
Note:
See TracChangeset
for help on using the changeset viewer.