I'd like to disassemble the MBR (first 512 bytes) of a bootable x86 disk that I have. I have copied the MBR to a file using
dd if=/dev/my-device of=mbr bs=512 count=1
Any suggestions for a Linux utility that can disassemble the file mbr?
|
|
|
You can use objdump. According to this article the syntax is:
|
|||||||
|
|
The GNU tool is called objdump, for example:
|
|||
|
|
|
I like |
|||
|
Or for a fancy program in the style of the Norton days, see http://hte.sf.net/ |
|||
|
|
Explanation - from ndisasm manpage
|
|||||||||
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.