发布时间:2015-09-15 16:09:33
#!/bin/sh<br /><br /><br />RAM_ROOT=/tmp/root<br /><br /><br />[ -x /usr/bin/ldd ] || ldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }<br />libs() { ldd $* 2>/dev/null | sed -r 's/(.* => )?(.*) .*/\2/'; }<br /><br /><br />install_file() { # <file> [ <file> ... ]<br />for file in "$@"; do<br .........【阅读全文】
发布时间:2015-09-08 13:45:40
<p style="font-family:'Microsoft YaHei';font-size:14px;color:#3F3F3F;line-height:30px;white-space:normal;background-color:#FFFFFF;"><strong style="padding:0px;">1. dd命令简述:</strong></p><p style="font-family:'Microsoft YaHei';font-size:14px;color:#3F3F3F;line-height:30px;white-space:normal;bac.........【阅读全文】
发布时间:2015-09-01 17:21:51
运行switch_root.sh脚本即可切换,脚本代码如下:switch_root.sh#!/bin/shRAM_ROOT=/tmp/rootldd() { LD_TRACE_LOADED_OBJECTS=1 $*; }libs() { ldd $* | awk '{print $3}'; }#拷.........【阅读全文】
发布时间:2015-08-22 16:17:45
<span style="color:#333333;font-family:Arial;font-size:14px;line-height:26px;white-space:normal;background-color:#FFFFFF;">红帽(Red Hat)从Enterprise Server 6.2 开始,启动镜像文件initrd.img 开始改用</span><strong style="color:#333333;font-family:Arial;font-size:14px;line-height:26px;white-space:nor.........【阅读全文】
发布时间:2015-07-25 17:50:32
与符号表分离程序或动态库, 如何用GDB调试<br />五竹<br />1 Debugging Information in Separate Files<br />GDB支持用户将程序调试信息放在一个独立的文件里,而不是和可执行程序在一个文件中,GDB可以某种方式来查找和自动加载调试信息。由于调试信息可能非常大,有时可能比可执行代码自身还要大,.........【阅读全文】