<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jean - 记录成长历程 &#187; 基础</title>
	<atom:link href="http://www.zhangyiqun.net/tag/%e5%9f%ba%e7%a1%80/feed" rel="self" type="application/rss+xml" />
	<link>http://www.zhangyiqun.net</link>
	<description>让世界更美好一点儿</description>
	<lastBuildDate>Wed, 07 Dec 2011 14:04:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Linux时间戳转换</title>
		<link>http://www.zhangyiqun.net/1622.html</link>
		<comments>http://www.zhangyiqun.net/1622.html#comments</comments>
		<pubDate>Mon, 28 Feb 2011 11:05:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1622</guid>
		<description><![CDATA[获取N天后的时间 date -d &#8220;32 days&#8221; +%s 获取N天前的时间 date -d &#8220;32 days ago&#8221; +%s 将时间戳转换成人眼可识别的形式 date -d &#8217;1970-01-01 UTC 1123495443 seconds&#8217; 在Ruby下将时间戳转换 Time.at(1123495443).strftime(&#8220;%Y-%m-%d&#8221;) 输出格式可以自定义 http://www.ruby-doc.org/core/classes/Time.html#M000392<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux L2TP配置手记(不包含ipsec)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F461.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">linux位数和cpu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F783.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何在fedora11中安装Virtual Box？</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>获取N天后的时间</p>
<p>date -d &#8220;32 days&#8221; +%s</p>
<p>获取N天前的时间</p>
<p>date -d &#8220;32 days ago&#8221; +%s</p>
<p>将时间戳转换成人眼可识别的形式</p>
<p>date -d &#8217;1970-01-01 UTC 1123495443 seconds&#8217;</p>
<p>在Ruby下将时间戳转换</p>
<p>Time.at(1123495443).strftime(&#8220;%Y-%m-%d&#8221;)</p>
<p>输出格式可以自定义  http://www.ruby-doc.org/core/classes/Time.html#M000392</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux L2TP配置手记(不包含ipsec)</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F461.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">linux位数和cpu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F783.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何在fedora11中安装Virtual Box？</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1622.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Package ImageMagick-6.6.6-8.x86_64.rpm is not signed</title>
		<link>http://www.zhangyiqun.net/1522.html</link>
		<comments>http://www.zhangyiqun.net/1522.html#comments</comments>
		<pubDate>Fri, 31 Dec 2010 07:15:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作笔记]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1522</guid>
		<description><![CDATA[Two ways: 1. Just use the simple &#8220;rpm -ivh package.rpm&#8221; (you get the same result as doing &#8220;yum localinstall package.rpm&#8221;); or 2. Edit /etc/yum.conf and change the value of gpgcheck from 1 to 0.<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">tokyocabinet-1.4.45安装时报错bzlib.h is required</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F807.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何删除名为-a的文件？</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>Two ways:</p>
<p>1. Just use the simple &#8220;rpm -ivh package.rpm&#8221; (you get the same result as doing &#8220;yum localinstall package.rpm&#8221;); or</p>
<p>2. Edit /etc/yum.conf and change the value of gpgcheck from 1 to 0.</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">tokyocabinet-1.4.45安装时报错bzlib.h is required</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F807.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何删除名为-a的文件？</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1522.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>用Wget抓目录</title>
		<link>http://www.zhangyiqun.net/1386.html</link>
		<comments>http://www.zhangyiqun.net/1386.html#comments</comments>
		<pubDate>Tue, 12 Oct 2010 14:51:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1386</guid>
		<description><![CDATA[实例: &#60;pre&#62;wget -nd -r -l1 &#8211;no-parent http://media.pragprog.com/titles/rails3/code/depot_c/public/images/&#60;/pre&#62;<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F793.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何使用wget多线程下载？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F807.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何删除名为-a的文件？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何修改wtmp记录？</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>实例:</p>
<p>&lt;pre&gt;wget -nd -r -l1 &#8211;no-parent http://media.pragprog.com/titles/rails3/code/depot_c/public/images/&lt;/pre&gt;</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F793.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何使用wget多线程下载？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F807.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何删除名为-a的文件？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何修改wtmp记录？</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1386.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tokyocabinet-1.4.45安装时报错bzlib.h is required</title>
		<link>http://www.zhangyiqun.net/1332.html</link>
		<comments>http://www.zhangyiqun.net/1332.html#comments</comments>
		<pubDate>Thu, 02 Sep 2010 12:45:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1332</guid>
		<description><![CDATA[安装tokyocabinet-1.4.45时./configure会出现如下错误: configure: error: bzlib.h is required [root@jeantoe tokyocabinet-1.4.45]# yum install bzip2-devel<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F790.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何手动安装grub？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Package ImageMagick-6.6.6-8.x86_64.rpm is not signed</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F783.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何在fedora11中安装Virtual Box？</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: small;">安装</span>tokyocabinet-1.4.45<span style="font-size: small;">时./configure会出现如下错误:</span></p>
<blockquote><p>configure: error: bzlib.h is required</p></blockquote>
<p>[root@jeantoe tokyocabinet-1.4.45]# yum install bzip2-devel</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F790.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何手动安装grub？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Package ImageMagick-6.6.6-8.x86_64.rpm is not signed</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F783.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何在fedora11中安装Virtual Box？</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1332.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vim乱码问题解决</title>
		<link>http://www.zhangyiqun.net/1141.html</link>
		<comments>http://www.zhangyiqun.net/1141.html#comments</comments>
		<pubDate>Wed, 09 Jun 2010 04:11:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[vim]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1141</guid>
		<description><![CDATA[vim .vimrc set encoding=utf8<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1083.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1141.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">让VIM支持载入模板</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1141.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Package ImageMagick-6.6.6-8.x86_64.rpm is not signed</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1141.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">tokyocabinet-1.4.45安装时报错bzlib.h is required</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1141.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">巧夺天工的echo</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>vim .vimrc</p>
<p>set encoding=utf8</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1083.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1141.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">让VIM支持载入模板</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1141.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Package ImageMagick-6.6.6-8.x86_64.rpm is not signed</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1141.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">tokyocabinet-1.4.45安装时报错bzlib.h is required</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1141.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">巧夺天工的echo</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1141.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>urldecode编码转换字符集问题</title>
		<link>http://www.zhangyiqun.net/1069.html</link>
		<comments>http://www.zhangyiqun.net/1069.html#comments</comments>
		<pubDate>Mon, 29 Mar 2010 13:11:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1069</guid>
		<description><![CDATA[下午为凸墙调试支付宝接口，遇到了几个小问题 URL中的UTF-8&#8211;&#62;gb2312的转换 ?View Code PHP$urlname='Month/包月'; &#160; echo urlencode&#40;$urlname&#41;; &#160; echo iconv&#40;'utf-8','gb2312',urldecode&#40;'Month%2F%E5%8C%85%E6%9C%88'&#41;&#41;; Apache强制字符转换 关键在于配置中的“AddDefaultCharset UTF-8”这一行，这句的意思是所有的网页显示默认的编码都是“UTF-8”，其他编码要手动选择才能够正常显示，gb2312当然不例外。在这个约束下，即便在写网页程序时用Meta标示指定为GB2312也无济于事，因为apache已经有了明文强制要求。 开始我还以为是drupal代码中写了强制utf-8相关的语句所造成的<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F781.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1069.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何解决apache目录列表乱码问题</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1154.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1069.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Apache错误信息隐藏</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F779.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1069.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">apache如何限速？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F339.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1069.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[转]Apache参数的优化 </font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>下午为<a title="凸墙代理" href="http://www.vpn38.net" target="_blank">凸墙</a>调试支付宝接口，遇到了几个小问题</p>
<p>URL中的UTF-8&#8211;&gt;gb2312的转换</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1069code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p10692"><td class="code" id="p1069code2"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$urlname</span><span style="color: #339933;">=</span><span style="color: #0000ff;">'Month/包月'</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <a href="http://www.php.net/urlencode"><span style="color: #990000;">urlencode</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$urlname</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <a href="http://www.php.net/iconv"><span style="color: #990000;">iconv</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'utf-8'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'gb2312'</span><span style="color: #339933;">,</span><a href="http://www.php.net/urldecode"><span style="color: #990000;">urldecode</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'Month%2F%E5%8C%85%E6%9C%88'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Apache强制字符转换</p>
<p>关键在于配置中的“AddDefaultCharset UTF-8”这一行，这句的意思是所有的网页显示默认的编码都是“UTF-8”，其他编码要手动选择才能够正常显示，gb2312当然不例外。在这个约束下，即便在写网页程序时用Meta标示指定为GB2312也无济于事，因为apache已经有了明文强制要求。</p>
<p>开始我还以为是drupal代码中写了强制utf-8相关的语句所造成的</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F781.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1069.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何解决apache目录列表乱码问题</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1154.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1069.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Apache错误信息隐藏</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F779.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1069.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">apache如何限速？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F339.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1069.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[转]Apache参数的优化 </font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1069.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux L2TP配置手记(不包含ipsec)</title>
		<link>http://www.zhangyiqun.net/1046.html</link>
		<comments>http://www.zhangyiqun.net/1046.html#comments</comments>
		<pubDate>Fri, 26 Feb 2010 14:59:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1046</guid>
		<description><![CDATA[因为PPTP的不稳定性，考虑采用L2TP替代。缺点是客户连接时需要修改注册表。 配置文件 vim /etc/xl2tpd/xl2tpd.conf [global] ;listen-addr = 1.1.1.1 ; ; requires openswan-2.5.18 or higher &#8211; Also does not yet work in combination ; with kernel mode l2tp as present in linux 2.6.23+ ; ipsec saref = yes ; forceuserspace = yes ; ; debug tunnel = yes auth file = /etc/ppp/chap-secrets [lns default] ip range [...]<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F691.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">用parted对大于2TB的硬盘分区</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F461.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">linux位数和cpu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F732.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux下的everest</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>因为PPTP的不稳定性，考虑采用L2TP替代。缺点是客户连接时需要修改注册表。</p>
<p><span id="more-1046"></span></p>
<p>配置文件</p>
<p>vim /etc/xl2tpd/xl2tpd.conf</p>
<blockquote><p>[global]<br />
;listen-addr = 1.1.1.1<br />
;<br />
; requires openswan-2.5.18 or higher &#8211; Also does not yet work in combination<br />
; with kernel mode l2tp as present in linux 2.6.23+<br />
; ipsec saref = yes<br />
; forceuserspace = yes<br />
;<br />
; debug tunnel = yes<br />
auth file = /etc/ppp/chap-secrets<br />
[lns default]<br />
ip range = 192.168.8.11-192.168.8.250<br />
local ip = 192.168.8.1<br />
lac = 0.0.0.0-255.255.255.255<br />
require chap = yes<br />
refuse pap = yes<br />
require authentication = yes<br />
name = www.vpn38.net<br />
pppoptfile = /etc/ppp/options.xl2tpd<br />
length bit = yes</p></blockquote>
<p>vim /etc/ppp/options.xl2tpd</p>
<blockquote><p>ipcp-accept-local<br />
ipcp-accept-remote<br />
ms-dns  8.8.4.4<br />
auth<br />
crtscts<br />
idle 1800<br />
mru 1410<br />
defaultroute<br />
lock<br />
proxyarp<br />
connect-delay 5000</p></blockquote>
<p>注意：在WIN下连接需要修改注册表，因为默认要用ipsec</p>
<p>安装</p>
<p>http://linuxexplore.wordpress.com/how-tos/l2tp-vpn-using-xl2tpd/</p>
<p>国内的先行者</p>
<p>http://www.linuxforum.net/forum/showflat.php?Board=proxy&#038;Number=491080</p>
<p>http://www.chinaunix.net/jh/50/1115554.html</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F691.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">用parted对大于2TB的硬盘分区</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1622.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux时间戳转换</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F461.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">linux位数和cpu</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F732.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux下的everest</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1046.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>如何修改wtmp记录？</title>
		<link>http://www.zhangyiqun.net/1040.html</link>
		<comments>http://www.zhangyiqun.net/1040.html#comments</comments>
		<pubDate>Tue, 23 Feb 2010 10:13:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.net/?p=1040</guid>
		<description><![CDATA[CentOS release 5.3 &#38;&#38; fedora11验证可用 http://bajobongo.net/zerro/piotr/programy/log_editors/wtmp_editor/readme.html<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F800.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何记录faillog？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Package ImageMagick-6.6.6-8.x86_64.rpm is not signed</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F804.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何关闭yum-fastestmirror？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">tokyocabinet-1.4.45安装时报错bzlib.h is required</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>CentOS release 5.3 &amp;&amp; fedora11验证可用</p>
<p>http://bajobongo.net/zerro/piotr/programy/log_editors/wtmp_editor/readme.html</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F800.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何记录faillog？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1522.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Package ImageMagick-6.6.6-8.x86_64.rpm is not signed</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F804.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何关闭yum-fastestmirror？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1332.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">tokyocabinet-1.4.45安装时报错bzlib.h is required</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/1040.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>巧夺天工的echo</title>
		<link>http://www.zhangyiqun.net/976.html</link>
		<comments>http://www.zhangyiqun.net/976.html#comments</comments>
		<pubDate>Tue, 26 Jan 2010 14:54:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.cn/?p=976</guid>
		<description><![CDATA[我要下载一组小文件，其后缀为规律的*[a-t].rar 。思索后决定用acsii码转换。后来朋友告诉我了一个echo的骨灰级技巧……鸡动的我虎躯为之一震 # echo {a..t} a b c d e f g h i j k l m n o p q r s t for in in `echo {a..t}`; do wget http://files10.beeplat.org:7777/2009/12/25/xxx.v8.3.LINUX-SHOCK/shko83l${i}.zip; done<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">用Wget抓目录</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F797.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何恢复/etc/passwd？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux L2TP配置手记(不包含ipsec)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>我要下载一组小文件，其后缀为规律的*[a-t].rar 。思索后决定用acsii码转换。后来朋友告诉我了一个echo的骨灰级技巧……鸡动的我虎躯为之一震</p>
<p># echo {a..t}<br />
a b c d e f g h i j k l m n o p q r s t</p>
<p>for in in `echo {a..t}`; do wget http://files10.beeplat.org:7777/2009/12/25/xxx.v8.3.LINUX-SHOCK/shko83l${i}.zip; done</p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1386.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">用Wget抓目录</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F797.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何恢复/etc/passwd？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1046.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F976.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Linux L2TP配置手记(不包含ipsec)</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/976.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>适用于vps的轻量级流量监控统计工具vnstat</title>
		<link>http://www.zhangyiqun.net/967.html</link>
		<comments>http://www.zhangyiqun.net/967.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 13:35:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[VPS]]></category>
		<category><![CDATA[基础]]></category>

		<guid isPermaLink="false">http://www.zhangyiqun.cn/?p=967</guid>
		<description><![CDATA[原来使用cacti+snmp对流量进行统计，虽然流量趋势看的很清楚但是无法提供本月或者当日的总流量。因为国外的vps每个月有固定的流量限制，所以每日花了多少流量是非常有必要了解清楚的。 ntop等工具对机器资源有消耗，在本来资源就很紧张的vps中基本不考虑。vnstat绝对是一个最佳选择。可以自己写脚本，生成图片后每日发送到邮箱 It uses the network interface statistics provided by the kernel as information source. This means that vnStat won&#8217;t actually be sniffing any traffic and also ensures light use of system resources<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F20.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F967.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">VPS与VDS的区别</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F562.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F967.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Applications Manager，让nagios和cacti下岗吧。</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F967.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何修改wtmp记录？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F967.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>原来使用cacti+snmp对流量进行统计，虽然流量趋势看的很清楚但是无法提供本月或者当日的总流量。因为国外的vps每个月有固定的流量限制，所以每日花了多少流量是非常有必要了解清楚的。</p>
<p>ntop等工具对机器资源有消耗，在本来资源就很紧张的vps中基本不考虑。vnstat绝对是一个最佳选择。可以自己写脚本，生成图片后每日发送到邮箱</p>
<blockquote><p>It uses the network interface statistics provided by the kernel as information source. This means that vnStat won&#8217;t actually be sniffing any traffic and also ensures light use of system resources</p></blockquote>
<p><img src="http://humdi.net/vnstat/cgidemo/vnstat.png" border="0" alt="summary" /><br />
<span id="more-967"></span></p>
<p><img src="http://humdi.net/vnstat/cgidemo/vnstat_h.png" border="0" alt="hourly" /></p>
<p><img src="http://humdi.net/vnstat/cgidemo/vnstat_d.png" border="0" alt="daily" /></p>
<p><img src="http://humdi.net/vnstat/cgidemo/vnstat_m.png" border="0" alt="monthly" vspace="4" /></p>
<p style="margin:0;padding:0;height:1px;overflow:hidden;">
    <script type="text/javascript"><!--
        var wumiiSitePrefix = "http://www.zhangyiqun.net";
        var wumiiEnableCustomPos = false;
        var wumiiParams = "&#038;num=4&#038;mode=3&#038;displayInFeed=1&#038;version=1.0.5.5&#038;pf=WordPress3.2.1";
    //--></script><script type="text/javascript" src="http://widget.wumii.com/ext/relatedItemsWidget.htm"></script><a href="http://www.wumii.com/widget/relatedItems.htm" style="border:0;"><img src="http://static.wumii.com/images/pixel.png" alt="无觅相关文章插件，快速提升流量" style="border:0;padding:0;margin:0;" /></a></p>
<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F20.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F967.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">VPS与VDS的区别</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F562.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F967.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Applications Manager，让nagios和cacti下岗吧。</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F1040.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F967.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">如何修改wtmp记录？</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.zhangyiqun.net%2F54.html&from=http%3A%2F%2Fwww.zhangyiqun.net%2F967.html">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">[集群]基础</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.zhangyiqun.net/967.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: www.zhangyiqun.net @ 2012-02-09 12:07:38 -->
