VirtualBox

source: vbox/trunk/doc/manual/en_US/man_VBoxManage-mediumio.xml

Last change on this file was 99513, checked in by vboxsync, 13 months ago

manual,VBoxManage,isomaker/viso: Require all refsect1 and refsect2 elements to have @id attributes in manpages (refentry) to make these predictable and the split up topic files easier to handle for the docs team. Also requires these @id values to start with the refentry @id + '-'. Corrected a few bogus ones. Because 'controlvm' has too many sub-commands, HELP_SCOPE_ IDs will not be generated for 'See Also' and 'Examples' sections. bugref:10302

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 7.3 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 manpage, user manual, usage: VBoxManage mediumio
4-->
5<!--
6 Copyright (C) 2018-2023 Oracle and/or its affiliates.
7
8 This file is part of VirtualBox base platform packages, as
9 available from https://www.virtualbox.org.
10
11 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License
13 as published by the Free Software Foundation, in version 3 of the
14 License.
15
16 This program is distributed in the hope that it will be useful, but
17 WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
20
21 You should have received a copy of the GNU General Public License
22 along with this program; if not, see <https://www.gnu.org/licenses>.
23
24 SPDX-License-Identifier: GPL-3.0-only
25-->
26<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
27 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
28<!ENTITY % all.entities SYSTEM "all-entities.ent">
29%all.entities;
30]>
31<refentry id="vboxmanage-mediumio" lang="en">
32 <refentryinfo>
33 <pubdate>$Date: 2023-04-21 21:59:02 +0000 (Fri, 21 Apr 2023) $</pubdate>
34 <title>VBoxManage mediumio</title>
35 </refentryinfo>
36
37 <refmeta>
38 <refentrytitle>VBoxManage-mediumio</refentrytitle>
39 <manvolnum>1</manvolnum>
40 </refmeta>
41
42 <refnamediv>
43 <refname>VBoxManage-mediumio</refname>
44 <refpurpose>medium content access</refpurpose>
45 <refclass>&product-name;</refclass>
46 </refnamediv>
47
48 <refsynopsisdiv>
49 <cmdsynopsis id="synopsis-vboxmanage-mediumio-formatfat"> <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
50 <command>VBoxManage mediumio</command>
51 <group choice="req">
52 <arg choice="plain">--disk=<replaceable>uuid|filename</replaceable></arg>
53 <arg choice="plain">--dvd=<replaceable>uuid|filename</replaceable></arg>
54 <arg choice="plain">--floppy=<replaceable>uuid|filename</replaceable></arg>
55 </group>
56 <arg>--password-file=<replaceable>-|filename</replaceable></arg>
57 <arg choice="plain">formatfat</arg>
58 <arg>--quick</arg>
59 </cmdsynopsis>
60 <cmdsynopsis id="synopsis-vboxmanage-mediumio-cat">
61 <command>VBoxManage mediumio</command>
62 <group choice="req">
63 <arg choice="plain">--disk=<replaceable>uuid|filename</replaceable></arg>
64 <arg choice="plain">--dvd=<replaceable>uuid|filename</replaceable></arg>
65 <arg choice="plain">--floppy=<replaceable>uuid|filename</replaceable></arg>
66 </group>
67 <arg>--password-file=<replaceable>-|filename</replaceable></arg>
68 <arg choice="plain">cat</arg>
69 <arg>--hex</arg>
70 <arg>--offset=<replaceable>byte-offset</replaceable></arg>
71 <arg>--size=<replaceable>bytes</replaceable></arg>
72 <arg>--output=<replaceable>-|filename</replaceable></arg>
73 </cmdsynopsis>
74 <cmdsynopsis id="synopsis-vboxmanage-mediumio-stream">
75 <command>VBoxManage mediumio</command>
76 <group choice="req">
77 <arg choice="plain">--disk=<replaceable>uuid|filename</replaceable></arg>
78 <arg choice="plain">--dvd=<replaceable>uuid|filename</replaceable></arg>
79 <arg choice="plain">--floppy=<replaceable>uuid|filename</replaceable></arg>
80 </group>
81 <arg>--password-file=<replaceable>-|filename</replaceable></arg>
82 <arg choice="plain">stream</arg>
83 <arg>--format=<replaceable>image-format</replaceable></arg>
84 <arg>--variant=<replaceable>image-variant</replaceable></arg>
85 <arg>--output=<replaceable>-|filename</replaceable></arg>
86 </cmdsynopsis>
87 </refsynopsisdiv>
88
89 <refsect1 id="vboxmanage-mediumio-description">
90 <title>Description</title>
91
92 <refsect2 id="vboxmanage-mediumio-common-options">
93 <title>Common options</title>
94 <remark role="help-scope" condition="GLOBAL"/>
95 <para>The subcommands of <command>mediumio</command> all operate on a medium which need to be specified, optionally
96 with an encryption password. The following common options can be placed before or after the sub-command:</para>
97 <variablelist>
98 <varlistentry>
99 <term>--disk=<replaceable>uuid|filename</replaceable></term>
100 <listitem><para>Either the UUID or filename of a harddisk image, e.g. VDI, VMDK, VHD, ++.</para></listitem>
101 </varlistentry>
102 <varlistentry>
103 <term>--dvd=<replaceable>uuid|filename</replaceable></term>
104 <listitem><para>Either the UUID or filename of a DVD image, e.g. ISO, DMG, CUE.</para></listitem>
105 </varlistentry>
106 <varlistentry>
107 <term>--floppy=<replaceable>uuid|filename</replaceable></term>
108 <listitem><para>Either the UUID or filename of a floppy image, e.g. IMG.</para></listitem>
109 </varlistentry>
110 <varlistentry>
111 <term>--password-file=<replaceable>-|filename</replaceable></term>
112 <listitem><para>The name of a file containing the medium encryption password. If <option>-</option>
113 is specified, the password will be read from stdin. </para></listitem>
114 </varlistentry>
115 </variablelist>
116 </refsect2>
117
118 <refsect2 id="vboxmanage-mediumio-formatfat">
119 <title>mediumio formatfat</title>
120 <remark role="help-copy-synopsis"/>
121 <para>
122 Formats a floppy medium with the FAT file system. This will erase the
123 content of the medium.
124 </para>
125 <variablelist>
126 <varlistentry>
127 <term><option>--quick</option></term><listitem><para>Quickformat the medium.</para></listitem>
128 </varlistentry>
129 </variablelist>
130 </refsect2>
131
132 <refsect2 id="vboxmanage-mediumio-cat">
133 <title>mediumio cat</title>
134 <remark role="help-copy-synopsis"/>
135 <para>
136 Dumps the medium content to stdout or the specified file.
137 </para>
138 <variablelist>
139 <varlistentry>
140 <term><option>--hex</option></term><listitem><para>Dump as hex bytes.</para></listitem>
141 </varlistentry>
142 <varlistentry>
143 <term><option>--offset</option></term><listitem><para>The byte offset in the medium to start.</para></listitem>
144 </varlistentry>
145 <varlistentry>
146 <term><option>--size</option></term><listitem><para>The number of bytes to dump.</para></listitem>
147 </varlistentry>
148 <varlistentry>
149 <term><option>--output</option></term>
150 <listitem><para>The output filename. As usual <option>-</option> is take to mean stdout.</para></listitem>
151 </varlistentry>
152 </variablelist>
153 </refsect2>
154
155 <refsect2 id="vboxmanage-mediumio-stream">
156 <title>mediumio stream</title>
157 <remark role="help-copy-synopsis"/>
158 <para>
159 Converts the medium to a streamable format and dumps it to the given output.
160 </para>
161 <variablelist>
162 <varlistentry>
163 <term><option>--format</option></term><listitem><para>The format of the destination image.</para></listitem>
164 </varlistentry>
165 <varlistentry>
166 <term><option>--variant</option></term><listitem><para>The medium variant for the destination.</para></listitem>
167 </varlistentry>
168 <varlistentry>
169 <term><option>--output</option></term>
170 <listitem><para>The output filename. As usual <option>-</option> is take to mean stdout.</para></listitem>
171 </varlistentry>
172 </variablelist>
173 </refsect2>
174
175 </refsect1>
176
177</refentry>
178
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use