Skip to content

Stackwalking the Windows dump files on Linux

  1. Ensure you have Rust and install minidump-stackwalk via Cargo
    bash
    cargo install minidump-stackwalk
  2. Now you can stackwalk the minidump file with this command!
    bash
    minidump-stackwalk file.dmp

You can also view the crates.io page if you aren't sure if it's maintained or not.

TIP

You can also append > file.txt if you want to read the file later like so;

bash
minidump-stackwalk file.dmp > file.txt