1 | <?xml version="1.0" encoding="UTF-8"?>
|
---|
2 | <!--
|
---|
3 | manpage, user manual, usage: VBoxManage showmediuminfo
|
---|
4 | -->
|
---|
5 | <!--
|
---|
6 | Copyright (C) 2006-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-showmediuminfo" lang="en">
|
---|
22 | <refentryinfo>
|
---|
23 | <pubdate>$Date: 2022-08-18 17:27:14 +0000 (Thu, 18 Aug 2022) $</pubdate>
|
---|
24 | <title>VBoxManage showmediuminfo</title>
|
---|
25 | </refentryinfo>
|
---|
26 |
|
---|
27 | <refmeta>
|
---|
28 | <refentrytitle>VBoxManage-showmediuminfo</refentrytitle>
|
---|
29 | <manvolnum>1</manvolnum>
|
---|
30 | </refmeta>
|
---|
31 |
|
---|
32 | <refnamediv>
|
---|
33 | <refname>VBoxManage-showmediuminfo</refname>
|
---|
34 | <refpurpose>show information about a medium</refpurpose>
|
---|
35 | <refclass>&product-name;</refclass>
|
---|
36 | </refnamediv>
|
---|
37 |
|
---|
38 | <refsynopsisdiv>
|
---|
39 | <cmdsynopsis id="synopsis-vboxmanage-showmediuminfo">
|
---|
40 | <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
|
---|
41 | <command>VBoxManage showmediuminfo</command>
|
---|
42 | <group>
|
---|
43 | <arg choice="plain">disk</arg>
|
---|
44 | <arg choice="plain">dvd</arg>
|
---|
45 | <arg choice="plain">floppy</arg>
|
---|
46 | </group>
|
---|
47 | <group choice="req">
|
---|
48 | <arg choice="plain"><replaceable>uuid</replaceable></arg>
|
---|
49 | <arg choice="plain"><replaceable>filename</replaceable></arg>
|
---|
50 | </group>
|
---|
51 | </cmdsynopsis>
|
---|
52 | </refsynopsisdiv>
|
---|
53 |
|
---|
54 | <refsect1>
|
---|
55 | <title>Description</title>
|
---|
56 | <para>
|
---|
57 | The <command>VBoxManage showmediuminfo</command> command shows the
|
---|
58 | following information about a medium:
|
---|
59 | </para>
|
---|
60 | <itemizedlist>
|
---|
61 | <listitem><para>
|
---|
62 | Size
|
---|
63 | </para></listitem>
|
---|
64 | <listitem><para>
|
---|
65 | Size on disk
|
---|
66 | </para></listitem>
|
---|
67 | <listitem><para>
|
---|
68 | Type
|
---|
69 | </para></listitem>
|
---|
70 | <listitem><para>
|
---|
71 | In use by virtual machines (VMs)
|
---|
72 | </para></listitem>
|
---|
73 | </itemizedlist>
|
---|
74 | <para>
|
---|
75 | The medium must be specified either by its UUID, if the medium is
|
---|
76 | registered, or by its filename. Registered images can be listed
|
---|
77 | using <command>VBoxManage list hdds</command>, <command>VBoxManage
|
---|
78 | list dvds</command>, or <command>VBoxManage list
|
---|
79 | floppies</command>, as appropriate.
|
---|
80 | </para>
|
---|
81 | <para>
|
---|
82 | For backward compatibility, you can also use the
|
---|
83 | <command>showvdiinfo</command> command to obtain information about
|
---|
84 | the medium.
|
---|
85 | </para>
|
---|
86 | <variablelist>
|
---|
87 | <varlistentry>
|
---|
88 | <term><literal>disk</literal> | <literal>dvd</literal> | <literal>floppy</literal></term>
|
---|
89 | <listitem><para>
|
---|
90 | Specifies the type of medium. Valid values are
|
---|
91 | <literal>disk</literal> (hard drive),
|
---|
92 | <literal>dvd</literal>, or <literal>floppy</literal>.
|
---|
93 | </para></listitem>
|
---|
94 | </varlistentry>
|
---|
95 | <varlistentry>
|
---|
96 | <term><replaceable>uuid</replaceable> | <replaceable>filename</replaceable></term>
|
---|
97 | <listitem><para>
|
---|
98 | Specifies the Universally Unique Identifier (UUID) or
|
---|
99 | absolute path name of the medium or image.
|
---|
100 | </para><para>
|
---|
101 | If the medium is registered, you can specify the UUID. You
|
---|
102 | can also list registered images by using the
|
---|
103 | <command>VBoxManage list hdds</command>, <command>VBoxManage
|
---|
104 | list dvds</command>, or <command>VBoxManage list
|
---|
105 | floppies</command> command.
|
---|
106 | </para></listitem>
|
---|
107 | </varlistentry>
|
---|
108 | </variablelist>
|
---|
109 | </refsect1>
|
---|
110 |
|
---|
111 | <refsect1>
|
---|
112 | <title>Examples</title>
|
---|
113 | <remark role="help-scope" condition="GLOBAL" />
|
---|
114 | <para>
|
---|
115 | The following command shows information about the
|
---|
116 | <filename>disk01.vdi</filename> disk image:
|
---|
117 | </para>
|
---|
118 | <screen>$ VBoxManage showmediuminfo disk01.vdi</screen>
|
---|
119 | <para>
|
---|
120 | The following command shows information about the
|
---|
121 | <filename>floppy01.img</filename> floppy disk image.
|
---|
122 | </para>
|
---|
123 | <screen>$ VBoxManage showmediuminfo floppy floppy01.img</screen>
|
---|
124 | </refsect1>
|
---|
125 |
|
---|
126 | <refsect1>
|
---|
127 | <title>See Also</title>
|
---|
128 | <para>
|
---|
129 | <xref linkend="vboxmanage-list" />
|
---|
130 | </para>
|
---|
131 | </refsect1>
|
---|
132 | </refentry>
|
---|