Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / doc / man-pages / pod1 / vos_clone.pod.in
CommitLineData
805e021f
CE
1=head1 NAME
2
3vos_clone - Creates a shared-space copy of a volume on a partition
4
5=head1 SYNOPSIS
6
7=for html
8<div class="synopsis">
9
10B<vos clone> S<<< [B<-id>] <I<volume name or ID>> >>>
11 S<<< [B<-server>] <I<server name>> >>>
12 S<<< [B<-partition>] <I<partition name>> >>>
13 S<<< [B<-toname> <I<volume name on destination>>] >>>
14 S<<< [B<-toid> <I<volume ID on destination>>] >>>
15 [B<-offline>] [B<-readonly>] [B<-readwrite>]
16 S<<< [B<-cell> <I<cell name>>] >>> [B<-noauth>] [B<-localauth>]
17 [B<-verbose>] [B<-encrypt>] [B<-noresolve>]
18 S<<< [B<-config> <I<config directory>>] >>>
19 [B<-help>]
20
21B<vos cl> S<<< [B<-i>] <I<volume name or ID>> >>>
22 S<<< [B<-s>] <I<server name>> >>>
23 S<<< [B<-p>] <I<partition name>> >>>
24 S<<< [B<-ton> <I<volume name on destination>>] >>>
25 S<<< [B<-toi> <I<volume ID on destination>>] >>> [B<-o>]
26 [B<-reado>] [B<-readw>]
27 S<<< [B<-c> <I<cell name>>] >>> [B<-noa>]
28 [B<-l>] [B<-v>] [B<-e>] [B<-nor>]
29 S<<< [B<-co> <I<config directory>>] >>>
30 [B<-h>]
31
32=for html
33</div>
34
35=head1 DESCRIPTION
36
37The B<vos clone> command creates a copy-on-write copy of a volume on the
38same partition and server as the parent volume.
39
40A clone is a copy of a volume that only stores the changes from the
41parent volume. Cloning is a primitive operation that is used by the B<vos
42move>, B<vos backup>, and B<vos release> commands. A clone functions using
43the same mechanism as a backup volume, but it is persistent. Clone volumes
44can be used as point-in-time copies of the parent volume, but they must be
45used with care.
46
47=head1 CAUTIONS
48
49This command is not used during normal OpenAFS administration and may
50have adverse effects on the VLDB if not used properly! This command
51should only be used by an expert.
52
53Deleting or moving the parent volume makes the clone volume inaccessible,
54but the clone volume remains in the VLDB and on disk, and it needs to be
55cleaned up manually.
56
57There is a maximum limitation of 7 clones when using the namei
58fileserver. You may safely create up to 4 clones using the B<vos clone>
59command. The other three clone slots are used by the backup volume, a
60read-only replica and the temporary clone that is created when executing a
61B<vos move>, B<vos dump>, or other B<vos> commands.
62
63Some commands do not work properly on clone volumes. B<vos move> is one
64such command.
65
66=include fragments/volsize-caution.pod
67
68=head1 OPTIONS
69
70=over 4
71
72=item B<-id> <I<volume name or ID>>
73
74Specifies either the complete name or volume ID number of a read/write
75volume.
76
77=item B<-server> <I<machine name>>
78
79Identifies the file server machine where the source volume resides. Provide
80the machine's IP address or its host name (either fully qualified or using
81an unambiguous abbreviation). For details, see L<vos(1)>.
82
83=item B<-partition> <I<partition name>>
84
85Names the partition where the source volume resides. Provide the full
86partition name (for, example, B</vicepa>) or one of the abbreviated forms
87described in L<vos(1)>.
88
89=item B<-toname> <I<volume name for new copy>>
90
91The complete name of the new volume to create.
92
93=item B<-toid> <I<volume id for new copy>>
94
95The complete id of the new volume to create.
96
97=item B<-offline>
98
99Leaves the new volume flagged as off-line in the volume database.
100
101=item B<-readonly>
102
103Flags the new volume as read-only in the volume database.
104
105=item B<-readwrite>
106
107Flags the new volume as read-write in the volume database.
108
109=include fragments/vos-common.pod
110
111=back
112
113=head1 OUTPUT
114
115This command has no output unless C<-verbose> is specified or there is
116an error.
117
118=head1 PRIVILEGE REQUIRED
119
120The issuer must be listed in the F</usr/afs/etc/UserList> file on the
121machines specified with the B<-toserver> and B<-fromserver> arguments and
122on each database server machine. If the B<-localauth> flag is included,
123the issuer must instead be logged on to a server machine as the local
124superuser C<root>.
125
126=head1 SEE ALSO
127
128L<vos(1)>,
129L<vos_backup(1)>,
130L<vos_copy(1)>,
131L<vos_move(1)>,
132L<vos_shadow(1)>
133
134=head1 COPYRIGHT
135
136Copyright 2008 Jason Edgecombe <jason@rampaginggeek.com>
137
138This documentation is covered by the BSD License as written in the
139doc/LICENSE file. This man page was written by Jason Edgecombe for
140OpenAFS.