]> git.sven.stormbind.net Git - sven/exfatprogs.git/blob - manpages/exfat2img.8
Add CVE ID to debian changelog
[sven/exfatprogs.git] / manpages / exfat2img.8
1 .TH exfat2img 8
2 .SH NAME
3 exfat2img \- dump metadata of an exFAT filesystem
4 .SH SYNOPSIS
5 .B exfat2img
6 [
7 .B \-o \fIpath\fB\
8 ] [
9 .B \-V
10 ]
11 .I device
12 .br
13 .B exfat2img \-V
14 .SH DESCRIPTION
15 .B exfat2img
16 dump metadata of exFAT filesystems for debugging. \fBexfat2img\fP dump boot sector, File Allcation Table, Bitmap and all metadata which can reach from root directory.
17
18 .SH OPTIONS
19 .TP
20 .BI \-o\ \-\-output
21 Specify output result file. If filesystem to which output file is written does not support sparse file, you should use '-' in place of \fIpath\fP.
22 Because a dump image generated from stdout has a special format, when restoring a partition from it, exfat2img should be used. See Examples.
23 .TP
24 .B \-V
25 Prints the version number and exits.
26
27 .SH EXAMPLES
28 .PP
29 Dump metadata into a sparse file.
30 .EX
31 .RB "$" " exfat2img -o sda1.dump /dev/sda1
32
33 Dump metadata into standard out and restore a partition
34 .EX
35 .RB "$" " exfat2img -o - /dev/sda1 | bzip2 > sda1.dump.bz2"
36 .RB "$" " bzip2 -dc sda1.dump.bz2 | exfat2img -o /dev/sdb1 -"