ELF informations

All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
Post Reply
User avatar
Jeko
Member
Member
Posts: 500
Joined: Fri Mar 17, 2006 12:00 am
Location: Napoli, Italy

ELF informations

Post by Jeko »

How can I see informations about ELF files? (sections, entry point, symbols, etc.)
I think with objdump, but I'm not sure.
Rewriting virtual memory manager - Working on ELF support - Working on Device Drivers Handling

http://sourceforge.net/projects/jeko - Jeko Operating System
User avatar
JackScott
Member
Member
Posts: 1031
Joined: Thu Dec 21, 2006 3:03 am
Location: Hobart, Australia
Contact:

Re: ELF informations

Post by JackScott »

Try:

Code: Select all

objdump -x [file]
User avatar
AJ
Member
Member
Posts: 2646
Joined: Sun Oct 22, 2006 7:01 am
Location: Devon, UK
Contact:

Re: ELF informations

Post by AJ »

Yes, it's objdump:

Code: Select all

objdump -x [binary] > [outputfile]
With the -d switch, you also get a disassembly. If you use the --help switch, you'll get a list of params.

Cheers,
Adam
jgraef
Member
Member
Posts: 47
Joined: Wed Jan 16, 2008 7:37 am
Location: Wonsheim, Germany

Re: ELF informations

Post by jgraef »

Hi,

Code: Select all

$ readelf
Post Reply