System Grab Bag

View all TLDR pages from common (or from all pages)

objdump

View information about object files. More information: https://manned.org/objdump.
  • Display the file header information:
    objdump -f {{binary}}
  • Display all header information:
    objdump -x {{binary}}
  • Display the disassembled output of executable sections:
    objdump -d {{binary}}
  • Display the disassembled executable sections in intel syntax:
    objdump -M intel -d {{binary}}
  • Display a complete binary hex dump of all sections:
    objdump -s {{binary}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.