Tag - linux

Entries feed - Comments feed

Wednesday, August 23 2006

unpack initrd, initramfs, igz

一般的 initrd文件用下面命令就可以解开了 $zcat initrd |cpio -div 但是有些不行,是2个合起来的,可以用下面这个脚本来解http://blog.druggo.org/public/script/unpack 当你做完修改以后,可以用下面命令来重建 # cd irfs-dir # find . -print | cpio -o -H newc > ../initramfs # cd .. (if you want) # gzip initramfs  […]

Continue reading

从 initrd 到 Initramfs

Jim Gifford wrote: > Question: Initramfs is going to replace initrd, but I haven't seen > anyone explain how to copy modules that are built during the build > process moved into the initramfs archive. Has somebody done, this or is > this still a work in progress? Easy. 1) Unpack a  […]

Continue reading

Saturday, August 19 2006

Prozilla ? 2G ?

今天发现 prozilla 下载不了大于 2G 的文件,如果下载大于 2G 的话,它也不会报错, 只给你下载到 2G 为止。 还好 wget 没问题,剩下的就用 wget 来完成了……

Sunday, August 13 2006

Kernel 2.6 exploit

http://seclists.org/fulldisclosure/2006/Jul/0312.html 早就下载了,今天试了一把,果然有效(2.6.16-beyond2),好危险啊! 赶紧找找有没有补丁……

Wednesday, August 2 2006

GNU/screen

在远程登陆到其他主机做一些不能间断的事的时候,网络的不稳定,经常让自己前功尽弃。现在好了,使用 screen 将可以保证在你断线的时候还继续为你工作:1. 登陆远程主机,使用 screen 新建一个会话 mm    $screen -S mm    OK,开始干活吧,下载或者是编译    现在你可以按 Ctr+A+D 断开会话 mm,不要去管他了。2. 想看看任务完成的怎么样了? 再次登陆远程主机,返回会话 mm    $screen -r mm    原来事情已经完成了,不错!from: http://hmyblog.vmmatrix.net/drupal/node/169

- page 15 of 17 -