blob: 72f3b297787b70af9a326298f749944313e62006 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
.TH xfs_mdrestore 8
.SH NAME
xfs_mdrestore \- restores an XFS metadump image to a filesystem image
.SH SYNOPSIS
.B xfs_mdrestore
[
.B \-gi
]
.I source
.I target
.br
.B xfs_mdrestore
.B \-i
.I source
.br
.B xfs_mdrestore \-V
.SH DESCRIPTION
.B xfs_mdrestore
is a debugging tool that restores a metadata image generated by
.BR xfs_metadump (8)
to a filesystem. The
.I source
argument specifies the location of the metadump image and the
.I target
argument specifies the destination for the filesystem image.
If the
.I source
is \-, then the metadata image is read from stdin. This allows the output of
be another program such as a compression application to be redirected to
.BR xfs_mdrestore .
The
.I target
can be either a file or a device.
.PP
.B xfs_mdrestore
should not be used to restore metadata onto an existing filesystem unless
you are completely certain the
.I target
can be destroyed.
.PP
.SH OPTIONS
.TP
.B \-g
Shows restore progress on stdout.
.TP
.B \-i
Shows metadump information on stdout. If no
.I target
is specified, exits after displaying information. Older metadumps man not
include any descriptive information.
.TP
.B \-V
Prints the version number and exits.
.SH DIAGNOSTICS
.B xfs_mdrestore
returns an exit code of 0 if all the metadata is successfully restored or
1 if an error occurs.
.SH SEE ALSO
.BR xfs_metadump (8),
.BR xfs_repair (8),
.BR xfs (5)
.SH BUGS
Email bug reports to
.BR linux-xfs@vger.kernel.org .
|