Appearance
Stackwalking the Windows dump files on Linux
- Ensure you have Rust and install
minidump-stackwalkvia Cargobashcargo install minidump-stackwalk - 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