1exfat2img(8) System Manager's Manual exfat2img(8)
2
3
4
6 exfat2img - dump metadata of an exFAT filesystem
7
9 exfat2img [ -o path] [ -V ] device
10 exfat2img -V
11
13 exfat2img dump metadata of exFAT filesystems for debugging. exfat2img
14 dump boot sector, File Allcation Table, Bitmap and all metadata which
15 can reach from root directory.
16
17
19 -o --output
20 Specify output result file. If filesystem to which output file
21 is written does not support sparse file, you should use '-' in
22 place of path. Because a dump image generated from stdout has a
23 special format, when restoring a partition from it, exfat2img
24 should be used. See Examples.
25
26 -V Prints the version number and exits.
27
28
30 Dump metadata into a sparse file.
31 $ exfat2img -o sda1.dump /dev/sda1
32
33 Dump metadata into standard out and restore a partition
34 $ exfat2img -o - /dev/sda1 | bzip2 > sda1.dump.bz2
35 $ bzip2 -dc sda1.dump.bz2 | exfat2img -o /dev/sdb1 -
36
37
38
39 exfat2img(8)