Skip to main content

View information about object files.

# To display the file header information:
objdump -f <binary>

# To display all header information:
objdump -x <binary>

# To display the disassembled output of executable sections:
objdump -d <binary>

# To display the disassembled executable sections in intel syntax:
objdump -M intel -d <binary>

# To display a complete binary hex dump of all sections:
objdump -s <binary>