<?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>hqlong&#039;s blog &#187; linux</title>
	<atom:link href="http://hqlong.com/tag/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://hqlong.com</link>
	<description></description>
	<lastBuildDate>Wed, 30 Jun 2010 14:25:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>重定向的几个组合应用</title>
		<link>http://hqlong.com/2009/06/851.html</link>
		<comments>http://hqlong.com/2009/06/851.html#comments</comments>
		<pubDate>Wed, 24 Jun 2009 06:57:17 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[linux/server]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=851</guid>
		<description><![CDATA[cmd 2&#62;file      把文件描述符2重定向到file，即把错误输出存到file中。 cmd &#62; file 2&#62;&#38;1     把标准错误重定向到标准输出，再重定向到file，即stderr和stdout都被输出到file中 cmd &#38;&#62; fi... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/06/851.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux c/c++ socket程序的编写</title>
		<link>http://hqlong.com/2009/06/800.html</link>
		<comments>http://hqlong.com/2009/06/800.html#comments</comments>
		<pubDate>Sun, 14 Jun 2009 10:05:19 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[linux/server]]></category>
		<category><![CDATA[c/c++]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[socket]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=800</guid>
		<description><![CDATA[这篇日志还是先从一个能够运行起来的例子出发，一旦能顺利的看到程序的成功运行，那么接下来的事件我想应该是问为什么了？似乎这样更加容易理解和掌握。 对于socket程序的概念这里就不... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/06/800.html/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>linux c/c++多线程程序的编写</title>
		<link>http://hqlong.com/2009/06/771.html</link>
		<comments>http://hqlong.com/2009/06/771.html#comments</comments>
		<pubDate>Mon, 08 Jun 2009 10:00:25 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[c/c++]]></category>
		<category><![CDATA[linux/server]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[多线程]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=771</guid>
		<description><![CDATA[第一次尝试编写linux下多线程程序，也是颇废一番周折。深知初学者对能快速的成功运行一段程序的渴望，所以本文专门用了“linux c/c++多线程程序的编写“这个醒目的标题，方便大家能即使从... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/06/771.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>删除文件夹下所有.svn文件</title>
		<link>http://hqlong.com/2009/06/764.html</link>
		<comments>http://hqlong.com/2009/06/764.html#comments</comments>
		<pubDate>Mon, 08 Jun 2009 02:58:01 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[linux/server]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=764</guid>
		<description><![CDATA[方法一： find . -name .svn &#124; xargs rm -rf 方法二： ls -alR &#124; grep .svn/ &#124; xargs rm -rf 机器人 2009-06-08 10:57 于 北京 ... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/06/764.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vim编码</title>
		<link>http://hqlong.com/2009/05/729.html</link>
		<comments>http://hqlong.com/2009/05/729.html#comments</comments>
		<pubDate>Tue, 12 May 2009 09:46:53 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[vim]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[编码]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=729</guid>
		<description><![CDATA[1.在vim中，查看当前文件编码格式 :set fileencoding 2.转换文件编码 :set fileencoding=utf-8 3.iconv转换编码 ~@bash iconv -f gbk -t utf-8 gbk.txt &#62; utf-8.txt 4.乱码解决方法 在.vimrc中添加如下代码 set fileencodings=utf... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/05/729.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>linux批量替换命令</title>
		<link>http://hqlong.com/2009/05/728.html</link>
		<comments>http://hqlong.com/2009/05/728.html#comments</comments>
		<pubDate>Tue, 12 May 2009 07:55:50 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[linux/server]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://hqlong.com/2009/05/728.html</guid>
		<description><![CDATA[sed &#34;s/商&#38;nbsp;圈/空&#38;nbsp;间/g&#34; `grep '商&#38;nbsp;圈' -rl .` 机器人 2009-05-12 15:54 于 北... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/05/728.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>scp非默认端口号拷贝</title>
		<link>http://hqlong.com/2009/05/725.html</link>
		<comments>http://hqlong.com/2009/05/725.html#comments</comments>
		<pubDate>Tue, 12 May 2009 07:48:41 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[linux/server]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[scp]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=725</guid>
		<description><![CDATA[root@shibu-laptop:# scp '-P 2222' style.css root@IP-address:/root/ style.css 100% 5509 5.4KB/s 00:00 :~$ scp --help usage: scp &#91;-1246BCpqrv&#93; &#91;-c cipher&#93; &#91;-F ssh_config&#93; &#91;-i identity_file&#93; &#91;-l limit&#93; &#91;-o ssh_opt... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/05/725.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>apache cgi程序的简单配置</title>
		<link>http://hqlong.com/2009/05/718.html</link>
		<comments>http://hqlong.com/2009/05/718.html#comments</comments>
		<pubDate>Tue, 05 May 2009 09:53:56 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[c/c++]]></category>
		<category><![CDATA[linux/server]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[cgi]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=718</guid>
		<description><![CDATA[首先添加虚拟主机 &#60;virtualhost 127.0.0.1:50001&#62; &#60;/virtualhost&#62; 这里新添加了50001端口来进行监听，所以还需要添加监听端口号 Listen 50001 要让程序能正常运行，还得通过配置ScriptAlias来允许服... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/05/718.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>fsck died with exist status4 解决方案</title>
		<link>http://hqlong.com/2009/04/714.html</link>
		<comments>http://hqlong.com/2009/04/714.html#comments</comments>
		<pubDate>Thu, 30 Apr 2009 09:30:08 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[linux/server]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=714</guid>
		<description><![CDATA[系统启动不了，出现 fsck died with exist status 4 错误， 通过 rsck.ext3 -y /dev/sda5 修复，重启ＯＫ 参考资料 http://www.ntu-kaka.cn/post/50.html 机器人　2009-04-30 17:29 于　北... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/04/714.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>转一篇当年比较愤青的发言</title>
		<link>http://hqlong.com/2009/04/710.html</link>
		<comments>http://hqlong.com/2009/04/710.html#comments</comments>
		<pubDate>Tue, 28 Apr 2009 15:50:12 +0000</pubDate>
		<dc:creator>机器人</dc:creator>
				<category><![CDATA[mylife]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://hqlong.com/?p=710</guid>
		<description><![CDATA[今天无意中去逛了下网信，然后点了下论坛，居然能打开了，以前好久一直打不开！！然后看到了06年自己发的一个帖子！！现在看起来觉得挺有意思的！！就帖了过来！！ 载自：我们为什么... ]]></description>
		<wfw:commentRss>http://hqlong.com/2009/04/710.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
