VirtualBox

source: vbox/trunk/doc/manual/en_US/man_VBoxManage-extpack.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: 5.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 manpage, user manual, usage: VBoxManage extpack
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<!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-extpack" lang="en">
21 <refentryinfo>
22 <pubdate>$Date: 2022-02-16 19:28:38 +0000 (Wed, 16 Feb 2022) $</pubdate>
23 <title>VBoxManage extpack</title>
24 </refentryinfo>
25
26 <refmeta>
27 <refentrytitle>VBoxManage-extpack</refentrytitle>
28 <manvolnum>1</manvolnum>
29 </refmeta>
30
31 <refnamediv>
32 <refname>VBoxManage-extpack</refname>
33 <refpurpose>extension package management</refpurpose>
34 <refclass>&product-name;</refclass>
35 </refnamediv>
36
37 <refsynopsisdiv>
38 <cmdsynopsis id="synopsis-vboxmanage-extpack-install"> <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
39 <command>VBoxManage extpack install</command>
40 <arg>--replace</arg>
41 <arg>--accept-license=<replaceable>sha256</replaceable></arg>
42 <arg choice="req"><replaceable>tarball</replaceable></arg>
43 </cmdsynopsis>
44 <cmdsynopsis id="synopsis-vboxmanage-extpack-uninstall">
45 <command>VBoxManage extpack uninstall</command>
46 <arg>--force</arg>
47 <arg choice="req"><replaceable>name</replaceable></arg>
48 </cmdsynopsis>
49 <cmdsynopsis id="synopsis-vboxmanage-extpack-cleanup">
50 <command>VBoxManage extpack cleanup</command>
51 </cmdsynopsis>
52 </refsynopsisdiv>
53
54 <refsect1>
55 <title>Description</title>
56
57 <refsect2 id="vboxmanage-extpack-install">
58 <title>extpack install</title>
59 <remark role="help-copy-synopsis"/>
60 <para>
61 Installs a new extension pack on the system. This command will fail if an older
62 version of the same extension pack is already installed. The
63 <option>--replace</option> option can be used to uninstall any
64 old package before the new one is installed.
65 </para>
66 <variablelist>
67 <varlistentry>
68 <term><option>--replace</option></term><listitem><para>Uninstall existing extension pack version.</para></listitem>
69 </varlistentry>
70 <varlistentry>
71 <term><option>--accept-license=<replaceable>sha256</replaceable></option></term>
72 <listitem>
73 <para>Accept the license text with the given SHA-256 hash value.</para>
74 <para>VBoxManage will display the SHA-256 value when performing a manual
75 installation. The hash can of course be calculated by looking inside
76 the extension pack and using sha256sum or similar on the license file.</para>
77 </listitem>
78 </varlistentry>
79 <varlistentry>
80 <term><replaceable>tarball</replaceable></term>
81 <listitem>
82 <para>The file containing the extension pack to be installed.</para>
83 </listitem>
84 </varlistentry>
85 </variablelist>
86 </refsect2>
87
88 <refsect2 id="vboxmanage-extpack-uninstall">
89 <title>extpack uninstall</title>
90 <remark role="help-copy-synopsis"/>
91 <para>
92 Uninstalls an extension pack from the system. The subcommand will also succeed
93 in the case where the specified extension pack is not present on the system.
94 You can use <computeroutput>VBoxManage list extpacks</computeroutput> to show
95 the names of the extension packs which are currently installed.
96 </para>
97 <variablelist>
98 <varlistentry>
99 <term><option>--force</option></term>
100 <listitem>
101 <para>Overrides most refusals to uninstall an extension pack</para>
102 </listitem>
103 </varlistentry>
104 <varlistentry>
105 <term><replaceable>name</replaceable></term>
106 <listitem>
107 <para>The name of the extension pack to be uninstalled.</para>
108 </listitem>
109 </varlistentry>
110 </variablelist>
111 </refsect2>
112
113 <refsect2 id="vboxmanage-extpack-cleanup">
114 <title>extpack cleanup</title>
115 <remark role="help-copy-synopsis"/>
116 <para>
117 Used to remove temporary files and directories that may have been left behind
118 if a previous install or uninstall command failed.
119 </para>
120 </refsect2>
121
122 </refsect1>
123
124 <refsect1>
125 <title>Examples</title>
126 <remark role="help-scope" condition="EXTPACK_UNINSTALL,EXTPACK"/>
127 <para>
128 How to list extension packs:
129<screen>$ VBoxManage list extpacks
130Extension Packs: 1
131Pack no. 0: Oracle VM VirtualBox Extension Pack
132Version: 4.1.12
133Revision: 77218
134Edition:
135Description: USB 2.0 Host Controller, VirtualBox RDP, PXE ROM with E1000 support.
136VRDE Module: VBoxVRDP
137Usable: true
138Why unusable:</screen></para>
139
140 <para>How to remove an extension pack:
141<screen>$ VBoxManage extpack uninstall "Oracle VM VirtualBox Extension Pack"
1420%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
143Successfully uninstalled "Oracle VM VirtualBox Extension Pack".</screen></para>
144 </refsect1>
145
146</refentry>
147
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