<?xml version="1.0" encoding="gbk"?>
			<?xml-stylesheet type="text/css" href="http://www.linuxpk.com/css/rss.css"?>
			<rss version="2.0">
			  <channel>
			    <title>tracydundun的个人空间</title>
			    <link>http://www.linuxpk.com/?uid-37747</link>
			    <description>一步一步的慢慢来!</description>
			    <copyright>Copyright(C) tracydundun的个人空间</copyright>
			    <generator>SupeSite/X-Space</generator>
			    <lastBuildDate>Mon, 08 Sep 2008 20:29:45 GMT</lastBuildDate><item>
								<title>LINUX面试题(转)</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13534</link>
								<description><![CDATA[<DIV class=cnt>
<P>一．填空题：<BR>1. 在Linux系统中，以 <FONT color=#ff0000><STRONG>文件</STRONG></FONT> 方式访问设备 。<BR>2. Linux内核引导时，从文件<FONT color=#ff0000> <STRONG>/etc/fstab</STRONG></FONT> 中读取要加载的文件系统。<BR>3. Linux文件系统中...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Mon, 04 Aug 2008 21:58:43 GMT</pubDate>
							</item>
							<item>
								<title>shell 特殊变量</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13329</link>
								<description><![CDATA[$0&nbsp; 被执行的命令的名字<br>$n&nbsp; 这些变量对应的是被一个脚本调用的参数<br>$#&nbsp; 脚本支持的参数的个数<br>$*&nbsp;&nbsp; 所有的参数被双重引用<br>$@所有的参数被独立的双重引用 <br>$?&nbsp; 最后一个被执行的命令的退出状态<br>$$&nbsp; 当前SHELL的进程...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Fri, 25 Jul 2008 23:51:19 GMT</pubDate>
							</item>
							<item>
								<title>expr 求值表达式</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13280</link>
								<description><![CDATA[<tt class="USERINPUT"><strong>expr</strong></tt>
<p>通用求值表达式:        通过给定的操作(参数必须以空格分开)连接参数,并对参数求值.可以使算术操作, 比较操作， 字符串操作或者是逻辑操作.</p><p>应用举例：</p><pre class="PROGRAMLISTING">   1 #!/bin/bash<br...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 23 Jul 2008 23:46:26 GMT</pubDate>
							</item>
							<item>
								<title>if语句中test的使用</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13266</link>
								<description><![CDATA[文件测试／字符串测试／数字测试／复合表达式<br><font size="2">1、文件测试<br>格式：test option file 或者[ option file ]<br>-a file&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; file存在（Korsh shell）<br>-b file&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 块文件<br>-c file&nbsp;&nbs...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 23 Jul 2008 15:06:18 GMT</pubDate>
							</item>
							<item>
								<title>原字符的意义</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13255</link>
								<description><![CDATA[<h2 class="diaryTitle">shell元字符- -</h2>				 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 23 Jul 2008 10:34:27 GMT</pubDate>
							</item>
							<item>
								<title>转义字符的使用</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13254</link>
								<description><![CDATA[<p><b><a name="SPM">一些转义字符的表示的特殊意思</a></b></p>
<a name="SPM">    </a><dl><dt><a name="SPM">和echo，sed连用时：</a></dt><dd><a name="SPM"> 
        
      <br></a></dd><dt><span class="TOKEN"><a name="SPM">\n</a></span><a name="SPM"> &n...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 23 Jul 2008 09:24:10 GMT</pubDate>
							</item>
							<item>
								<title>shell中的变量置换</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13252</link>
								<description><![CDATA[<span style="color: rgb(0, 128, 255);">缺省值置换</span><br>&nbsp;&nbsp; 变量=${参数-word}：如果设置了参数，则用参数的值置换变量的值，否则用word置换。即这种变量的值等于某一个参数的值，如果该参数没有设置，则变量就等于word的值<br><br><span style="color: ...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 23 Jul 2008 00:28:56 GMT</pubDate>
							</item>
							<item>
								<title>set 和 shopt 关于LINUX选项的使用！</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13225</link>
								<description><![CDATA[
			
			set命令可以用来定制shell环境，使用选项“o”来打开或者关闭选项。例如打开选项：set -o 选项，关闭选项目：set +o 选项。
<p align="left">&nbsp;&nbsp;&nbsp; 例如要打开vi交互式命令行编辑，则如下：</p>
<table style="border-collapse: collapse;" bgco...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Mon, 21 Jul 2008 21:21:39 GMT</pubDate>
							</item>
							<item>
								<title>试考完了!Ubuntu中文输入法装上了！</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13224</link>
								<description><![CDATA[期末考试终于考完了，只要不挂就行！<br>今天终于把中文输入法给装好了，爽啊，但还是糊里糊涂的<br>一开始从网上找了一些安装中文输入法的方法都 没有成功，比如下面这个;<br>&nbsp;&nbsp; sudo apt-get install scin-chinese<br>&nbsp;&nbsp; sudo im-switch -s scim<br...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Mon, 21 Jul 2008 20:52:21 GMT</pubDate>
							</item>
							<item>
								<title>快点考完啊!</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-13082</link>
								<description><![CDATA[<P>&nbsp; 今天终于考了一门了,通信原理实验!</P>
<P>哎呀!快点考啊,考完暑假就可以好好的学LINUX了!!</P>]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Thu, 10 Jul 2008 21:36:31 GMT</pubDate>
							</item>
							<item>
								<title>Ubuntu硬盘安装方法</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12931</link>
								<description><![CDATA[1、首先，分别下载ubuntu-8.04的CD和DVD ISO文件： <BR>CD ubuntu-8.04-desktop-i386.iso 下载： <BR><A href="http://mirror.lupaworld.com/ubuntu/releases/8.04/ubuntu-8.04-desktop-i386.iso" target=_blank><FONT color=#0000ff>http://mirror.lupaworld.com/ubuntu/...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 02 Jul 2008 10:54:54 GMT</pubDate>
							</item>
							<item>
								<title>Linux老大的十句名言</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12911</link>
								<description><![CDATA[1.<SPAN class=t_tag nclick=tagshow(event) href="tag.php?name=%C8%ED%BC%FE">软件</SPAN>就像性，<SPAN class=t_tag nclick=tagshow(event) href="tag.php?name=%C3%E2%B7%D1">免费</SPAN>的比花钱的好得多.<BR><BR>2.微软并不是魔鬼,只是它的操作<SPAN class=t_tag nc...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Tue, 01 Jul 2008 23:33:07 GMT</pubDate>
							</item>
							<item>
								<title>要期末考试了!</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12904</link>
								<description><![CDATA[<P>&nbsp; 马上就要期末考试了啊!郁闷</P>
<P>微机接口&nbsp; 光纤通信 程控交换&nbsp; 哎呀!!</P>]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Tue, 01 Jul 2008 14:06:18 GMT</pubDate>
							</item>
							<item>
								<title>大四的又走了!</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12865</link>
								<description><![CDATA[<P>&nbsp;&nbsp;&nbsp; 窗户外边有想起了&lt;&lt;朋友&gt;&gt;的声音,又一批大四的要走了!还记得去年的这个时候我也去看毕业生的晚会,当时也想要是自己毕业会怎么样,但是始终没想到啥!!</P>
<P>&nbsp;&nbsp;&nbsp; 今天晚上班里一个同学要毕业了,大家一起聚在一起吃顿饭,...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Fri, 27 Jun 2008 22:00:51 GMT</pubDate>
							</item>
							<item>
								<title>档案与目录管理</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12835</link>
								<description><![CDATA[
			<font style="color: rgb(0, 1, 2);" size="+1" color="#000099">档案与目录管理</font><br><font color="#000000" face="SimSun"><b><br>ls</b> 显示文件名称、属性等</font>
<br><font color="#000000" face="SimSun"><b>cp</b> 拷贝档案或目录</font>
<br><font...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Thu, 26 Jun 2008 13:50:00 GMT</pubDate>
							</item>
							<item>
								<title>重要  目录</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12821</link>
								<description><![CDATA[　
<table width="710" border="1">
<tbody><tr>
<td width="110"><font face="SimSun">/bin</font></td>

<td width="600"><font face="SimSun">这是放例如： ls, mv, rm, mkdir, rmdir,
gzip, tar, telnet, 及 ftp 等等常用的执行档的地方（这些执行档的执行方法会...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Thu, 26 Jun 2008 00:45:17 GMT</pubDate>
							</item>
							<item>
								<title>Linux 系统目录</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12820</link>
								<description><![CDATA[<img src="file:///tmp/moz-screenshot.jpg" alt=""><img src="file:///tmp/moz-screenshot-1.jpg" alt=""><center><img src="http://linux-vbird.bluedata.org/linux_base/0210filepermission_files/0210filepermission_4.jpg" nosave="" width="398" height="455"><br><...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Thu, 26 Jun 2008 00:42:22 GMT</pubDate>
							</item>
							<item>
								<title>档案种类</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12819</link>
								<description><![CDATA[Linux 正统的档案格式是 ext2<br><ul><li>
<font color="#000066">正规档案( regular file )</font>：就是一般类型的档案，在由
ls –al 所显示出来的属性方面，第一个属性为 [ - ]。另外，依照档案的内容，又大略可以分为两种档案种类：</li></ul><ul><ul><li>
<font ...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Thu, 26 Jun 2008 00:13:56 GMT</pubDate>
							</item>
							<item>
								<title>something about &quot;Swap&quot;</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12818</link>
								<description><![CDATA[Swap分区，即交换区，Swap空间的作用可简单描述为：当系统的物理内存不够用的时候，就需要将物理内存中的一部分空间释放出来，以供当前运行的程序
使用。那些被释放的空间可能来自一些很长时间没有什么操作的程序，这些被释放的空间被临时保存到Swap空间中，等到那些程序...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 25 Jun 2008 19:01:30 GMT</pubDate>
							</item>
							<item>
								<title>Ubuntu终于装上了！！</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-12783</link>
								<description><![CDATA[<P>经过一天的奋斗，Ubuntu终于很好的出现在了我的电脑上！</P>
<P>继续努力，努力就会有收获！！</P>]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Tue, 24 Jun 2008 17:09:22 GMT</pubDate>
							</item>
							<item>
								<title>poll() and select()</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11434</link>
								<description><![CDATA[<P><I>select()</I> 和<I>poll()</I>方法是复用网络套接字的强大工具。采用这两个方法可以表明过程在什么时候可以安全地执行打开的文件描述符而没有任何延迟。比方说，程序员就可以用这些函数调用得知某个套接字上何时有数据被读取。在给<I>select()</I>和<I>poll()</I>指...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Sun, 27 Apr 2008 22:10:51 GMT</pubDate>
							</item>
							<item>
								<title>stat函数</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11416</link>
								<description><![CDATA[<DIV>学习，stat，lstat，fstat</DIV>
<DIV></DIV>
<DIV>1 函数都是获取文件（普通文件，目录，管道，socket，字符，块（）的属性。</DIV>
<DIV>函数原型</DIV>
<DIV>#include &lt;sys/stat.h&gt;<BR><BR>int stat(const char *restrict <SPAN class=docEmphItalicAlt...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Sat, 26 Apr 2008 14:40:07 GMT</pubDate>
							</item>
							<item>
								<title>ioctl()函数</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11415</link>
								<description><![CDATA[这里说的ioctl函数是在驱动程序里的，因为我不知道还有没有别的场合用到了ioctl，<BR>所以就规定了我们讨论的范围。为什么要写篇文章呢，是因为我前一阵子被ioctl给搞混<BR>了，这几天才弄明白它，于是在这里清理一下头脑。 <BR><BR>一、 什么是ioctl。 <BR>ioctl是设备驱...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Sat, 26 Apr 2008 12:40:42 GMT</pubDate>
							</item>
							<item>
								<title>fcntl()函数</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11410</link>
								<description><![CDATA[<P>&nbsp;&nbsp;&nbsp;&nbsp; #include &lt;fcntl.h&gt;<BR>&nbsp;&nbsp;&nbsp;&nbsp; int fcntl(int fields, int cmd, .../* int arg */); //若成功则依赖于cmd,若出错则返回-1<BR><BR>&nbsp;&nbsp; 第三个参数总是一个整数，与上面所示函数原型中的注释部分相对应。但是...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Sat, 26 Apr 2008 00:03:24 GMT</pubDate>
							</item>
							<item>
								<title>I/O文件操作函数</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11409</link>
								<description><![CDATA[<TABLE width="100%">
<TBODY>
<TR>
<TD><FONT face=宋体 size=2>close（关闭文件） </FONT></TD></TR>
<TR>
<TD vAlign=top width=80>
<DIV align=right><FONT face=宋体 size=2>相关函数 </FONT></DIV></TD>
<TD><FONT face=宋体 size=2>open，fcntl，shutdown，...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Fri, 25 Apr 2008 23:48:16 GMT</pubDate>
							</item>
							<item>
								<title>sync() fsync() fdatasync()</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11408</link>
								<description><![CDATA[<P>如果文件是用 O_SYNC 或 O_DSYNC 打开的，那么每次写操作会在写回磁盘之前产生为了刷新磁盘的数据。如果写操作产生了新的磁盘分配（文件在被扩展而不是覆盖现存的页面），那么该次写操作也会产生一个相应的 JFS 日志写入。<BR>在实存和磁盘中的强制同步内容产生于多种途...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Fri, 25 Apr 2008 23:47:06 GMT</pubDate>
							</item>
							<item>
								<title>dup() dup2()</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11403</link>
								<description><![CDATA[<P>dup和dup2也是两个非常有用的调用，它们的作用都是用来复制一个文件的描述符。<BR>它们经常用来重定向进程的stdin、stdout和stderr。<BR>这两个函数的 原形如下：<BR>&nbsp;#include &lt;unistd.h&gt;<BR>&nbsp;int dup( int oldfd );<BR>&nbsp;int dup2( int oldfd, i...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Fri, 25 Apr 2008 20:53:56 GMT</pubDate>
							</item>
							<item>
								<title>原子操作</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11402</link>
								<description><![CDATA[所谓原子操作，就是该操作绝不会在执行完毕前被任何其他任务或事件打断，也就说，它的最小的执行单位，不可能有比它更小的执行单位，因此这里的原子实际是使用了物理学里的物质微粒的概念。<BR><BR>　　原子操作需要<A class=bluekey href="http://diy.yesky.com/" target...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Fri, 25 Apr 2008 20:19:42 GMT</pubDate>
							</item>
							<item>
								<title>售价150美元 Linux“名人”笔记本问世</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11028</link>
								<description><![CDATA[　近日，来自瑞典的一家名为Medison的公司推出了一款售价只要150美元的笔记本，具体型号为“Celebrity”（意为名人，名声）。该产品也是目前市场上唯一接受订货的100美元级别笔记本。
<P>　　Medison公司表示，这款“名人”笔记本配置了Linux操作系统，虽然没有很高的性能...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 16 Apr 2008 11:18:26 GMT</pubDate>
							</item>
							<item>
								<title>应届毕业生少走弯路的十条忠告</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11021</link>
								<description><![CDATA[<P>如何在涉世之初少走弯路，有一个好的开端，开始一番成功的事业？以下是一些先行者积累的10条有益的涉世忠告。好好地遵循、把握这些忠告和建议吧，比起所学的课堂课程来，它毫不逊色！&nbsp;<BR>　　<BR>　　　&nbsp;1.&nbsp;买个闹钟，以便按时叫醒你。贪睡和不守时，都...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Tue, 15 Apr 2008 20:20:29 GMT</pubDate>
							</item>
							<item>
								<title>LINUX路线图(O'Reilly Linux系列书籍导读)点图可看大图</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-11013</link>
								<description><![CDATA[]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Tue, 15 Apr 2008 17:14:01 GMT</pubDate>
							</item>
							<item>
								<title>学习LINUX迷茫中</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10980</link>
								<description><![CDATA[最近几天开始迷茫了,看帖子看的多了也会产生烦恼啊!
<P></P>学习LINUX到底要学什么啊,我学习LINUX是因为当时想学习嵌入式,后来发现自己对LINUX其实也很感兴趣!
<P></P>但是现在自己有不知道学什么好了,是学习GCC编程呢,还是学习SHELL呢,哎要学的东西太多了,自己到底应该...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Mon, 14 Apr 2008 23:09:05 GMT</pubDate>
							</item>
							<item>
								<title>谢谢论坛里的&quot;大侠&quot;们</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10618</link>
								<description><![CDATA[<P>&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 因为是才接触LINUX的编程,又因为自己的C语言基础比较差,有很多很基础的东西也搞不懂.昨天就有一问题(其实那问题也不难,我照着书一直看也找到了答案)解决不了了,就试着在论坛里发了一贴子,没想到今天打开看的时候有好多帮忙解决的...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Thu, 10 Apr 2008 21:15:09 GMT</pubDate>
							</item>
							<item>
								<title>第一天写日志!</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10580</link>
								<description><![CDATA[<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<FONT size=3> 时间过的真快,转眼之间已经大三了.下学期就要面临找工作了,还没啥准备,哎! 问了好多同学,也有好多大四了.现在还没找到工作,问他们着急不,"车到山前必有路"这是他们说的最多的一句话,也不知道这是他们无奈的回答还是...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 09 Apr 2008 23:29:50 GMT</pubDate>
							</item>
							<item>
								<title>C文件概述</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10579</link>
								<description><![CDATA[<A name=02><STRONG>文件类型指针<BR><BR></STRONG><FONT face=宋体><FONT class=font>&nbsp;&nbsp;&nbsp;&nbsp;每一个被使用的文件都在内存中开辟一个区，用来存放文件的有关信息（如文件的名字、文件状态及文件当前状态）。这些信息保存在一个结构体类型的变量中。该结构...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 09 Apr 2008 23:17:50 GMT</pubDate>
							</item>
							<item>
								<title>putchar()、getch()、getche()和getchar()函数</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10573</link>
								<description><![CDATA[<P>getch()、getche()和getchar()函数 <BR>&nbsp;&nbsp;&nbsp; (1) getch()和getche()函数 <BR>&nbsp;&nbsp;&nbsp; 这两个函数都是从键盘上读入一个字符。其调用格式为: <BR>&nbsp;&nbsp;&nbsp;&nbsp; getch(); <BR>&nbsp;&nbsp;&nbsp;&nbsp; getche(); <BR>&nbsp;&nbsp;&...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 09 Apr 2008 20:06:45 GMT</pubDate>
							</item>
							<item>
								<title>字符串读写函数fgets和fputs</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10572</link>
								<description><![CDATA[一、读字符串函数fgets函数的功能是从指定的文件中读一个字符串到字符数组中，函数调用的形式为： fgets(字符数组名，n，文件指针)； 其中的n是一个正整数。表示从文件中读出的字符串不超过 n-1个字符。在读入的最后一个字符后加上串结束标志'\0'。例如：fgets(str,n,fp);...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 09 Apr 2008 20:04:56 GMT</pubDate>
							</item>
							<item>
								<title>Linux系统调用--uname函数详解</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10551</link>
								<description><![CDATA[<P>【uname系统调用】 <BR><BR>功能描述： <BR>获取当前内核名称和其它信息。<BR></P>
<P>用法： <BR>#include &lt;sys/utsname.h&gt;</P>
<P>int uname(struct utsname *buf);</P>
<P><BR><FONT size=3>参数： <BR>buf：指向存放系统信息的缓冲区，原型如下</FONT></P...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 09 Apr 2008 11:06:54 GMT</pubDate>
							</item>
							<item>
								<title>C基础之&quot;条件编译&quot;</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10549</link>
								<description><![CDATA[<P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 开始进行LINUX程序设计的时候,发现自己的C语言的功底太差.就到网上搜索资料重新加深自己的C语言.</P>
<P><FONT style="BACKGROUND-COLOR: #ff0000">以下是介绍"条件编译"的&nbsp;&nbsp; #ifdef #ifndef #define #endif</FONT></...]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 09 Apr 2008 10:34:25 GMT</pubDate>
							</item>
							<item>
								<title>刚刚踏上LINUX</title>
								<link>http://www.linuxpk.com/?uid-37747-action-viewspace-itemid-10546</link>
								<description><![CDATA[<P>&nbsp;&nbsp;&nbsp;&nbsp; 经过大学几年的挣扎,东学点西学点,到头也没真正学到什么东西.最近对开源倒是很感兴趣,就从LINUX开始学起,希望自己能够坚持下去.在这里记下自己学习LINUX的点滴.</P>
<P>&nbsp; 希望能够得到大家的支持和鼓励!希望更多的人能够来到这里</P>]]></description>
								<category>blog</category>
								<author>tracydundun</author>
								<pubDate>Wed, 09 Apr 2008 10:22:05 GMT</pubDate>
							</item>
							
		</channel>
	</rss>