<?xml version="1.0" encoding="gbk"?>
			<?xml-stylesheet type="text/css" href="http://www.lupaworld.com/css/rss.css"?>
			<rss version="2.0">
			  <channel>
			    <title>因为喜欢，所以选择</title>
			    <link>http://www.lupaworld.com/146267</link>
			    <description></description>
			    <copyright>Copyright(C) 因为喜欢，所以选择</copyright>
			    <generator>SupeSite/X-Space</generator>
			    <lastBuildDate>2008-07-24 17:15:31</lastBuildDate><item>
								<title>汗颜！学Linux这么久了，今天才把man工具安装上。</title>
								<link>http://www.lupaworld.com/146267/viewspace_45962.html</link>
								<description><![CDATA[
			<font size="3"><span style="font-family: 楷体_GB2312;"><span style="font-family: 隶书;">今天</span>测试一个管道的例子时，出现了问题。<br>在讨论时才发觉自己学Linux这么久，竟连man这么常用的工具都没装，汗颜啊！<br>赶紧在终端上把它装了一下：<br>把能这...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-04-13 19:14:44</pubDate>
							</item>
							<item>
								<title>gcc 最新版4.3版已发布</title>
								<link>http://www.lupaworld.com/146267/viewspace_45370.html</link>
								<description><![CDATA[
			<font size="3"><span style="font-family: 楷体_GB2312;">下载地址：</span><font><a href="http://www.icewalkers.com/download/gcc/1341/dls/" title="Download gcc [ Stable version ]" target="_jmp"><font color="#006000">ftp://ftp.gnu.org/gnu/gcc/gcc-4.3....]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-04-02 20:51:27</pubDate>
							</item>
							<item>
								<title>线性表的链式实现</title>
								<link>http://www.lupaworld.com/146267/viewspace_44617.html</link>
								<description><![CDATA[<P><FONT face=楷体_GB2312 size=3>这学期开了数据结构这门课。对于学软件工程的学生来讲，认真、切实的学好它是非常必要的。<BR>最近一次上机时，我把线性表的链式形式实现了，但还存在很多问题，希望大家能给我指点一二。<BR><FONT face=Georgia>$cat include.h<BR>#inc...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-23 16:10:20</pubDate>
							</item>
							<item>
								<title>第一次编内核模块</title>
								<link>http://www.lupaworld.com/146267/viewspace_44614.html</link>
								<description><![CDATA[<P><FONT face=楷体_GB2312 size=3>内核模块的结构特点及运行环境和普通程序有很大不同。<BR>模块编写的语法和C语法相差无几，但如果能真正理解模块运行的特点，还需要知道硬件和操作系统的一些知识。<BR>我第一次编译内核模块的经历：</FONT></P>
<P><A href="mailto:lz...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-23 15:13:58</pubDate>
							</item>
							<item>
								<title>fork_example.c</title>
								<link>http://www.lupaworld.com/146267/viewspace_43833.html</link>
								<description><![CDATA[keven@localhost systemCall]$ cat -n fork_example.c<br>&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp; #include &lt;stdio.h&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; 2&nbsp; #include &lt;unistd.h&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; 3&nbsp; #include &lt;stdlib.h&gt;<br>&nbsp;&nbsp;&...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-16 13:02:58</pubDate>
							</item>
							<item>
								<title>set_process_information.c</title>
								<link>http://www.lupaworld.com/146267/viewspace_43832.html</link>
								<description><![CDATA[[keven@localhost systemCall]$ cat set_process_information.c<br>#include &lt;stdio.h&gt;<br>#include &lt;unistd.h&gt;<br>#include &lt;sys/resource.h&gt;<br><br>int main(/*int argc,char **argv*/)<br>{<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf(...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-16 13:01:21</pubDate>
							</item>
							<item>
								<title>进程的编程简单实现</title>
								<link>http://www.lupaworld.com/146267/viewspace_43831.html</link>
								<description><![CDATA[<font size="2">[keven@localhost systemCall]$ cat -n get_process_information.c<br>&nbsp;&nbsp;&nbsp;&nbsp; 1&nbsp; #include &lt;stdio.h&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; 2&nbsp; #include &lt;unistd.h&gt;<br>&nbsp;&nbsp;&nbsp;&nbsp; 3&nbsp; #include &lt;sy...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-16 12:58:49</pubDate>
							</item>
							<item>
								<title>&lt;三&gt;进程创建</title>
								<link>http://www.lupaworld.com/146267/viewspace_43815.html</link>
								<description><![CDATA[<P><FONT face=楷体_GB2312 size=3>进程的创建仅有一个函数,也是linux下唯一能创建进程的函数：<BR>fork()<BR><FONT face=楷体_GB2312 size=3>功能：用来产生一个新进程，其子进程会复制父进程的数据和堆栈空间，并继承父继承的用户代码、组代码，环境变量、已经打开的文件...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-15 13:38:22</pubDate>
							</item>
							<item>
								<title>&lt;二&gt;设置进程属性</title>
								<link>http://www.lupaworld.com/146267/viewspace_43814.html</link>
								<description><![CDATA[<P><FONT face=楷体_GB2312 size=3>设置进程属性主要是修改进程PCB中的进程属性：</FONT></P>
<P><FONT face=楷体_GB2312 size=3>(1)nice()<BR>功能：用来改变进程的执行优先级，其参数顺序越大优先级越低。只有超级用户才能使用负的优先级。<BR>定义函数：int nice(int ...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-15 12:57:39</pubDate>
							</item>
							<item>
								<title>Linux进程的管理 &lt;一&gt;获取进程信息函数</title>
								<link>http://www.lupaworld.com/146267/viewspace_43156.html</link>
								<description><![CDATA[<P><FONT face=楷体_GB2312 size=3>&nbsp; 进程又称任务，是一个动态的使用系统资源、处于活动状态的应用程序。<BR>进程的管理由进程控制块PCB、进程调度、中断管理、任务队列等组成，它是linux文件系统、存储管理、设备管理和驱动程序的基础。<BR>进程控制块PCB中包含了进...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-10 23:28:49</pubDate>
							</item>
							<item>
								<title>如何成为Linux平台C语言程序员(转)</title>
								<link>http://www.lupaworld.com/146267/viewspace_42699.html</link>
								<description><![CDATA[<DIV style="FONT-SIZE: 12px"><FONT face=楷体_GB2312 size=3>目标：<BR>成为合格的Linux平台C语言程序员<BR>技能：<BR>掌握C语言基本语法，掌握Linux平台系统调用，熟悉Linux平台开发流程，掌握anjuta以及glade使用方法，了解kernel结构编写高质量程序。<BR><BR>步骤：<...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-06 14:08:48</pubDate>
							</item>
							<item>
								<title>关于C程序算法的简化</title>
								<link>http://www.lupaworld.com/146267/viewspace_42508.html</link>
								<description><![CDATA[<P><FONT size=3>近一些天看了一些算法，发现用C写的基于类的几个算法比较不错：<BR>高复杂度的程序千千万万，但低复杂度程序是有限的，且常常是唯一的。变高复杂度算法为低复杂度算法有几个途径：</FONT></P>
<H6><FONT size=3>1.变嵌套多重的条件句为一重循环句：</FON...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-03 22:46:43</pubDate>
							</item>
							<item>
								<title>关于自己的学习</title>
								<link>http://www.lupaworld.com/146267/viewspace_42356.html</link>
								<description><![CDATA[
			
			
			
			
			<div style="font-family: 楷体_GB2312;"></div><font size="3"><span style="font-family: 楷体_GB2312;">
			&nbsp;&nbsp;&nbsp; 真正接触</span></font><font size="3"><span style="font-family: 楷体_GB2312;">开源世界</span></font><fon...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-01 20:26:35</pubDate>
							</item>
							<item>
								<title>写给自己的博客</title>
								<link>http://www.lupaworld.com/146267/viewspace_42355.html</link>
								<description><![CDATA[<font style="font-family: 楷体_GB2312;" size="3">&nbsp;&nbsp;&nbsp; 以前也曾开通过博客，但那是一种炫耀吧，也可以说是一种对流行的追逐。那是不懂什么是博客，或者说根本不理解博客的深层含义。只是在网上荡一些文章，贴在博客上来更新日志，根本没有自己的思想和言...]]></description>
								<category>blog</category>
								<author>lizeliang.linux</author>
								<pubDate>2008-03-01 18:53:48</pubDate>
							</item>
							
		</channel>
	</rss>