posted @ 2010-02-20 19:02 xuczhang 阅读(492) 评论(0) 推荐(0) 编辑
摘要:
This passage is got from http://www.mjmwired.net/resources/mjm-fedora-gcc.html Installing Alternate GCC Compiler on Fedora This guide shows how to ins... 阅读全文
摘要:
数在计算机中是以二进制形式表示的。数分为有符号数和无符号数。原码、反码、补码都是有符号定点数的表示方法。一个有符号定点数的最高位为符号位,0是正,1是副。 以下都以8位整数为例, 原码就是这个数本身的二进制形式。例如0000001 就是+11000001 就是-1 正数的反码和补码都是和原码相同。 ... 阅读全文
posted @ 2010-02-20 19:01 xuczhang 阅读(212) 评论(0) 推荐(0) 编辑
摘要:
Here is a sample code to view the memory of an int type.[代码]The output is: FD FF FF FF (my machine is 32bits x86)As the output is little endian, so the number should be FF FF FF FDbinary format is:111... 阅读全文
posted @ 2010-02-20 19:00 xuczhang 阅读(134) 评论(0) 推荐(0) 编辑
摘要:
The passage is refered from http://dougdiego.com/2008/12/04/install-sun-jdk-on-fedora-10/Install SUN JDK on Fedora 10 Installing the SUN JDK on Fedora... 阅读全文
posted @ 2010-02-20 18:57 xuczhang 阅读(305) 评论(0) 推荐(0) 编辑
摘要:
开始-运行-control userpasswords2-高级-管理密码 阅读全文
posted @ 2010-02-20 18:52 xuczhang 阅读(199) 评论(0) 推荐(0) 编辑
摘要:
在经过了将近一个月的断断续续的业余时间的努力下,终于Lab2被我解决啦,本来在2周左右的时间就可以做完的,可是...有些在UserSpace中去做看起来很简单的事,在Kernel的环境下还是颇费周折的,特别是对于不太熟练的新手来说。回过头来看,在Lab2中实在没有什么技巧性很高很难懂的部分,乍看之下... 阅读全文
posted @ 2010-02-20 18:46 xuczhang 阅读(850) 评论(0) 推荐(0) 编辑
摘要:
1. find the virtual address at the last kernel mode in obj/kernel.asm:env_pop_tf(&(e->env_tf));supposed the virtual address is 0xf0102a362. vbreak 0x0... 阅读全文
posted @ 2010-02-20 18:45 xuczhang 阅读(225) 评论(0) 推荐(0) 编辑
摘要:
Here I just refer the tutual from py2exe official page, that's simple and useful: http://www.py2exe.org/index.cgi/Tutorial It contains following steps... 阅读全文
posted @ 2010-02-20 17:41 xuczhang 阅读(473) 评论(0) 推荐(0) 编辑