VirtualBox

source: vbox/trunk/src/VBox/Runtime/common/fs/isomakercmd-man.xml@ 94291

Last change on this file since 94291 was 93118, checked in by vboxsync, 3 years ago

IPRT/RTIsoMaker: Added an --name-setup-from-import option to better handle importing old ISOs without joliet present. We get into trouble when adding our files to the ISO in both primary iso and joliet space, since the guest might be inclined to show the joliet view (which is missing the files from the imported ISO).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 27.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 manpage for RTIsoMaker/VISO
4
5 Copyright (C) 2006-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 The contents of this file may alternatively be used under the terms
16 of the Common Development and Distribution License Version 1.0
17 (CDDL) only, as it comes in the "COPYING.CDDL" file of the
18 VirtualBox OSE distribution, in which case the provisions of the
19 CDDL are applicable instead of those of the GPL.
20
21 You may elect to license modified versions of this file under the
22 terms and conditions of either the GPL or the CDDL or both.
23 -->
24<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">
25<refentry id="viso" lang="en">
26
27 <refentryinfo>
28 <pubdate>$Date: 2022-01-04 01:41:47 +0000 (Tue, 04 Jan 2022) $</pubdate>
29 <title>VISO file format / RTIsoMaker</title>
30 </refentryinfo>
31
32 <refmeta>
33 <refentrytitle>viso</refentrytitle>
34 <manvolnum>8</manvolnum>
35 </refmeta>
36
37 <refnamediv>
38 <!--<refname>VISO</refname>-->
39 <refname>viso</refname>
40 <refpurpose>ISO image maker</refpurpose>
41 <refclass>IPRT</refclass>
42 </refnamediv>
43
44 <refsynopsisdiv>
45 <cmdsynopsis id="synopsis-viso"> <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
46 <command>RTIsoMaker</command>
47 <arg><replaceable>options</replaceable></arg>
48 <arg>@<replaceable>commands.rsp</replaceable></arg>
49 <arg choice="req" rep="repeat"><replaceable>filespec</replaceable></arg>
50 </cmdsynopsis>
51 </refsynopsisdiv>
52
53 <refsect1>
54 <title>Description</title>
55 <para>Construct a virtual ISO 9660 / Joliet / UDF / HFS hybrid image and either write it to a
56 file (RTIsoMaker) or serve it as a virtual image (VISO).</para>
57
58 <refsect2 id="viso-viso">
59 <title>VISO file format</title>
60 <para>A VISO file is a virtual ISO image, i.e. constructed in memory from a bunch of files on
61 the host. A VISO is just the recipe describing how to go about this using a syntax vaguely
62 similar to mkisofs and genisoimage.</para>
63
64 <para>One requirement is that the VISO file must start with one of the
65 <option>--iprt-iso-maker-file-marker</option> options. Which of the options you use will
66 dictate the quoting and escaping rules used when reading the file. The option takes the
67 image UUID as an argument.</para>
68
69 <para>The VISO files are treated as UTF-8 and must not contain any byte order marker (BOM).
70 There is currently no way to comment out lines in a VISO file.</para>
71
72 </refsect2>
73
74 <refsect2 id="viso-filespecs">
75 <title>File specifications and --name-setup</title>
76 <para>All non-options that does not start with '@' are taken to indicate a file, directory,
77 or similar that is should be added to the ISO image. Directories are added recursively and
78 content is subject to filtering options.</para>
79
80 <para>Since there can be up to six different namespaces on an ISO, it is handy to be able to
81 control the names used in each and be able to exclude an object from one or more namespaces.
82 The <option>--name-setup</option> option specifies the file specification format to use
83 forthwith.</para>
84
85 <para>The default setup is:</para>
86 <!-- indent this: -->
87 <para><computeroutput> --name-setup iso+joliet+udf+hfs</computeroutput></para>
88
89 <para>Which means you specify one on-ISO name for all namespaces followed by '=' and the
90 source file system name. Only specifying the source file system will add the
91 file/dir/whatever to the root of the ISO image.</para>
92
93 <para>Lets look at the following two examples:</para>
94
95 <!-- indent these -->
96 <para><computeroutput> /docs/readme.txt=/home/user/Documents/product-x-readme.txt</computeroutput></para>
97 <para><computeroutput> /home/user/Documents/product-x-readme.txt</computeroutput></para>
98
99 <para>In the first case the file <computeroutput>'/home/user/Documents/product-x-readme.txt'</computeroutput>
100 is added to the ISO image as <computeroutput>'/docs/readme.txt'</computeroutput> in all
101 enabled namespaces. In the primary ISO 9660 namespace, the filename will by default be
102 converted to upper case because it's required by the spec.</para>
103
104 <para>In the second case the file is added to the root under the name
105 <computeroutput>'product-x-readme.txt'</computeroutput> in all namespaces. Though, in the
106 primary ISO 9660 namespace the name will be transformed to apply with the current ISO level,
107 probably uppercased, possibly truncated too. </para>
108
109 <para>Given <option>--name-setup iso,joliet,udf</option> you can specify the name individually
110 for each of the three namespace, if you like. If you omit any, they will use last name given.
111 Any names left blank (<computeroutput>==</computeroutput>) will be considered omitted.</para>
112
113 <para>A different name in each namespace:</para>
114 <para><computeroutput> /ISO.TXT=/Joliet.TxT=/UDF.txt=/tmp/iso/real.txt</computeroutput></para>
115 <para>Specific name in the ISO 9660 namespace, same in the rest:</para>
116 <para><computeroutput> /ISO.TXT=/OtherNamespaces.TxT=/tmp/iso/real.txt</computeroutput></para>
117 <para>Omit the file from the ISO 9660 namespace:</para>
118 <para><computeroutput> =/OtherNamespaces.TxT=/tmp/iso/real.txt</computeroutput></para>
119 <para>Omit the file from the joliet namespace:</para>
120 <para><computeroutput> /ISO.TXT==/UDF.TxT=/tmp/iso/real.txt</computeroutput></para>
121 <para>Use the same filename as the source everywhere:</para>
122 <para><computeroutput> /tmp/iso/real.txt</computeroutput></para>
123
124
125 <para>Using for instance <option>--name-setup udf</option> you can add a files/dirs/whatever
126 to select namespace(s) without the more complicated empty name syntax above.</para>
127
128 <para>When adding directories, you can only control the naming and omitting of the directory
129 itself, not any recursively added files and directories below it.</para>
130
131 </refsect2>
132 </refsect1>
133
134 <refsect1 id="viso-options">
135 <title>Options</title>
136
137 <refsect2 id="viso-options-general">
138 <title>General</title>
139
140 <variablelist>
141 <varlistentry>
142 <term><option>-o <replaceable>output-file</replaceable></option></term>
143 <term><option>--output=<replaceable>output-file</replaceable></option></term>
144 <listitem><para>The output filename. This option is not supported in VISO mode.</para></listitem>
145 </varlistentry>
146
147 <varlistentry>
148 <term><option>--name-setup=<replaceable>spec</replaceable></option></term>
149 <listitem><para>Configures active namespaces and how file specifications are to be
150 interpreted. The specification is a comma separated list. Each element in the list is
151 a sub-list separated by space, <computeroutput>'+'</computeroutput> or
152 <computeroutput>'|'</computeroutput> giving the namespaces that elements controls.
153 Namespaces are divied into two major and minor ones, you cannot specifying a minor
154 before the major it belongs to.</para>
155 <para>Major namespaces and aliases in parentheses:</para>
156 <itemizedlist spacing="compact">
157 <listitem><para>iso (primary, iso9660, iso-9660, primary-iso, iso-primary)</para></listitem>
158 <listitem><para>joliet</para></listitem>
159 <listitem><para>udf</para></listitem>
160 <listitem><para>hfs (hfs-plus)</para></listitem>
161 </itemizedlist>
162 <para>Minor namespaces:</para>
163 <itemizedlist spacing="compact">
164 <listitem><para>rock: rock ridge on previous major namespace (iso / joliet)</para></listitem>
165 <listitem><para>iso-rock: rock ridge extensions on primary ISO 9660 namespace</para></listitem>
166 <listitem><para>joliet-rock: rock ridge on joliet namespace (just for fun)</para></listitem>
167 <listitem><para>trans-tbl: translation table file on previous major namespace</para></listitem>
168 <listitem><para>iso-trans-tbl</para></listitem>
169 <listitem><para>joliet-trans-tbl</para></listitem>
170 <listitem><para>udf-trans-tbl</para></listitem>
171 <listitem><para>hfs-trans-tbl</para></listitem>
172 </itemizedlist>
173 </listitem>
174 </varlistentry>
175
176 <varlistentry>
177 <term><option>--name-setup-from-import</option></term>
178 <listitem><para>This is for use following one or more <option>--import-iso</option>
179 operations and will pick a configuration matching the imported content as best we can.
180 If the imported ISOs only had a iso9660 namespace, the joliet, udf and hfs namespaces
181 will be removed. This is useful when adding additional files to the ISO and will
182 prevent guest from picking a namespace without the imported ISO content when mounting it.
183 </para></listitem>
184 </varlistentry>
185
186 <varlistentry>
187 <term><option>--push-iso=<replaceable>iso-file</replaceable></option></term>
188 <term><option>--push-iso-no-joliet=<replaceable>iso-file</replaceable></option></term>
189 <term><option>--push-iso-no-rock-<replaceable>iso-file</replaceable></option></term>
190 <term><option>--push-iso-no-rock-no-joliet=<replaceable>iso-file</replaceable></option></term>
191 <listitem><para>Open the specified ISO file and use it as source file system until the
192 corresponding <option>--pop</option> options is encountered. The variations are for
193 selecting which namespace on the ISO to (not) access. These options are handy for copying
194 files/directories/stuff from an ISO without having to extract them first or using the
195 <computeroutput>:iprtvfs:</computeroutput> syntax.</para>
196 </listitem>
197 </varlistentry>
198
199 <varlistentry>
200 <term><option>--pop</option></term>
201 <listitem><para>Pops a <option>--push-iso</option> of the source file system stack.</para></listitem>
202 </varlistentry>
203
204 <varlistentry>
205 <term><option>--import-iso=<replaceable>iso-file</replaceable></option></term>
206 <listitem><para>Imports everything on the given ISO file, including boot configuration and
207 system area (first 16 sectors) content. You can use <option>--name-setup</option> to omit
208 namespaces.</para></listitem>
209 </varlistentry>
210
211 </variablelist>
212 </refsect2>
213
214 <refsect2 id="viso-options-namespaces">
215 <title>Namespaces</title>
216 <variablelist>
217
218 <varlistentry>
219 <term><option>--iso-level=<replaceable>0|1|2|3</replaceable></option></term> <!-- FIXME: imperfect markup -->
220 <listitem>
221 <para>Sets the ISO level:</para>
222 <itemizedlist spacing="compact">
223 <listitem><para>0: Disable primary ISO namespace.</para></listitem>
224 <listitem><para>1: ISO level 1: Filenames 8.3 format and limited to 4GB - 1.</para></listitem>
225 <listitem><para>2: ISO level 2: 31 char long names and limited to 4GB - 1.</para></listitem>
226 <listitem><para>3: ISO level 3: 31 char long names and support for >=4GB files. (default)</para></listitem>
227 <listitem><para>4: Fictive level used by other tools. Not yet implemented.</para></listitem>
228 </itemizedlist>
229 </listitem>
230 </varlistentry>
231
232 <varlistentry>
233 <term><option>--rock-ridge</option></term>
234 <term><option>--limited-rock-ridge</option></term>
235 <term><option>--no-rock-ridge</option></term>
236 <listitem><para>Enables or disables rock ridge support for the primary ISO 9660 namespace.
237 The <option>--limited-rock-ridge</option> option omits a couple of bits in the root
238 directory that would make Linux pick rock ridge over joliet.</para>
239 <para>Default: <option>--limited-rock-ridge</option></para>
240 </listitem>
241 </varlistentry>
242
243 <varlistentry>
244 <term><option>-J</option></term>
245 <term><option>--joliet</option></term>
246 <term><option>--no-joliet</option></term>
247 <listitem><para>Enables or disable the joliet namespace. This option must precede any file
248 specifications.</para>
249 <para>Default: <option>--joliet</option></para>
250 </listitem>
251 </varlistentry>
252
253 <varlistentry>
254 <term><option>--joliet-ucs-level=<replaceable>1|2|3</replaceable></option></term> <!-- FIXME: imperfect markup -->
255 <term><option>--ucs-level=<replaceable>1|2|3</replaceable></option></term>
256 <listitem><para>Set the Joliet UCS support level. This is currently only flagged in the
257 image but not enforced on the actual path names.</para>
258 <para>Default level: 3</para>
259 </listitem>
260 </varlistentry>
261
262 </variablelist>
263 </refsect2>
264
265 <refsect2 id="viso-options-file-attributes">
266 <title>File Attributes</title>
267 <variablelist>
268
269 <varlistentry>
270 <term><option>--rational-attribs</option></term>
271 <listitem><para>Enables rational file attribute handling (default):</para>
272 <itemizedlist spacing="compact">
273 <listitem><para>Owner ID is set to zero</para></listitem>
274 <listitem><para>Group ID is set to zero</para></listitem>
275 <listitem><para>Mode is set to 0444 for non-executable files.</para></listitem>
276 <listitem><para>Mode is set to 0555 for executable files.</para></listitem>
277 <listitem><para>Mode is set to 0555 for directories, preserving stick bits.</para></listitem>
278 </itemizedlist>
279 </listitem>
280 </varlistentry>
281
282 <varlistentry>
283 <term><option>--strict-attribs</option></term>
284 <listitem><para>Counters <option>--rational-attribs</option> and causes attributes to be
285 recorded exactly as they appear in the source.</para>
286 </listitem>
287 </varlistentry>
288
289 <varlistentry>
290 <term><option>--file-mode=<replaceable>mode</replaceable></option></term>
291 <term><option>--no-file-mode</option></term>
292 <listitem><para>Controls the forced file mode mask for rock ridge, UDF and HFS.</para></listitem>
293 </varlistentry>
294
295 <varlistentry>
296 <term><option>--dir-mode=<replaceable>mode</replaceable></option></term>
297 <term><option>--no-dir-mode</option></term>
298 <listitem><para>Controls the forced directory mode mask for rock ridge, UDF and HFS.</para></listitem>
299 </varlistentry>
300
301 <varlistentry>
302 <term><option>--new-dir-mode=<replaceable>mode</replaceable></option></term>
303 <listitem><para>Controls the default mode mask (rock ridge, UDF, HFS) for directories that
304 are created implicitly. The <option>--dir-mode</option> option overrides this.</para>
305 </listitem>
306 </varlistentry>
307
308 <varlistentry>
309 <term><option>--chmod=<replaceable>mode</replaceable>:<replaceable>on-iso-file</replaceable></option></term>
310 <listitem><para>Explictily sets the rock ridge, UDF and HFS file mode for a file/dir/whatever
311 that has already been added to the ISO. The mode can be octal, <computeroutput>ra+x</computeroutput>,
312 <computeroutput>a+r</computeroutput>, or <computeroutput>a+rx</computeroutput>.
313 (Support for more complicated mode specifications may be implemented at a later point.)</para>
314 <para>Note that only namespaces in the current --name-setup are affected.</para>
315 </listitem>
316 </varlistentry>
317
318 <varlistentry>
319 <term><option>--chown=<replaceable>owner-id</replaceable>:<replaceable>on-iso-file</replaceable></option></term>
320 <listitem><para>Explictily sets the rock ridge, UDF and HFS file owner ID (numeric) for a
321 file/dir/whatever that has already been added to the ISO.</para>
322 <para>Note that only namespaces in the current --name-setup are affected.</para>
323 </listitem>
324 </varlistentry>
325
326 <varlistentry>
327 <term>--chgrp=<replaceable>group-id</replaceable>:<replaceable>on-iso-file</replaceable></term>
328 <listitem><para>Explictily sets the rock ridge, UDF and HFS file group ID (numeric) for a
329 file/dir/whatever that has already been added to the ISO.</para>
330 <para>Note that only namespaces in the current --name-setup are affected.</para>
331 </listitem>
332 </varlistentry>
333
334 </variablelist>
335 </refsect2>
336
337 <refsect2 id="viso-options-booting">
338 <title>Booting</title>
339 <variablelist>
340
341 <varlistentry>
342 <term><option>--eltorito-new-entry</option></term>
343 <term><option>--eltorito-alt-boot</option></term>
344 <listitem><para>Starts a new El Torito boot entry.</para></listitem>
345 </varlistentry>
346
347 <varlistentry>
348 <term><option>--eltorito-add-image=<replaceable>filespec</replaceable></option></term>
349 <listitem><para>File specification of a file that should be added to the image and used as
350 the El Torito boot image of the current boot entry.</para>
351 </listitem>
352 </varlistentry>
353
354 <varlistentry>
355 <term><option>-b <replaceable>on-iso-file</replaceable></option></term>
356 <term><option>--eltorito-boot=<replaceable>on-iso-file</replaceable></option></term>
357 <listitem><para>Specifies a file on the ISO as the El Torito boot image for the current boot
358 entry.</para>
359 </listitem>
360 </varlistentry>
361
362 <varlistentry>
363 <term><option>--eltorito-floppy-12</option></term>
364 <term><option>--eltorito-floppy-144</option></term>
365 <term><option>--eltorito-floppy-288</option></term>
366 <term><option>--no-emulation-boot</option></term>
367 <term><option>--hard-disk-boot</option></term>
368 <listitem><para>Sets the boot image emulation type of the current El Torito boot entry.</para></listitem>
369 </varlistentry>
370
371 <varlistentry>
372 <term><option>--boot-load-seg=<replaceable>seg</replaceable></option></term>
373 <listitem><para>Specify the image load segment for the current El Torito boot entry.</para>
374 <para>Default: 0x7c0</para>
375 </listitem>
376 </varlistentry>
377
378 <varlistentry>
379 <term><option>--boot-load-size=<replaceable>sectors</replaceable></option></term>
380 <listitem><para>Specify the image load size in emulated sectors for the current El Torito
381 boot entry.</para>
382 <para>Default: 4 (sectors of 512 bytes)</para>
383 </listitem>
384 </varlistentry>
385
386 <varlistentry>
387 <term><option>--no-boot</option></term>
388 <listitem><para>Indicates that the current El Torito boot entry isn't bootable. (The BIOS
389 will allegedly configure the emulation, but not attempt booting.)</para>
390 </listitem>
391 </varlistentry>
392
393 <varlistentry>
394 <term><option>--boot-info-table</option></term>
395 <listitem><para>Write a isolinux/syslinux boot info table into the boot image for the
396 current El Torito boot entry.</para>
397 </listitem>
398 </varlistentry>
399
400 <varlistentry>
401 <term><option>--eltorito-platform-id=<replaceable>id</replaceable></option></term>
402 <listitem><para>Set the El Torito platform ID of the current entry, a new entry of the
403 verification entry depending on when it's used. The ID must be one of:
404 <computeroutput>x86</computeroutput>, <computeroutput>PPC</computeroutput>,
405 <computeroutput>Mac</computeroutput>, <computeroutput>efi</computeroutput></para>
406 </listitem>
407 </varlistentry>
408
409 <varlistentry>
410 <term><option>-c <replaceable>namespec</replaceable></option></term>
411 <term><option>--boot-catalog=<replaceable>namespec</replaceable></option></term>
412 <listitem><para>Enters the El Torito boot catalog into the namespaces as a file. The
413 <replaceable>namespec</replaceable> uses the same format as a 'filespec', but omits the
414 final source file system name component.</para>
415 </listitem>
416 </varlistentry>
417
418 <varlistentry>
419 <term><option>-G <replaceable>file</replaceable></option></term>
420 <term><option>--generic-boot=<replaceable>file</replaceable></option></term>
421 <listitem><para>Specifies a file that should be loaded at offset 0 in the ISO image. The
422 file must not be larger than 32KB. When creating a hybrid image, parts of this may be
423 regenerated by partition tables and such.</para>
424 </listitem>
425 </varlistentry>
426
427 </variablelist>
428 </refsect2>
429
430 <refsect2 id="viso-options-string-properties">
431 <title>String properties (applied to active namespaces only)</title>
432 <variablelist>
433
434 <varlistentry>
435 <term><option>--abstract=<replaceable>file-id</replaceable></option></term>
436 <listitem><para>The name of the abstract file in the root dir.</para></listitem>
437 </varlistentry>
438
439 <varlistentry>
440 <term><option>-A <replaceable>text|_file-id</replaceable></option></term>
441 <term><option>--application-id=<replaceable>text|_file-id</replaceable></option></term>
442 <listitem><para>Application ID string or root file name. The latter must be prefixed with
443 an underscore.</para>
444 </listitem>
445 </varlistentry>
446
447 <varlistentry>
448 <term><option>--biblio=<replaceable>file-id</replaceable></option></term>
449 <listitem><para>The name of the bibliographic file in the root dir.</para></listitem>
450 </varlistentry>
451
452 <varlistentry>
453 <term><option>--copyright=<replaceable>file-id</replaceable></option></term>
454 <listitem><para>The name of the copyright file in the root dir.</para></listitem>
455 </varlistentry>
456
457 <varlistentry>
458 <term><option>-P <replaceable>text|_file-id</replaceable></option></term>
459 <term><option>--publisher=<replaceable>text|_file-id</replaceable></option></term>
460 <listitem><para>Publisher ID string or root file name. The latter must be prefixed with an
461 underscore.</para>
462 </listitem>
463 </varlistentry>
464
465 <varlistentry>
466 <term><option>-p <replaceable>text|_file-id</replaceable></option></term>
467 <term><option>--preparer=<replaceable>text|_file-id</replaceable></option></term>
468 <listitem><para>Data preparer ID string or root file name. The latter must be prefixed
469 with an underscore.</para>
470 </listitem>
471 </varlistentry>
472
473 <varlistentry>
474 <term><option>--sysid=<replaceable>text</replaceable></option></term>
475 <listitem><para>System ID string.</para></listitem>
476 </varlistentry>
477
478 <varlistentry>
479 <term><option>--volid=<replaceable>text</replaceable></option></term>
480 <term><option>--volume-id=<replaceable>text</replaceable></option></term>
481 <listitem><para>Volume ID string (label). (It is possible to set different labels for
482 primary ISO 9660, joliet, UDF and HFS by changing the active namespaces using the
483 <option>--name-setup</option> option between <option>--volume-id</option> occurences.)</para>
484 </listitem>
485 </varlistentry>
486
487 <varlistentry>
488 <term><option>--volset=<replaceable>text</replaceable></option></term>
489 <listitem><para>Volume set ID string.</para></listitem>
490 </varlistentry>
491
492 </variablelist>
493 </refsect2>
494
495 <refsect2 id="viso-options-compatibility">
496 <title>Compatibility:</title>
497 <variablelist>
498
499 <varlistentry>
500 <term><option>--graft-points</option></term>
501 <listitem><para>Alias for --name-setup iso+joliet+udf+hfs.</para></listitem>
502 </varlistentry>
503
504 <varlistentry>
505 <term><option>-l</option></term>
506 <term><option>--long-names</option></term>
507 <listitem><para>Allow 31 charater filenames. Just ensure ISO level >= 2 here.</para></listitem>
508 </varlistentry>
509
510 <varlistentry>
511 <term><option>-R</option></term>
512 <term><option>--rock</option></term>
513 <listitem><para>Same as <option>--rock-ridge</option> and <option>--strict-attribs</option>.</para></listitem>
514 </varlistentry>
515
516 <varlistentry>
517 <term><option>-r</option></term>
518 <term><option>--rational-rock</option></term>
519 <listitem><para>Same as <option>--rock-ridge</option> and <option>--rational-attribs</option>.</para></listitem>
520 </varlistentry>
521
522 </variablelist>
523 </refsect2>
524
525
526 <refsect2 id="viso-options-viso-specific">
527 <title>VISO Specific:</title>
528 <variablelist>
529
530 <varlistentry>
531 <term><option>--iprt-iso-maker-file-marker=<replaceable>UUID</replaceable></option></term>
532 <term><option>--iprt-iso-maker-file-marker-bourne=<replaceable>UUID</replaceable></option></term>
533 <term><option>--iprt-iso-maker-file-marker-bourne-sh=<replaceable>UUID</replaceable></option></term>
534 <listitem><para>Used as first option in a VISO file to specify the file UUID and that it is
535 formatted using bourne-shell argument quoting &amp; escaping style.</para>
536 </listitem>
537 </varlistentry>
538
539 <varlistentry>
540 <term><option>--iprt-iso-maker-file-marker-ms=<replaceable>UUID</replaceable></option></term>
541 <term><option>--iprt-iso-maker-file-marker-ms-sh=<replaceable>UUID</replaceable></option></term>
542 <listitem><para>Used as first option in a VISO file to specify the file UUID and that it is
543 formatted using microsoft CRT argument quoting &amp; escaping style.</para>
544 </listitem>
545 </varlistentry>
546
547 </variablelist>
548 </refsect2>
549
550
551 <refsect2 id="viso-options-testing">
552 <title>Testing (not applicable to VISO):</title>
553 <variablelist>
554
555 <varlistentry>
556 <term><option>--output-buffer-size=<replaceable>bytes</replaceable></option></term>
557 <listitem><para>Selects a specific output buffer size for testing virtual image reads.</para></listitem>
558 </varlistentry>
559
560 <varlistentry>
561 <term><option>--random-output-buffer-size</option></term>
562 <listitem><para>Enables randomized buffer size for each virtual image read, using the
563 current output buffer size (<option>--output-buffer-size</option>) as maximum.</para>
564 </listitem>
565 </varlistentry>
566
567 <varlistentry>
568 <term><option>--random-order-verification=<replaceable>size</replaceable></option></term>
569 <listitem><para>Enables verification pass of the image that compares blocks of the given
570 size in random order from the virtual and output images.</para>
571 </listitem>
572 </varlistentry>
573
574 </variablelist>
575 </refsect2>
576
577 </refsect1>
578</refentry>
579
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