HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

mmls — Display the partition layout of a volume system. More information: <https://wiki.sleuthkit.org/index

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thevolumecommandlayoutpartitionclimmlsdisplay

Problem

How to use the mmls command: Display the partition layout of a volume system. More information: <https://wiki.sleuthkit.org/index.php?title=Mmls>.

Solution

mmls — Display the partition layout of a volume system. More information: <https://wiki.sleuthkit.org/index.php?title=Mmls>.

Display the partition table stored in an image file:
mmls {{path/to/image_file}}


Display the partition table with an additional column for the partition size:
mmls -B -i {{path/to/image_file}}


Display the partition table in a split EWF image:
mmls -i ewf {{image.e01}} {{image.e02}}


Display nested partition tables:
mmls -t {{nested_table_type}} -o {{offset}} {{path/to/image_file}}

Code Snippets

Display the partition table stored in an image file

mmls {{path/to/image_file}}

Display the partition table with an additional column for the partition size

mmls -B -i {{path/to/image_file}}

Display the partition table in a split EWF image

mmls -i ewf {{image.e01}} {{image.e02}}

Display nested partition tables

mmls -t {{nested_table_type}} -o {{offset}} {{path/to/image_file}}

Context

tldr-pages: common/mmls

Revisions (0)

No revisions yet.