1 | <?xml version="1.0" encoding="UTF-8"?>
|
---|
2 | <!--
|
---|
3 | manpage, user manual, usage: VBoxManage movevm
|
---|
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-movevm" lang="en">
|
---|
21 | <refentryinfo>
|
---|
22 | <pubdate>August 2019</pubdate>
|
---|
23 | <title>VBoxManage movevm</title>
|
---|
24 | </refentryinfo>
|
---|
25 |
|
---|
26 | <refmeta>
|
---|
27 | <refentrytitle>VBoxManage-movevm</refentrytitle>
|
---|
28 | <manvolnum>1</manvolnum>
|
---|
29 | </refmeta>
|
---|
30 |
|
---|
31 | <refnamediv>
|
---|
32 | <refname>VBoxManage-movevm</refname>
|
---|
33 | <refpurpose>move a virtual machine to a new location on the host system</refpurpose>
|
---|
34 | <refclass>Oracle VM VirtualBox</refclass>
|
---|
35 | </refnamediv>
|
---|
36 |
|
---|
37 | <refsynopsisdiv>
|
---|
38 | <cmdsynopsis id="synopsis-vboxmanage-movevm">
|
---|
39 | <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
|
---|
40 | <command>VBoxManage movevm</command>
|
---|
41 | <group choice="req">
|
---|
42 | <arg choice="plain"><replaceable>uuid</replaceable></arg>
|
---|
43 | <arg choice="plain"><replaceable>vmname</replaceable></arg>
|
---|
44 | </group>
|
---|
45 | <arg choice="req">--type=basic</arg>
|
---|
46 | <arg>--folder=<replaceable>folder-name</replaceable></arg>
|
---|
47 | </cmdsynopsis>
|
---|
48 | </refsynopsisdiv>
|
---|
49 |
|
---|
50 | <refsect1>
|
---|
51 | <title>Description</title>
|
---|
52 | <para>
|
---|
53 | The <command>VBoxManage movevm</command> command moves a virtual
|
---|
54 | machine (VM) to a new location on the host system.
|
---|
55 | </para>
|
---|
56 | <para>
|
---|
57 | When moved, all of the files that are associated with the VM, such
|
---|
58 | as settings files and disk image files, are moved to the new
|
---|
59 | location. The &product-name; configuration is updated
|
---|
60 | automatically.
|
---|
61 | </para>
|
---|
62 | <variablelist>
|
---|
63 | <varlistentry>
|
---|
64 | <term><replaceable>uuid</replaceable>|<replaceable>vmname</replaceable></term>
|
---|
65 | <listitem><para>
|
---|
66 | Specifies the Universally Unique Identifier (UUID) or name
|
---|
67 | of the VM to move.
|
---|
68 | </para></listitem>
|
---|
69 | </varlistentry>
|
---|
70 | <varlistentry>
|
---|
71 | <term><option>--type=basic</option></term>
|
---|
72 | <listitem><para>
|
---|
73 | Specifies that the type of the move operation is basic.
|
---|
74 | </para></listitem>
|
---|
75 | </varlistentry>
|
---|
76 | <varlistentry>
|
---|
77 | <term><option>--folder=<replaceable>folder-name</replaceable></option></term>
|
---|
78 | <listitem><para>
|
---|
79 | Specifies a full path name or relative path name of the new
|
---|
80 | location on the host file system.
|
---|
81 | </para></listitem>
|
---|
82 | </varlistentry>
|
---|
83 | </variablelist>
|
---|
84 | </refsect1>
|
---|
85 |
|
---|
86 | <refsect1>
|
---|
87 | <title>Examples</title>
|
---|
88 | <remark role="help-scope" condition="GLOBAL" />
|
---|
89 | <para>
|
---|
90 | The following command moves the <filename>ol7</filename> VM to a
|
---|
91 | new location on the host system.
|
---|
92 | </para>
|
---|
93 | <screen>$ VBoxManage movevm ol7 --folder "/home/testuser/vms" --type basic
|
---|
94 | 0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
|
---|
95 | Machine has been successfully moved into /home/testuser/vms</screen>
|
---|
96 | </refsect1>
|
---|
97 | </refentry>
|
---|