VirtualBox

Changeset 37837 in vbox


Ignore:
Timestamp:
Jul 8, 2011 11:21:46 AM (14 years ago)
Author:
vboxsync
Message:

doc/manual: 'dynamically expanding image' => 'dynamically expanded image'

Location:
trunk/doc/manual/en_US
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/manual/en_US/user_AdvancedTopics.xml

    r37827 r37837  
    15471547          <computeroutput>true</computeroutput> to
    15481548          <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>
    15501551          For additional information on how launchd services could be
    15511552          configured see <literal><ulink
     
    15581559    <title>Memory Ballooning Service</title>
    15591560
    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:
    15711576      <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 &lt;Size in MB&gt;</screen></listitem>
    1574         <listitem>global parameter for all VMs using <screen>VBoxManage setextradata global VBoxInternal/Guest/BalloonSizeMax &lt;Size in MB&gt;</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 &lt;Size in MB&gt;</screen></listitem>
     1581        <listitem>global parameter for all VMs using
     1582          <screen>VBoxManage setextradata global VBoxInternal/Guest/BalloonSizeMax &lt;Size in MB&gt;</screen></listitem>
    15751583      </itemizedlist>
    15761584      <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>
    15781587      </note>
    15791588    </para>
    15801589
    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>
    15821592  </sect1>
    15831593</chapter>
  • trunk/doc/manual/en_US/user_Introduction.xml

    r37727 r37837  
    748748          <para>VirtualBox supports two types of image files:<itemizedlist>
    749749              <listitem>
    750                 <para>A <emphasis role="bold">dynamically expanding
     750                <para>A <emphasis role="bold">dynamically allocated
    751751                file</emphasis> will only grow in size when the guest actually
    752752                stores data on its virtual hard disk. It will therefore
     
    761761                occupying much more space, a fixed-size file incurs less
    762762                overhead and is therefore slightly faster than a dynamically
    763                 expanding file.</para>
     763                allocated file.</para>
    764764              </listitem>
    765765            </itemizedlist></para>
  • trunk/doc/manual/en_US/user_Storage.xml

    r36094 r37837  
    295295    <para>Irrespective of the disk capacity and format, as briefly mentioned
    296296    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>
    298298
    299299    <itemizedlist>
     
    309309      <listitem>
    310310        <para>For more flexible storage management, use a <emphasis
    311         role="bold">dynamically expanding image</emphasis>. This will
     311        role="bold">dynamically allocated image</emphasis>. This will
    312312        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 is
    314         written to for the first time. While this format takes less space
    315         initially, the fact that VirtualBox needs to constantly expand the
    316         image file consumes additional computing resources, so until the disk
    317         has fully expanded, write operations are slower than with fixed size
    318         disks. However, after a dynamic disk has fully expanded, the
    319         performance penalty for read and write operations is
    320         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>
    321321      </listitem>
    322322    </itemizedlist>
     
    416416    virtual machine and snapshot operations. This applies to all of the
    417417    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>
    419419
    420420    <para>By default, images are in "normal" mode. To mark an existing image
     
    473473        between VMs and similar applications which are explicitly prepared to
    474474        access a disk concurrently. Only fixed size images can be used in this
    475         way, and dynamically growing images are rejected.<warning>
     475        way, and dynamically allocated images are rejected.<warning>
    476476            <para>This is an expert feature, and misuse can lead to data loss
    477477            -- regular filesystems are not prepared to handle simultaneous
  • trunk/doc/manual/en_US/user_VBoxManage.xml

    r37763 r37837  
    20462046          <para>With the <computeroutput>--compact</computeroutput> option,
    20472047          can be used to compact disk images, i.e. remove blocks that only
    2048           contains zeroes. This will shrink a dynamically expanding image
     2048          contains zeroes. This will shrink a dynamically allocated image
    20492049          again; it will reduce the <emphasis>physical</emphasis> size of the
    20502050          image without affecting the logical size of the virtual disk.
     
    20632063          <para>Please note that compacting is currently only available for
    20642064          VDI images. A similar effect can be achieved by zeroing out free
    2065           blocks and then cloning the disk to any other dynamically expanding
     2065          blocks and then cloning the disk to any other dynamically allocated
    20662066          format. You can use this workaround until compacting is also
    20672067          supported for disk formats other than VDI.</para>
     
    20752075              <para>Image resizing was added with VirtualBox 4.0.</para>
    20762076            </footnote> This currently works only for expanding the capacity of
    2077           VDI and VHD formats, and only for the dynamically expanding variants.
     2077          VDI and VHD formats, and only for the dynamically allocated variants.
    20782078          For example, if you originally created a 10G disk which is now full,
    20792079          you can use the <computeroutput>--resize 15360</computeroutput>
Note: See TracChangeset for help on using the changeset viewer.

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