Linux中的一些指令

Linux中的一些指令

1.显示寄存器窗口

(gdb) layout regs

2.刷新所有窗口

(gdb) refresh

打包文件夹

tar cvf filename.tar dirname

readelf

readelf -a hello.o(显示全部信息,等价于-h -l -S -s -r -d -V -A -I)

readelf -S hello.o (显示节头信息,如果有的话)


readelf -s hello.o(显示符号表段中的项,如果有的话)

readelf -r hello.o(显示可重定位段的信息)

你可能感兴趣的:(Linux中的一些指令)