自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

linux-0.11调试教程

linux-0.11调试教程

  • 博客(10)
  • 资源 (50)
  • 收藏
  • 关注

原创 linux-0.11调试教程 文件系统中b_uptodate字段的含义

b_uptodate的含义就是sync既是否同步了缓冲区和块设备的内容。void do_hd_request(void){......    if (CURRENT->cmd == WRITE) {        hd_out(dev,nsect,sec,head,cyl,WIN_WRITE,&write_intr);        for(i=0 ; i

2013-03-24 20:18:13 2966

原创 linux-0.11调试教程,rl_done什么时候为1?

/* What to do when a NEWLINE is pressed.  We accept the whole line.   KEY is the key that invoked this command.  I guess it could have   meaning in the future. */rl_newline (count, key)     in

2013-03-08 07:42:18 1453

原创 linux-0.11调试教程,rl_dispatch ()函数调用函数的参数的个数

rl_dispatch (key, map)     register int key;     Keymap map;{...        (*map[key].function)(rl_numeric_arg * rl_arg_sign, key);}这里的调用函数的参数个数是两个,但是rl_end_of_line ()函数定义是无参数,2个参数都

2013-03-07 22:02:19 1966

原创 linux-0.11调试教程,HIST_ENTRY结构中data域的用处

HIST_ENTRY结构中data域的使用出现在history.c文件中的replace_history_entry ()函数中。而replace_history_entry ()函数在readline.c文件中有如下两处调用char *readline_internal (){......    if (entry && rl_undo_list)

2013-03-06 20:27:03 1661

原创 linux-0.11调试教程,load_history ()调用过程

shell.cmain ()    load_history ()    reader_loop ()/* Load the history list from the history file. */load_history (){  char *hf;  /* Truncate history file for interactive

2013-03-05 21:36:31 1445

原创 linux-0.11调试教程,update_line()函数中按下退格键时对应的缓冲区

第一种情况:光标在最后[/root]# abc   -->      [/root]# ab  按下退格键,length为7第二种情况:光标在倒数第一个字符位置[/root]# abc   -->      [/root]# ac  按下退格键,length为b第三种情况:光标在倒数第二个字符位置 [/root]# abc

2013-03-05 20:00:22 1351

原创 linux-0.11调试教程,update_line()函数中的按下字符键对应的缓冲区

第一种情况:光标在最后[/root]#a    -->    [/root]# ab       按下b键,length为1第二种情况:光标在倒数第一个字符位置[/root]# c    -->    [/root]# ac        按下a键, length为5    第三种情况:光标在倒数第二个字符位置(或第N个位置N>=2)[/ro

2013-03-05 12:39:32 1437

原创 linux-0.11调试教程,终端的初始化init_terminal_io ()函数分析

rl_initialize ()    readline_initialize_everything ()        init_terminal_io ()            tgetent ()tgetent ()处下断点时的情形 0x736e6f63      0x00656c6f 对应的字符串为:consoletgete

2013-03-04 12:18:41 1412

原创 linux-0.11调试教程,update_line()函数分析,和update_line()函数的数据模型

如何由old变成new的?答案在最后!例子一:[/root]# c    -->    [/root]# ac        按下a键, length为5   具体过程为:[/root]# c    -->    [/root]# a    -->    [/root]# acstaticupdate_line (old, new, curren

2013-03-03 15:37:58 1322

原创 linux-0.11调试教程,move_cursor_relative()函数和变量last_c_pos和变量c_pos的关系

move_cursor_relative()函数出现在update_line ()函数中和rl_redisplay ()函数中。move_cursor_relative()函数和last_c_pos的值和c_pos的值密切相关!!![/root]# c    -->    [/root]# ac        按下a键, length为5   具体过程为:[/roo

2013-03-02 18:51:54 1198

TUTORIAL FOR INSTALLING MINIX-386

TUTORIAL FOR INSTALLING MINIX-386 MINIX 升级到 MINIX-386的经典 John Nall写的关于如何使用Bruce Evans的补丁程序将MINIX 1.5.10版升级到MINIX-386的说明。

2013-12-14

netcat.dll(UDP版) by chenghao0511

netcat.dll(UDP版) by chenghao0511 2013-05-20 by chenghao0511@gmail.com dll.dll(netcat.dll:nc -uLp 66) Load.exe injector in explorer.exe 备份在csdn资源库

2013-05-20

netcat 1.15-3 by chenghao0511

nc -u -lp port -e cmd.exe [remote] nc -u ip port [locate] (after ctrl+c,exit(0))

2013-05-16

netcat 1.15-2 by chenghao0511

in netcat.c in readwrite() rr = send (fd, zp, rr, 0); /* one line, or the whole buffer */ + if (strnicmp(zp, "exit\n", 5) == 0) /* UDP after input "exit",break! by chenghao0511 2013-05-14*/ + if(o_udpmode) + break; 修正了UDP连接中,输入exit后,远程端退出但本地不退出情况。

2013-05-14

nt4-ddk,压缩包,2k环境下安装的编译nt4的

nt4-ddk,压缩包,2k环境下安装的编译nt4的

2013-05-12

cmd.exe的源代码,nt4的

位置在\nt4\private\windows\cmd,zk代码中没发现cmd目录。

2013-05-12

nc115.rar by chenghao0511#gmail.com

nc -u -lp port -e cmd.exe

2013-05-11

Windows环境下32位汇编语言程序设计中13章的远程注入dll的例子

Windows环境下32位汇编语言程序设计中13章的远程注入dll的例子

2013-05-09

远程dll示例,学习远程线程的例子

远程dll示例,学习远程线程的例子. 先运行计算器,然后loader.exe,然后用netcat既军刀nc连接本地的66端口

2013-05-09

netcat 1.142 by chenghao0511

netcat nc chenghao0511 1.142 update you can use: nc -lp 66 < doexec.c nc -C 127.0.0.1 66 >test.c or: nc -lp 66 > test1.c nc -C 127.0.0.1 66 < doexec.c

2013-05-05

netcat 1.14 by chenghao0511

after: remote:nc -lp 55 < doexec.c local:nc ip 55 > test.c remote:nc -lp 55 < doexec.c _ [can not type in] local:nc ip 55 > test.c _ [can type in,remote out]

2013-05-03

netcat 1.13 by chenghao0511

netcat -C ip port -e cmd.exe

2013-05-01

nc112.rar

nc112.rar

2013-04-20

masm32 v11 免费下载

masm32 v11 免费下载

2013-04-18

samba rpm包 for centos-5.5

2010-04-27 04:00 4,402,581 samba3x-3.3.8-0.51.el5.i386.rpm 2010-04-27 04:00 12,760,275 samba3x-common-3.3.8-0.51.el5.i386.rpm 2010-04-27 04:00 3,232,573 samba3x-winbind-3.3.8-0.51.el5.i386.rpm 4 个文件 20,395,429 字节 2 个目录 87,655,424,000 可用字节

2013-03-25

bash 1.05 by gcc-1.40 in minix-386 第二版

bash 1.05 by gcc-1.40 in minix-386 第二版by chenghao0511#gmail.com 2013/2/23

2013-02-23

findipn for linux-0.11 by chenghao0511

findipn根据i节点号返回路径和文件名

2013-02-19

fdisk-by-chenghao0511 for linux-0.11

fdisk-by-chenghao0511 for linux-0.11 2013/2/16 by chenghao0511 # gmail.com patch to: /fs/ioctl.c /include/linux/hdreg.h /kernel/blk_drv/hd.c

2013-02-16

readinode for linux-0.11 by chenghao0511

2013/2/15 by chenghao0511 # gmail.com stat /bin/sh readinode /dev/hd1 2353 hexdump inode2353 0000000 81c9 0000 d400 0003 dc92 403f 0100 bbc7 0000010 bbc8 bbc9 bbca bbcb bbcc bbcd bbce 0000 0000020

2013-02-15

readblock for linux-0.11 by chenghao0511

readblock for linux-0.11 by chenghao0511 2013/2/15 by chenghao0511 # gmail.com stat hello.c fileino /dev/hd3 293 readblock 2560 ls -l 2560

2013-02-15

windows server 2003 checked版3790

windows server 2003 checked版3790

2024-09-14

vc2008工具软件包括dumpbin.exe

vc2008工具软件包括dumpbin.exe

2024-08-15

Windows Resource Kits 2003

Windows Resource Kits 2003

2024-08-07

成绩查询php源码.pdf

成绩查询php源码.pdf

2021-09-01

txtSQL1.0.zip

https://sourceforge.net/projects/txtsql/主页地址。2004年版本。就单个文件的类库。

2020-11-21

vi.rarLinux上的文本编辑器

vi编辑器,1992年古董级别的编辑器,linux上差不多是最早的编辑器。可执行文件。源代码大家自己找吧。

2020-11-16

isbn十位转13位.xlsx

isbn十位转13位.xlsx,10位转13位用的mid函数和mod函数,算法很简单。 13位转10位,用的choose函数和match函数,或者用if函数。

2020-05-09

usb3.0最新20170511驱动forwin7-

usb3.0最新20170511驱动forwin7-可以注入win7原版系统。用工具dism-GUI

2018-11-04

cute http file server 开发API

cute http file server 开发文档https://github.com/docblue/chfsgui图形界面Git地址

2018-11-01

Prime numbers and the Riemann zeta function.by Jørgen Veisdal

Prime numbers and the Riemann zeta function.by Jørgen Veisdal

2018-03-27

MT7601U驱动修改版16.04

MT7601U驱动修改版16.04MT7601U驱动修改版16.04MT7601U驱动修改版16.04

2017-12-17

initramfs-tools_0.103

initramfs-tools_0.103 https://launchpad.net/ubuntu/+source/initramfs-tools/0.103ubuntu9 有源代码下载

2015-01-29

run-init源代码

来源与klibc-2.0.4,klibc-2.0.4/usr/kinit目录

2015-01-29

awb-gcc-minix.rar

minix升级到minix-386所需的gcc-1.37.1

2014-05-01

linux-0.11硬盘集成盘14年1月9日by chenghao0511

linux-0.11硬盘集成盘14年1月9日by chenghao0511 2014年1月9日 by chenghao0511@gmail.com 制作方法:把bootsect 替换 原来的 make dd bs=8192 if=Image of=/dev/hd5 c h s 60 16 63 之后需要更改img的分区表,需要你先备份然后再拷贝回去 0x1BE到0x1CF是这个分区1的数据 001231048165041E2C010000317500000000

2014-01-09

调试shoelace的winiboot所需的img文件

调试shoelace的winiboot所需的img文件 60 16 63 c h s 让这个img为主盘启动,什么也不要操作。

2014-01-08

linux-0.11内核bochs实验编译环境

linux-0.11内核bochs实验编译环境

2014-01-04

readline used in linux-0.11 made in minix

readline used in linux-0.11 made in minix 14年1月4日 readline回车 quit离开

2014-01-04

linux-0.11内核文件备份

linux-0.11内核文件备份 用winimage加入diskb.img 然后进入系统后mcopy b:backup.Z backup.Z 然后解压tar xZvf backup.Z

2014-01-03

netpipe聊天室服务端

netpipe聊天室服务端 netpipe回车,本地开启5150端口。 netpipe 66回车,本地开启66端口。

2013-12-18

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除