-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathexfat2img.8
31 lines (29 loc) · 846 Bytes
/
exfat2img.8
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
.TH exfat2img 8
.SH NAME
exfat2img \- dump metadata of an exFAT filesystem
.SH SYNOPSIS
.B exfat2img
[
.B \-o \fIpath\fB\
] [
.B \-V
]
.I device
.br
.B exfat2img \-V
.SH DESCRIPTION
.B exfat2img
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.
.SH OPTIONS
.TP
.BI \-o\ \-\-output
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.
When restoring a partition from a dump image generated from stdout, exfat2img should be used. See Examples.
.TP
.B \-V
Prints the version number and exits.
.SH EXAMPLES
.PP
.EX
.RB "$" " exfat2img -o - /dev/sda1 | bzip2 > sda1.dump.bz2"
.RB "$" " bzip2 -dc sda1.dump.bz2 | exfat2img -o /dev/sdb1 -"