2005-12-08 12:14:33 +00:00
|
|
|
=head1 NAME
|
|
|
|
|
2007-11-11 22:54:56 +00:00
|
|
|
vos_backupsys - Creates a backup volume for several read/write volumes
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
2006-03-01 05:02:29 +00:00
|
|
|
=for html
|
|
|
|
<div class="synopsis">
|
|
|
|
|
|
|
|
B<vos backupsys> S<<< [B<-prefix> <I<common prefix on volume(s)>>+] >>>
|
2009-10-08 18:31:00 +01:00
|
|
|
S<<< [B<-server> <I<machine name>>] >>>
|
|
|
|
S<<< [B<-partition> <I<partition name>>] >>>
|
2006-03-01 05:02:29 +00:00
|
|
|
[B<-exclude>] S<<< [B<-xprefix> <I<negative prefix on volume(s)>>+] >>>
|
2009-10-08 18:31:00 +01:00
|
|
|
[B<-dryrun>] S<<< [B<-cell> <I<cell name>>] >>>
|
|
|
|
[B<-noauth>] [B<-localauth>]
|
2013-06-20 23:45:05 +01:00
|
|
|
[B<-verbose>] [B<-encrypt>] [B<-noresolve>]
|
|
|
|
S<<< [B<-config> <I<config directory>>] >>>
|
|
|
|
[B<-help>]
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2006-03-01 05:02:29 +00:00
|
|
|
B<vos backups> S<<< [B<-pr> <I<common prefix on volume(s)>>+] >>>
|
2009-10-08 18:31:00 +01:00
|
|
|
S<<< [B<-s> <I<machine name>>] >>> S<<< [B<-pa> <I<partition name>>] >>>
|
|
|
|
[B<-ex>] S<<< [B<-x> <I<negative prefix on volume(s)>>+] >>> [B<-d>]
|
|
|
|
S<<< [B<-c> <I<cell name>>] >>> [B<-noa>] [B<-l>] [B<-v>]
|
2013-06-20 23:45:05 +01:00
|
|
|
[B<-en>] [B<-nor>]
|
|
|
|
S<<< [B<-co> <I<config directory>>] >>>
|
|
|
|
[B<-h>]
|
2006-03-01 05:02:29 +00:00
|
|
|
|
|
|
|
=for html
|
|
|
|
</div>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The B<vos backupsys> command clones each indicated read/write volume to
|
|
|
|
create a backup version, placing each clone at the same site as its
|
2005-12-08 12:14:33 +00:00
|
|
|
read/write source version. It assigns each clone the same name as the
|
2005-12-09 14:48:56 +00:00
|
|
|
read/write source, adding a C<.backup> extension. It assigns the volume ID
|
|
|
|
number already allocated for the backup version in the Volume Location
|
|
|
|
Database (VLDB). If a backup version already exists for a given volume,
|
|
|
|
the new clone replaces it.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
To clone every read/write volume listed in the VLDB, omit all of the
|
2005-12-09 14:48:56 +00:00
|
|
|
command's options. Otherwise, combine the command's options to clone
|
|
|
|
various groups of volumes. The options use one of two basic criteria to
|
|
|
|
select volumes: location (the B<-server> and B<-partition> arguments) or
|
|
|
|
presence in the volume name of one of a set of specified character strings
|
|
|
|
(the B<-prefix>, B<-exclude>, and B<-xprefix> options).
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
To clone only volumes that reside on one file server machine, include the
|
2005-12-09 14:48:56 +00:00
|
|
|
B<-server> argument. To clone only volumes that reside on one partition,
|
|
|
|
combine the B<-server> and B<-partition> arguments. The B<-partition>
|
|
|
|
argument can also be used alone to clone volumes that reside on the
|
|
|
|
indicated partition on every file server machine. These arguments can be
|
|
|
|
combined with those that select volumes based on their names.
|
|
|
|
|
|
|
|
Combine the B<-prefix>, -exclude, and B<-xprefix> options (with or without
|
|
|
|
the B<-server> and B<-partition> arguments) in the indicated ways to
|
|
|
|
select volumes based on character strings contained in their names:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item *
|
|
|
|
|
|
|
|
To clone every read/write volume at the specified location whose name
|
2005-12-09 14:48:56 +00:00
|
|
|
includes one of a set of specified character strings (for example, begins
|
|
|
|
with C<user.> or includes the string C<afs>), use the B<-prefix> argument
|
|
|
|
or combine the B<-xprefix> and B<-exclude> options.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=item *
|
|
|
|
|
|
|
|
To clone every read/write volume at the specified location except those
|
|
|
|
whose name includes one of a set of specified character strings, use the
|
2005-12-09 14:48:56 +00:00
|
|
|
B<-xprefix> argument or combine the B<-prefix> and B<-exclude> options.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=item *
|
|
|
|
|
|
|
|
To clone every read/write volume at the specified location whose name
|
|
|
|
includes one of one of a set of specified character strings, except those
|
|
|
|
whose names include one of a different set of specified character strings,
|
2005-12-09 14:48:56 +00:00
|
|
|
combine the B<-prefix> and B<-xprefix> arguments. The command creates a
|
|
|
|
list of all volumes that match the B<-prefix> argument and then removes
|
|
|
|
from the list the volumes that match the B<-xprefix> argument. For
|
|
|
|
effective results, the strings specified by the B<-xprefix> argument must
|
|
|
|
designate a subset of the volumes specified by the B<-prefix> argument.
|
|
|
|
|
|
|
|
If the B<-exclude> flag is combined with the B<-prefix> and B<-xprefix>
|
|
|
|
arguments, the command creates a list of all volumes that do not match the
|
|
|
|
B<-prefix> argument and then adds to the list any volumes that match the
|
|
|
|
B<-xprefix> argument. As when the B<-exclude> flag is not used, the result
|
|
|
|
is effective only if the strings specified by the B<-xprefix> argument
|
|
|
|
designate a subset of the volumes specified by the B<-prefix> argument.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=back
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The B<-prefix> and B<-xprefix> arguments both accept multiple values,
|
|
|
|
which can be used to define disjoint groups of volumes. Each value can be
|
|
|
|
one of two types:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2006-02-27 20:46:25 +00:00
|
|
|
=over 4
|
|
|
|
|
2005-12-08 12:14:33 +00:00
|
|
|
=item *
|
|
|
|
|
|
|
|
A simple character string, which matches volumes whose name begin with the
|
2005-12-09 14:48:56 +00:00
|
|
|
string. All characters are interpreted literally (that is, characters that
|
|
|
|
potentially have special meaning to the command shell, such as the period,
|
|
|
|
have only their literal meaning).
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=item *
|
|
|
|
|
|
|
|
A regular expression, which matches volumes whose names contain the
|
2005-12-09 14:48:56 +00:00
|
|
|
expressions. Place a caret (C<^>) at the beginning of the expression, and
|
|
|
|
enclose the entire string in single quotes (C<''>). Explaining regular
|
2005-12-08 12:14:33 +00:00
|
|
|
expressions is outside the scope of this reference page; see the UNIX
|
2005-12-09 14:48:56 +00:00
|
|
|
manual page for regexp(5) or (for a brief introduction)
|
|
|
|
L<backup_addvolentry(8)>. As an example, the following expression matches
|
|
|
|
volumes that have the string C<aix> anywhere in their names:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
-prefix '^.*aix'
|
|
|
|
|
2007-08-18 01:35:44 +01:00
|
|
|
=back
|
2006-02-27 20:46:25 +00:00
|
|
|
|
2005-12-08 12:14:33 +00:00
|
|
|
To display a list of the volumes to be cloned, without actually cloning
|
2005-12-09 14:48:56 +00:00
|
|
|
them, include the B<-dryrun> flag. To display a statement that summarizes
|
|
|
|
the criteria being used to select volume, include the B<-verbose> flag.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
This command can be used to clone a single read/write volume; specify its
|
|
|
|
complete name as the B<-prefix> argument. However, it is more efficient to
|
|
|
|
use the B<vos backup> command, which employs a more streamlined technique
|
|
|
|
for finding a single volume.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 OPTIONS
|
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-prefix> <I<common prefix>>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
Specifies one or more simple character strings or regular expressions of
|
|
|
|
any length; a volume whose name includes the string is placed on the set
|
|
|
|
of volumes to be cloned. Include field separators (such as periods) if
|
|
|
|
appropriate. This argument can be combined with any combination of the
|
2005-12-09 14:48:56 +00:00
|
|
|
B<-server>, B<-partition>, B<-exclude>, and B<-xprefix> options.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-server> <I<machine name>>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
Identifies the file server machine where each read/write source volume
|
2005-12-09 14:48:56 +00:00
|
|
|
resides. Provide the machine's IP address or its host name (either fully
|
|
|
|
qualified or using an unambiguous abbreviation). For details, see
|
|
|
|
L<vos(1)>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
This argument can be combined with any combination of the B<-prefix>,
|
|
|
|
B<-partition>, B<-exclude>, and B<-xprefix> options.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-partition> <I<partition name>>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
Identifies the partition where each read/write source volume
|
2005-12-09 14:48:56 +00:00
|
|
|
resides. Provide the partition's complete name with preceding slash (for
|
|
|
|
example, C</vicepa>) or use one of the three acceptable abbreviated
|
|
|
|
forms. For details, see L<vos(1)>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
This argument can be combined with any combination of the B<-prefix>,
|
|
|
|
B<-server>, B<-exclude>, and B<-xprefix> options.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-exclude>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Reverses the meaning of the B<-prefix> or B<-xprefix> argument. This flag
|
|
|
|
can be combined with any combination of the B<-prefix>, B<-server>,
|
|
|
|
B<-partition>, and B<-xprefix> options.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-xprefix> <I<negative prefix>>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Specifies a simple character string or regular expression of any length; a
|
|
|
|
volume whose name includes the string is removed from the set of volumes
|
|
|
|
to be cloned. Include field separators (such as periods) if
|
2005-12-08 12:14:33 +00:00
|
|
|
appropriate. This argument can be combined with any combination of the
|
2005-12-09 14:48:56 +00:00
|
|
|
B<-prefix>, B<-server>, B<-partition>, and B<-exclude> options.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
=item B<-dryrun>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
Displays on the standard output stream a list of the volumes to be cloned,
|
|
|
|
without actually cloning them.
|
|
|
|
|
2013-06-30 03:06:51 +01:00
|
|
|
=include fragments/vos-common.pod
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 OUTPUT
|
|
|
|
|
|
|
|
The command generates the following messages on the standard output stream
|
|
|
|
to confirm that the operation was successful:
|
|
|
|
|
|
|
|
done
|
2005-12-09 14:48:56 +00:00
|
|
|
Total volumes backed up: <number_cloned>; failed to backup: <failures>
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
If the B<-dryrun> flag is included, a list of the volumes to be backed up
|
|
|
|
precedes the standard confirmation messages.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
If the B<-verbose> flag is included but not the B<-dryrun> flag, the
|
|
|
|
following messages appear for each volume. The output concludes with the
|
|
|
|
standard confirmation messages.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Creating backup volume for <volume_name> on <date/time>
|
|
|
|
{Recloning backup volume | Creating a new backup clone} <backup_volumeID> . . .done
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
If both the B<-dryrun> and B<-verbose> flags are included, the output
|
|
|
|
begins with a statement summarizing the criteria being used to select the
|
|
|
|
volumes, followed by a list of the volumes and the standard confirmation
|
|
|
|
messages. The format of the criteria summary statement depends on which
|
|
|
|
other options are provided:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=over 4
|
|
|
|
|
|
|
|
=item *
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
If only the B<-prefix> argument is provided, or the B<-xprefix> and
|
|
|
|
B<-exclude> options are combined:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Would have backed up volumes which are prefixed with <string> [or <string>] . .
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=item *
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
If only the B<-xprefix> argument is provided, or the B<-prefix> and
|
|
|
|
B<-exclude> options are combined:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Would have backed up volumes which are not prefixed with <string> [nor <string>] . .
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=item *
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
If the B<-prefix> and B<-xprefix> arguments are combined:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Would have backed up volumes which are prefixed with <string> [or <string>] \
|
|
|
|
removing those which are prefixed with <x_string> [or <x_string>] . .
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=item *
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
If the B<-prefix>, B<-xprefix>, and B<-exclude> options are provided:
|
2005-12-08 12:14:33 +00:00
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
Would have backed up volumes which are not prefixed with <string> [nor <string>] \
|
|
|
|
adding those which are prefixed with <x_string> [or <x_string>] . .
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
=head1 EXAMPLES
|
|
|
|
|
|
|
|
The following example creates a backup version of every read/write volume
|
2005-12-09 14:48:56 +00:00
|
|
|
listed in the cell's VLDB whose name begins with the string B<user>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
% vos backupsys -prefix user
|
|
|
|
|
doc: replace hostnames with IETF example hostnames
There were several different real and made-up hostnames and company names used
throughout our documentation examples.
The IETF has reserved "example.com" and other "example" TLDs for use in
examples (RFC 2606). Replace almost all references to ABC Corporation, DEF
Corporation, and State University, as well as "abc.com", "bigcell.com",
"def.com", "def.gov", "ghi.com", "ghi.gov", "jkl.com", "mit.edu",
"stanford.edu", "state.edu", "stateu.edu", "uncc.edu", and "xyz.com".
Standardize on "Example Corporation", "Example Network", "Example
Organization" (example.com, example.net, and example.org).
The Scout documentation in the Admin Guide contains PNG images that contain
the old cell names, so I left those references until the images can be
replaced.
Change-Id: I4e44815b2d2ffe204810b7fd850842248f67c367
Reviewed-on: http://gerrit.openafs.org/6697
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
2012-02-11 16:43:30 +00:00
|
|
|
The following example, appropriate in the Example Corporation cell, creates a
|
2005-12-08 12:14:33 +00:00
|
|
|
backup version of every read/write volume on the file server machine
|
doc: replace hostnames with IETF example hostnames
There were several different real and made-up hostnames and company names used
throughout our documentation examples.
The IETF has reserved "example.com" and other "example" TLDs for use in
examples (RFC 2606). Replace almost all references to ABC Corporation, DEF
Corporation, and State University, as well as "abc.com", "bigcell.com",
"def.com", "def.gov", "ghi.com", "ghi.gov", "jkl.com", "mit.edu",
"stanford.edu", "state.edu", "stateu.edu", "uncc.edu", and "xyz.com".
Standardize on "Example Corporation", "Example Network", "Example
Organization" (example.com, example.net, and example.org).
The Scout documentation in the Admin Guide contains PNG images that contain
the old cell names, so I left those references until the images can be
replaced.
Change-Id: I4e44815b2d2ffe204810b7fd850842248f67c367
Reviewed-on: http://gerrit.openafs.org/6697
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
2012-02-11 16:43:30 +00:00
|
|
|
C<fs3.example.com>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
doc: replace hostnames with IETF example hostnames
There were several different real and made-up hostnames and company names used
throughout our documentation examples.
The IETF has reserved "example.com" and other "example" TLDs for use in
examples (RFC 2606). Replace almost all references to ABC Corporation, DEF
Corporation, and State University, as well as "abc.com", "bigcell.com",
"def.com", "def.gov", "ghi.com", "ghi.gov", "jkl.com", "mit.edu",
"stanford.edu", "state.edu", "stateu.edu", "uncc.edu", and "xyz.com".
Standardize on "Example Corporation", "Example Network", "Example
Organization" (example.com, example.net, and example.org).
The Scout documentation in the Admin Guide contains PNG images that contain
the old cell names, so I left those references until the images can be
replaced.
Change-Id: I4e44815b2d2ffe204810b7fd850842248f67c367
Reviewed-on: http://gerrit.openafs.org/6697
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
2012-02-11 16:43:30 +00:00
|
|
|
% vos backupsys -server fs3.example.com
|
2005-12-08 12:14:33 +00:00
|
|
|
|
doc: replace hostnames with IETF example hostnames
There were several different real and made-up hostnames and company names used
throughout our documentation examples.
The IETF has reserved "example.com" and other "example" TLDs for use in
examples (RFC 2606). Replace almost all references to ABC Corporation, DEF
Corporation, and State University, as well as "abc.com", "bigcell.com",
"def.com", "def.gov", "ghi.com", "ghi.gov", "jkl.com", "mit.edu",
"stanford.edu", "state.edu", "stateu.edu", "uncc.edu", and "xyz.com".
Standardize on "Example Corporation", "Example Network", "Example
Organization" (example.com, example.net, and example.org).
The Scout documentation in the Admin Guide contains PNG images that contain
the old cell names, so I left those references until the images can be
replaced.
Change-Id: I4e44815b2d2ffe204810b7fd850842248f67c367
Reviewed-on: http://gerrit.openafs.org/6697
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
2012-02-11 16:43:30 +00:00
|
|
|
The following example, appropriate in the Example Organization cell, creates a
|
2005-12-08 12:14:33 +00:00
|
|
|
backup version of every read/write volume on the file server machine
|
doc: replace hostnames with IETF example hostnames
There were several different real and made-up hostnames and company names used
throughout our documentation examples.
The IETF has reserved "example.com" and other "example" TLDs for use in
examples (RFC 2606). Replace almost all references to ABC Corporation, DEF
Corporation, and State University, as well as "abc.com", "bigcell.com",
"def.com", "def.gov", "ghi.com", "ghi.gov", "jkl.com", "mit.edu",
"stanford.edu", "state.edu", "stateu.edu", "uncc.edu", and "xyz.com".
Standardize on "Example Corporation", "Example Network", "Example
Organization" (example.com, example.net, and example.org).
The Scout documentation in the Admin Guide contains PNG images that contain
the old cell names, so I left those references until the images can be
replaced.
Change-Id: I4e44815b2d2ffe204810b7fd850842248f67c367
Reviewed-on: http://gerrit.openafs.org/6697
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
2012-02-11 16:43:30 +00:00
|
|
|
C<db1.example.org> except those whose name includes the string C<temp>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
doc: replace hostnames with IETF example hostnames
There were several different real and made-up hostnames and company names used
throughout our documentation examples.
The IETF has reserved "example.com" and other "example" TLDs for use in
examples (RFC 2606). Replace almost all references to ABC Corporation, DEF
Corporation, and State University, as well as "abc.com", "bigcell.com",
"def.com", "def.gov", "ghi.com", "ghi.gov", "jkl.com", "mit.edu",
"stanford.edu", "state.edu", "stateu.edu", "uncc.edu", and "xyz.com".
Standardize on "Example Corporation", "Example Network", "Example
Organization" (example.com, example.net, and example.org).
The Scout documentation in the Admin Guide contains PNG images that contain
the old cell names, so I left those references until the images can be
replaced.
Change-Id: I4e44815b2d2ffe204810b7fd850842248f67c367
Reviewed-on: http://gerrit.openafs.org/6697
Reviewed-by: Jeffrey Altman <jaltman@secure-endpoints.com>
Tested-by: Jeffrey Altman <jaltman@secure-endpoints.com>
2012-02-11 16:43:30 +00:00
|
|
|
% vos backupsys -server db1.example.org -prefix '^.*temp'
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
The following example creates a backup version of every volume listed in
|
2005-12-09 14:48:56 +00:00
|
|
|
the cell's VLDB, excluding those whose names contain the string C<source>,
|
|
|
|
but including those whose names contain the string C<source.current>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
% vos backupsys -prefix '^.*source' -exclude -xprefix '^.*source\.current'
|
|
|
|
|
|
|
|
=head1 PRIVILEGE REQUIRED
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
The issuer must be listed in the F</usr/afs/etc/UserList> file on the
|
|
|
|
machine specified with the B<-server> argument and on each database server
|
|
|
|
machine. If the B<-localauth> flag is included, the issuer must instead be
|
|
|
|
logged on to a server machine as the local superuser C<root>.
|
2005-12-08 12:14:33 +00:00
|
|
|
|
|
|
|
=head1 SEE ALSO
|
|
|
|
|
2005-12-09 14:48:56 +00:00
|
|
|
L<backup_addvolentry(8)>,
|
2005-12-08 12:14:33 +00:00
|
|
|
L<vos(1)>,
|
|
|
|
L<vos_backup(1)>
|
|
|
|
|
|
|
|
UNIX manual page for regexp(5)
|
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
|
|
|
IBM Corporation 2000. <http://www.ibm.com/> All Rights Reserved.
|
|
|
|
|
|
|
|
This documentation is covered by the IBM Public License Version 1.0. It was
|
|
|
|
converted from HTML to POD by software written by Chas Williams and Russ
|
|
|
|
Allbery, based on work by Alf Wachsmann and Elizabeth Cassell.
|