发布时间:2015-09-17 14:22:04
网上升级文章一大把, 可惜和实际的情况总有些出入, 现在遇到reboot的时候bus error<br /><br /><br />可以改用如下方法绕过reboot<br />echo 1 > /proc/sys/kernel/sysrq <br />echo b > /proc/sysrq-trigger<br />#reboot -n -f<br /><br /><br />需要内核支持sysrq 功能(CONFIG_MAGIC_SYSRQ)<br />.........【阅读全文】
发布时间: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.........【阅读全文】