Forrest logo
tool overview
On this page you find all important commands for the CLI tool xmount. If the command you are looking for is missing please ask our AI.

xmount

xmount is a command line tool used for attaching forensic disk images and virtual disk files to a local system. It supports various types of disk image formats, including raw, EWF (EnCase), AFF (Advanced Forensic Format), and VMDK (Virtual Machine Disk). The tool allows read-only access to these disk images, ensuring data integrity is maintained during the analysis process. xmount also provides the ability to mount these disk images as a physical device or a virtual read-only disk using the FUSE (Filesystem in Userspace) module. This feature allows investigators and analysts to access the contents of these mounted images using regular file system operations. Additionally, xmount offers various options to optimize performance, such as memory mapping and caching, to enhance the analysis of large disk images. Overall, xmount is a powerful tool that facilitates the mounting and exploration of forensic disk images within a command line environment.

List of commands for xmount:

  • xmount:tldr:b4032 xmount: Mount an EWF image file with write-cache support into a VHD file to boot from.
    $ xmount --cache ${path-to-cache-ovl} --in ${ewf} ${path-to-image-E??} --out ${vhd} ${mountpoint}
    try on your machine
    explain this command
  • xmount:tldr:eb192 xmount: Mount a `.raw` image file into a DMG container file.
    $ xmount --in ${raw} ${path-to-image-dd} --out ${dmg} ${mountpoint}
    try on your machine
    explain this command
  • xmount:tldr:fa5df xmount: Mount the first partition at sector 2048 into a new `.raw` image file.
    $ xmount --offset ${2048} --in ${raw} ${path-to-image-dd} --out ${raw} ${mountpoint}
    try on your machine
    explain this command
tool overview