How can I see informations about ELF files? (sections, entry point, symbols, etc.)
I think with objdump, but I'm not sure.
ELF informations
ELF informations
Rewriting virtual memory manager - Working on ELF support - Working on Device Drivers Handling
http://sourceforge.net/projects/jeko - Jeko Operating System
http://sourceforge.net/projects/jeko - Jeko Operating System
Re: ELF informations
Try:
Code: Select all
objdump -x [file]
Re: ELF informations
Yes, it's objdump:
With the -d switch, you also get a disassembly. If you use the --help switch, you'll get a list of params.
Cheers,
Adam
Code: Select all
objdump -x [binary] > [outputfile]
Cheers,
Adam