Changeset 41848 in vbox for trunk/doc/manual/en_US
- Timestamp:
- Jun 20, 2012 1:58:29 PM (13 years ago)
- Location:
- trunk/doc/manual/en_US
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/user_Storage.xml
r39331 r41848 814 814 <computeroutput>VBoxManage</computeroutput>. The example below creates a 815 815 bandwidth group named "Limit", sets the limit to 20 MB/s and assigns the 816 group to the attached disks of the VM:<screen>VBoxManage bandwidthctl "VM name" --name Limit --add disk --limit 20816 group to the attached disks of the VM:<screen>VBoxManage bandwidthctl "VM name" add Limit --type disk --limit 20M 817 817 VBoxManage storageattach "VM name" --controller "SATA" --port 0 --device 0 --type hdd 818 818 --medium disk1.vdi --bandwidthgroup Limit … … 827 827 <para>The limits for each group can be changed while the VM is running, 828 828 with changes being picked up immediately. The example below changes the 829 limit for the group created in the example above to 10 MB/s:<screen>VBoxManage bandwidthctl "VM name" --name Limit --limit 10</screen></para>829 limit for the group created in the example above to 10 MB/s:<screen>VBoxManage bandwidthctl "VM name" set Limit --limit 10M</screen></para> 830 830 </sect1> 831 831 -
trunk/doc/manual/en_US/user_VBoxManage.xml
r41476 r41848 1968 1968 <title>VBoxManage bandwidthctl</title> 1969 1969 1970 <para>This command creates/deletes/modifies bandwidth groups of the given1970 <para>This command creates/deletes/modifies/shows bandwidth groups of the given 1971 1971 virtual machine:<screen>VBoxManage bandwidthctl <uuid|vmname> 1972 --name <name> 1973 [--add disk 1974 [--delete] 1975 [--limit MB/s]</screen></para> 1976 1977 <para>See <xref linkend="storage-bandwidth-limit" /> for an introduction 1978 to bandwidth limits. The parameters mean:<glosslist> 1972 add <name> --type disk|network --limit <megabytes per second>[k|m|g|K|M|G] | 1973 set <name> --limit <megabytes per second>[k|m|g|K|M|G] | 1974 remove <name> | 1975 list [--machinereadable]</screen></para> 1976 1977 <para>The following subcommands are available:<itemizedlist> 1978 <listitem> 1979 <para><computeroutput>add</computeroutput>, creates a new bandwidth 1980 group of given type.</para> 1981 </listitem> 1982 <listitem> 1983 <para><computeroutput>set</computeroutput>, modifies the limit for an 1984 existing bandwidth group.</para> 1985 </listitem> 1986 <listitem> 1987 <para><computeroutput>remove</computeroutput>, destroys a bandwidth 1988 group.</para> 1989 </listitem> 1990 <listitem> 1991 <para><computeroutput>list</computeroutput>, shows all bandwidth groups 1992 defined for the given VM.</para> 1993 </listitem> 1994 </itemizedlist> 1995 </para> 1996 <para>The parameters mean:<glosslist> 1979 1997 <glossentry> 1980 1998 <glossterm>uuid|vmname</glossterm> … … 1994 2012 1995 2013 <glossentry> 1996 <glossterm>add</glossterm> 1997 1998 <glossdef> 1999 <para>Creates a new bandwdith group with the given type.</para> 2000 </glossdef> 2001 </glossentry> 2002 2003 <glossentry> 2004 <glossterm>delete</glossterm> 2005 2006 <glossdef> 2007 <para>Deletes a bandwdith group if it isn't used anymore.</para> 2014 <glossterm>type</glossterm> 2015 2016 <glossdef> 2017 <para>Type of the bandwidth group. Mandatory. Two types are 2018 supported: <computeroutput>disk</computeroutput> and 2019 <computeroutput>network</computeroutput>. See 2020 <xref linkend="storage-bandwidth-limit" /> or 2021 <xref linkend="network_bandwidth_limit" /> for a description of a 2022 particular type.</para> 2008 2023 </glossdef> 2009 2024 </glossentry> … … 2013 2028 2014 2029 <glossdef> 2015 <para>Sets the limit for the given group to the specified amount. 2016 Can be changed while the VM is running.</para> 2017 </glossdef> 2018 </glossentry> 2019 </glosslist></para> 2030 <para>Specifies the limit for the given group. Can be changed 2031 while the VM is running. The default unit is megabytes per 2032 second. The unit can be changed by specifying one of the 2033 following suffixes: <computeroutput>k</computeroutput> for kilobits/s, <computeroutput>m</computeroutput> for megabits/s, <computeroutput>g</computeroutput> for gigabits/s, <computeroutput>K</computeroutput> for kilobytes/s, <computeroutput>M</computeroutput> for megabytes/s, <computeroutput>G</computeroutput> for gigabytes/s</para> 2034 </glossdef> 2035 </glossentry> 2036 </glosslist> 2037 <note> 2038 <para>To remove a bandwidth group it must not be referenced by any disks 2039 or adapters in running VM.</para> 2040 </note> 2041 </para> 2020 2042 </sect1> 2021 2043
Note:
See TracChangeset
for help on using the changeset viewer.