<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
	<channel>
		<title></title>
		<link>http://www.jackfeng.com/category//</link>
		<description></description>
		<copyright>Copyright (C) 2004 Security Angel Team [S4T] All Rights Reserved.</copyright>
		<generator>SaBlog-X Version Plus 2.0 Build 20081001</generator>
		<lastBuildDate>Wed, 07 Jan 2009 07:29:18 +0000</lastBuildDate>
		<ttl>30</ttl>
		<item>
			<guid>http://www.jackfeng.com/archives/1309/</guid>
			<title>centos 查看系统用户</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p><font size="-1">cat /etc/passwd</font></p>]]></description>
			<link>http://www.jackfeng.com/archives/1309/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2009-01-04 23:47</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1306/</guid>
			<title>nginx 虚拟目录设置</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <div class="cnt" id="blog_text">
<p>location ^~ /reboot {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  alias /data/web/reboot/<br />
}</p>
<p>location ^~ /roots {<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  alias /data/web/root/<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  autoindex on;<br />
}</p>
<p>autoindex on 显示文件索引</p>
</div>]]></description>
			<link>http://www.jackfeng.com/archives/1306/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-29 21:52</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1302/</guid>
			<title>centOS修改hosts</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>vi /etc/hosts</p>
<p>修改保存即可生效哇~~</p>]]></description>
			<link>http://www.jackfeng.com/archives/1302/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-24 17:42</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1300/</guid>
			<title>centos增加一般用户及wheel组用户</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p><strong>[1] 系统的登录与退出<br />
</strong><br />
<table border="2" width="100%">
    <tbody>
        <tr>
            <td bgcolor="#000000"><font color="#ffffff"><font size="3"><span class="message">sample  login: </span><span class="command"><font color="#ffcc00"><strong>root</strong></font></span><span class="message">　</span></font><font size="3"><font color="#0086ff"><span class="intro">&larr; 用root用户来登录系统，输入用户名root</span><br />
            </font><span class="message">Password:</span>　<span class="intro"><font color="#0086ff">&larr;  在这里输入安装时设置的root密码，输入时密码不会被显示</font></span><br />
            <br />
            <span class="message">[root@sample ~]#</span>　<span class="intro"><font color="#0086ff">&larr;  root用户登录成功，提示符为&ldquo;#&rdquo;。若一般用户登录成功后，提示符为&ldquo;$&rdquo;</font></span><br />
            <br />
            <span class="message">[root@sample ~]#</span> <span class="command"><font color="#ffcc00"><strong>exit</strong></font></span>　<span class="intro"><font color="#0086ff">&larr; 退出系统</font></span></font><br />
            </font><br />
            <span class="message">sample login:</span>　<span class="intro">&larr;  退出系统成功</span></td>
        </tr>
    </tbody>
</table>
<br />
<strong>[2]  一般用户的建立与删除<br />
</strong><br />
<table border="2" width="100%">
    <tbody>
        <tr>
            <td bgcolor="#000000"><span class="message">[<font color="#ffffff" size="3">root@sample  ~]#</font></span><font color="#ffffff"><font size="3"> <span class="command"><strong><font color="#ffcc00">useradd  centospub</font></strong></span>　<span class="intro"><font color="#0086ff">&larr; 建立用户名为  centospub 的一般用户</font></span><br />
            <span class="message">[root@sample ~]#</span>  <span class="command"><strong><font color="#ffcc00">passwd  centospub</font></strong></span>　<span class="intro"><font color="#0086ff">&larr; 为用户  centospub 设置密码</font></span><br />
            <span class="message">Changing password for user  centospub.</span><br />
            <span class="message">New UNIX password:</span>　　</font><font size="3"><font color="#0086ff"><span class="intro">&larr;  输入密码（密码不会被显示）</span><br />
            </font><span class="message">Retype new UNIX  password:</span>　　<span class="intro"><font color="#0086ff">&larr;  再次输入密码确认两次密码一致</font></span><br />
            <span class="message">passwd: all authentication  tokens updated successfully.</span>　<span class="intro"><font color="#0086ff">&larr;  密码设置成功</font></span><br />
            <br />
            <span class="message">[root@sample ~]#</span> <span class="command"><font color="#ffcc00"><strong>userdel -r  centospub</strong></font></span>　</font></font><span class="intro"><font size="3"><font color="#0086ff">&larr; 删除用户名为 centospub</font>  的一般</font>用户</span></td>
        </tr>
    </tbody>
</table>
<br />
<strong>[3]  通过一般用户登录为root用户<br />
</strong><br />
因为root用户对系统具有全权的操作权限，为了避免一些失误的操作，建议在一般情况下，以一般用户登录系统，必要的时候需要root操作权限时，再通过&ldquo;su  -&rdquo;命令来登录为root用户进行操作。<br />
<br />
<table border="2" width="100%">
    <tbody>
        <tr>
            <td bgcolor="#000000"><span class="message">[<font color="#ffffff" size="3">centospub@sample ~]</font></span><font size="3"><font color="#ffffff"><span class="att1"><font color="#ff00ff"><strong>$</strong></font></span> 　<span class="intro"><font color="#0086ff">&larr;  提示符为&ldquo;$&rdquo;，说明当前状态为一般用户centospub登录在系统中</font></span><br />
            <br />
            <span class="message">[centospub@sample ~]$</span> <span class="command"><font color="#ffcc00"><strong>su -</strong></font></span> 　<span class="intro"><font color="#0086ff">&larr; 输入登录为root用户的命令</font></span><br />
            <span class="message">Password:</span> 　 <span class="intro"><font color="#0086ff">&larr;  输入root密码（密码不会被显示），回车</font></span><br />
            <br />
            <span class="message">[root@sample  ~]</span><span class="att1"><strong><font color="#ff00ff">#</font></strong></span>　<span class="intro"><font color="#0086ff">&larr;  成功登录为root用户，提示符变为&ldquo;#&rdquo;</font></span><br />
            <br />
            <span class="message">[root@sample  ~]#</span> <span class="command"><font color="#ffcc00"><strong>exit</strong></font></span>　<span class="intro"><font color="#0086ff">&larr; 回到一般用户的登录状态</font></span><br />
            <br />
            <span class="message">[centospub@sample ~]</span><span class="att1"><strong><font color="#ff00ff">$</font></strong></span>　</font><span class="intro"><font color="#0086ff">&larr; 提示符变为&ldquo;$&rdquo;，回到了一般用户centospub登录系统的状</font><font color="#3366ff">态</font></span></font></td>
        </tr>
    </tbody>
</table>
<br />
<strong>[4]  建立管理员组内一般用户<br />
<br />
</strong>在 一般情况下，一般用户通过执行&ldquo;su  -&rdquo;命令、输入正确的root密码，可以登录为root用户来对系统进行管理员级别的配置。但是，为了更进一步加强系统的安全性，有必要建立一个管理员的  组，只允许这个组的用户来执行&ldquo;su -&rdquo;命令登录为root用户，而让其他组的用户即使执行&ldquo;su  -&rdquo;、输入了正确的root密码，也无法登录为root用户。在UNIX下，这个组的名称通常为&ldquo;wheel&rdquo;。</p>
<p>
<table border="2" width="100%">
    <tbody>
        <tr>
            <td bgcolor="#000000"><span class="message">[<font color="#ffffff" size="3">root@sample  ~]#<font size="3"><font color="#ffffff"> <span class="command"><font color="#ffcc00"><strong>usermod -G wheel centospub</strong></font></span> 　<span class="intro"><font color="#0086ff">&larr; 将一般用户 centospub  加在管理员组wheel组中</font></span><br />
            <br />
            <span class="message">[root@sample ~]#</span>  <span class="command"><font color="#ffcc00"><strong>vi  /etc/pam.d/su</strong></font></span> 　<span class="intro"><font color="#0086ff">&larr;  打开这个配置文件</font></span><br />
            <br />
            <span class="before"><font color="#ff0000">#auth  required /lib/security/$ISA/pam_wheel.so use_uid</font></span> 　 <span class="intro"><font color="#0086ff">&larr; 找到此行，去掉行首的&ldquo;#&rdquo;</font></span><br />
            <span class="intro">　&darr;</span> <br />
            <span class="after"><font color="#99cc00">auth required  /lib/security/$ISA/pam_wheel.so use_uid</font></span>　 <span class="intro"><font color="#0086ff">&larr; 变为此状态（大约在第6行的位置）</font></span> <br />
            <br />
            <span class="message">[root@sample ~]#</span> <span class="command"><font color="#ffcc00"><strong>echo &quot;SU_WHEEL_ONLY yes&quot; &gt;&gt;  /etc/login.defs</strong></font></span>　</font><font color="#0086ff"><span class="intro">&larr;  添加语句到行末</span></font></font></font></span></td>
        </tr>
    </tbody>
</table>
<br />
<br />
<br />
以上操作完成后，可以再建立一个新用户，然后用这个新建的用户测试会发现，没有加入到wheel组的用户，执行&ldquo;su  -&rdquo;命令，即使输入了正确的root密码，也无法登录为root用户。</p>]]></description>
			<link>http://www.jackfeng.com/archives/1300/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-22 14:11</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1297/</guid>
			<title>SED单行脚本快速参考(Unix 流编辑器)</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>SED编辑器的参考教程 又是一个好东西</p><br /><br /><a href="http://www.jackfeng.com/archives/1297/" target="_blank">阅读全文</a><br /><br />]]></description>
			<link>http://www.jackfeng.com/archives/1297/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-19 11:15</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1289/</guid>
			<title>显示当前路径</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>在centOS里面输入pwd即可显示当前路径-_-#</p>]]></description>
			<link>http://www.jackfeng.com/archives/1289/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-13 00:59</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1287/</guid>
			<title>Linux下的tar压缩解压缩命令详解</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>在linux里面操作 最基本的东西 而且经常用的东西 哈打包命令</p><br /><br /><a href="http://www.jackfeng.com/archives/1287/" target="_blank">阅读全文</a><br /><br />]]></description>
			<link>http://www.jackfeng.com/archives/1287/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-12 21:36</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1285/</guid>
			<title>tar 打包 排除一些文件夹</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p><span style="color: #ff0000">tar cvfz dow.tar.gz xx/* --exclude xx/admin --exclude xx/css --exclude xx/images --exclude xx/uploads</span></p>
<p><span style="">成功排除了xx目录下面的admin css images uploads</span></p>]]></description>
			<link>http://www.jackfeng.com/archives/1285/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-12 10:23</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1284/</guid>
			<title>mkdir 自动建立根目录</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>mkdir- p</p>
<p>可以是一个路径名称。此时若路径中的某些目录尚不存在，加上此选项后，系统将自动建立好那些尚不存在的目录，即一次可以建立多个目录。</p>
<p>比如</p>
<p>mkdir -p /data/web/jackfeng/abc/dfg</p>
<p>就会自动建立 jackfeng目录下面的abc下面的dfg</p>]]></description>
			<link>http://www.jackfeng.com/archives/1284/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-11 21:11</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1283/</guid>
			<title>Linux 继承权限</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>chmod -R 777 ./</p>]]></description>
			<link>http://www.jackfeng.com/archives/1283/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-10 11:33</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1277/</guid>
			<title>Mounting HGFS shares 之VMWARE</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>./vmware_install的最后会碰到Mounting HGFS filesystems: [FAILED]</p>
<p>这个不是什么大问题 挂载共享的东西 打开vmware的settings里面的options</p>
<p>把文件共享Shared Folders的设置Enabled即可</p>]]></description>
			<link>http://www.jackfeng.com/archives/1277/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-12-04 01:31</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1271/</guid>
			<title>查看 文件夹的大小</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p><font size="2">&nbsp;du -sk filename </font></p>]]></description>
			<link>http://www.jackfeng.com/archives/1271/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-11-27 10:54</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1270/</guid>
			<title>SecureCRT 使用技巧</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>越来越喜欢这个SecureCRT了 所以找了点文章瞧了瞧就给丢上来了</p><br /><br /><a href="http://www.jackfeng.com/archives/1270/" target="_blank">阅读全文</a><br /><br />]]></description>
			<link>http://www.jackfeng.com/archives/1270/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-11-27 01:21</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1269/</guid>
			<title>sed命令替换文件内容</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>sed s#login_form.html#login_form.php#g /data/web/new/www/index.html &gt; /data/web/new/www/index2.html</p>
<p>把/data/web/new/www/index.html&nbsp; 这个文件里的login_form.html 都替换成 login_form.php&nbsp; 然后导入到 index2.html</p>
<p>小云的linux技术不赖</p>]]></description>
			<link>http://www.jackfeng.com/archives/1269/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-11-26 11:34</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1263/</guid>
			<title>Linux删除目录命令</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p><span style="color: #ff0000">rm -rf hjol</span></p>
<p>r是目录的意思 f是忽略啥的意思</p>]]></description>
			<link>http://www.jackfeng.com/archives/1263/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-11-21 11:30</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1246/</guid>
			<title>linux下定时执行计划任务</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>服务器上经常会卡一下 原来是计划任务的关系&nbsp; 没办法 只能接触一下这个了。</p><br /><br /><a href="http://www.jackfeng.com/archives/1246/" target="_blank">阅读全文</a><br /><br />]]></description>
			<link>http://www.jackfeng.com/archives/1246/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-11-07 15:51</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1245/</guid>
			<title>命令行操作计划任务</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <div>
<p>两类:</p>
<p>一:</p>
<pre class="code">
  
  at -----|
          |-&gt;相同点:一次运行.类似打印进程，可以把任务放到/var/spool/at目录中，
           |  指定运行的时间即可。
  batch---|

区别:batch在系统空闲的时候才运行.at是在指定时间运行.
</pre>
<p>二:</p>
<pre class="code">
  
  crontab---|
            |-&gt;相同点:是守护进程，提供计时器功能，让用户在特定时间执行预定的命令或程序。循环运行.
  anacron---|
  
cron有两个配置文件：/etc/crontab全局配置文件和crontab命令生成的用户级配置文件。

默认情况下，所有用户都能访问cron.
  
区别: 当你的Linux服务器并不是全天运行，这个anacron就可以帮你执行在&rdquo;crontab&rdquo;设定的时间内没有执行的工作。
</pre>
<pre class="code">
  
  at:
  #at time
  xx
  xxx
  xxxxx
  CTRL+D结束输入.
  #atq   :查看AT任务.
  #atrm 标号 :删除AT任务,
  例子：
  #at 2:05 tomorrow
  at&gt; /root/httpdbackup.sh &gt; /home/backup/
  at&gt; Ctrl+D
  

  #crontab -e 用户名 :如果没有用户名则指当前用户.
  #crontab [-u user] file
    
                      |-&gt;查看  
                      | |-&gt;编辑
  crontab [-u user] [-l | -r | -e] [-i]
                |            |-&gt;删除 |-&gt;删除前确认
                |-&gt;执行crontab的用户身份
</pre>
<p>格式:</p>
<p>* * * * * shell命令或者脚本</p>
<p>参数解释: (从左到右)</p>
<p>分钟 (0-59)</p>
<p>小时 (0-23)</p>
<p>日期 (1-31)</p>
<p>月份 (1-12)</p>
<p>星期几（0-7，其中 0、7都表星期日）</p>
<p>备注:</p>
<p>在/etc/cron.deny里的用户不能使用crontab命令.</p>
<p>在/etc/cron.allow里的用户能使用crontab命令.它的权限高于cron.deny</p>
</div>]]></description>
			<link>http://www.jackfeng.com/archives/1245/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-11-07 15:50</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1243/</guid>
			<title>ubuntu 8.10 更新源  (台湾)  速度很快哈哈</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>deb <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid main restricted universe multiverse<br />
deb-src <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid main restricted universe multiverse<br />
deb <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid-updates main restricted universe multiverse<br />
deb-src <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid-updates main restricted universe multiverse<br />
deb <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid-backports main restricted universe multiverse<br />
deb-src <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid-backports main restricted universe multiverse<br />
deb <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid-security main restricted universe multiverse<br />
deb-src <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid-security main restricted universe multiverse<br />
deb <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid-proposed main multiverse restricted universe<br />
deb-src <!-- m --><a class="postlink" href="http://ubuntu.csie.ntu.edu.tw/ubuntu/">http://ubuntu.csie.ntu.edu.tw/ubuntu/</a><!-- m --> intrepid-proposed main restricted universe multiverse</p>
<p>sudo gedit /etc/apt/sources.list</p>
<p>把原始的的都用#注释掉吧 Ohyear.</p>]]></description>
			<link>http://www.jackfeng.com/archives/1243/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-10-31 21:10</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1242/</guid>
			<title>linux下解压rar文件</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>$ unrar x teach.rar 就会把文件夹解压到当前目录中，这是一般的解压方式<br />
$ unrar e teach.rar 就会把文件夹里面的文件解压到当前目录中</p>]]></description>
			<link>http://www.jackfeng.com/archives/1242/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-10-31 17:16</pubDate>
		</item>
		<item>
			<guid>http://www.jackfeng.com/archives/1241/</guid>
			<title>熟悉VI 是学习UNIX 系统的一个关口</title>
			<author>小锋</author>
			<description><![CDATA[小锋堂 ( http://www.jackfeng.com/ ) : <p>对unix系统里面的vi的操作指令 不得不学了。</p><br /><br /><a href="http://www.jackfeng.com/archives/1241/" target="_blank">阅读全文</a><br /><br />]]></description>
			<link>http://www.jackfeng.com/archives/1241/</link>
			<category domain="http://www.jackfeng.com/category/20/">Linux</category>
			<pubDate>2008-10-28 19:05</pubDate>
		</item>
	</channel>
</rss>
