I want to know the list of binary tools available in my system.where are these binutils located?
Asked
Active
Viewed 2,937 times
3 Answers
1
Open a terminal and use this command to find where binutils files have been installed:
cat /var/lib/dpkg/info/binutils.list | less
Andy
- 393
1
All of the programs from the binutils package are located in /usr/bin. They are:
addr2line ar as c++filt dwp elfedit gold gprof ld ld.bfd ld.gold nm objcopy objdump ranlib readelf size strings strip
karel
- 122,292
- 133
- 301
- 332
0
You can use the following command in a terminal:
dpkg-query -L binutils | grep -oP "/usr/bin/\K([a-zA-Z\.-_\+]+$)" | sort
addr2line
ar
as
c++filt
dwp
elfedit
gold
gprof
ld
ld.bfd
ld.gold
nm
objcopy
objdump
ranlib
readelf
size
strings
strip
It returns all files installed in /usr/bin/ provided by the binutils package.
The same list can also be found on http://packages.ubuntu.com/trusty/amd64/binutils/filelist.
Sylvain Pineau
- 63,229