objdump
View information about object files. More information: <https://manned.org/objdump>.
Install
- All systems
-
curl cmd.cat/objdump.sh
- Debian
-
apt-get install binutils-i586-linux-gnu
- Ubuntu
-
apt-get install binutils-2.26
- Alpine
-
apk add binutils
- Arch Linux
-
pacman -S aarch64-linux-gnu-binutils
- Kali Linux
-
apt-get install binutils-mipsisa32r6el-linux-gnu
- CentOS
-
yum install binutils
- Fedora
-
dnf install binutils-arc-linux-gnu
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install binutils-2.26
- OS X
-
brew install binutils
- Raspbian
-
apt-get install binutils-multiarch
- Dockerfile
- dockerfile.run/objdump
- Docker
-
docker run cmd.cat/objdump objdump
powered by Commando
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
© tl;dr; authors and contributors