VirtualBox

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

Last change on this file since 96300 was 96300, checked in by vboxsync, 2 years ago

doc: comment fixing

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