2 Linux Commands I always forget

ldd ldd is good when you need to know what shared dependencies has an executable file. For example. angel@mbweb1:/bin$ ldd /bin/bash libncurses.so.5 => /lib/libncurses.so.5 (0x00002ac651098000) libdl.so.2 => /lib/libdl.so.2 (0x00002ac6512f4000) libc.so.6 => /lib/libc.so.6 (0x00002ac6514f8000) /lib64/ld-linux-x86-64.so.2 (0x00002ac650e7b000) ltrace / dtruss for mac As seen in the manual: ltrace is a program that simply runs the specified command […]