VirtualBox

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

Last change on this file since 94209 was 93803, checked in by vboxsync, 3 years ago

doc/manual: Clean up the entity inclusion into all manpages, eliminating current and avoiding future warnings about unknown entity product-name. Minor further cleanups.

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

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