<?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>Kim Chow Blog &#187; 操作系统</title>
	<atom:link href="http://www.jianblog.com/category/system/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jianblog.com</link>
	<description>Unix C将是我主攻的语言，现在用PHP在FreeBSD/Centos下开发。</description>
	<lastBuildDate>Fri, 23 Dec 2011 08:29:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>archlinux 桌面安装</title>
		<link>http://www.jianblog.com/2011/11/24/740/</link>
		<comments>http://www.jianblog.com/2011/11/24/740/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 03:25:54 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[Archlinux]]></category>
		<category><![CDATA[操作系统]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=740</guid>
		<description><![CDATA[先简单地记录一下，我安装过程中，所有到东西 安装相关字体 pacman -S wqy-bitmapfont wqy-zenhei ttf-dejavu ttf-arphic-ukai ttf-arphic-uming ttf-fireflysung 安装输入法 pacman -S ibus ibus-table &#160; vi ~/.xprofile export GTK_IM_MODULE=ibus export XMODIFIERS=@im=ibus export QT_IM_MODULE=ibus ibus-daemon -x -d]]></description>
		<wfw:commentRss>http://www.jianblog.com/2011/11/24/740/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bind bdb</title>
		<link>http://www.jianblog.com/2011/08/23/728/</link>
		<comments>http://www.jianblog.com/2011/08/23/728/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 04:07:01 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[Archlinux]]></category>
		<category><![CDATA[操作系统]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=728</guid>
		<description><![CDATA[做智能DNS，现在一般都是跟mysql做结合。通过各方面的测试结果表明，使用Mysql结合的性能并不是这么理想。相关的测试结果，可以看下官网公布的数据http://bind-dlz.sourceforge.net/perf_tests.html。我没有打算自己重新做一次这方面的测试。在之前的应用中，Mysql的并发连接并不高，基于这些数据基础下，做dns相关结合的时候，我不会考虑使用mysql做为数据的后端。 简单地记录一下相关的安装过程 pacman -S abs abs pacman -S base-devel cd /var/abs/extra/bind vi PKGBUILD 在63行加入 &#8211;with-dlz-stub \ &#8211;with-dlz-bdb \ 保存之后，执行 makepkg -s --asroot pacman -U bind-9.8.0.P4-1-x86_64.pkg.tar.xz 具体的配置，迟点，我处理好之后，将会在这里公布。]]></description>
		<wfw:commentRss>http://www.jianblog.com/2011/08/23/728/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vim相关配置</title>
		<link>http://www.jianblog.com/2011/08/23/725/</link>
		<comments>http://www.jianblog.com/2011/08/23/725/#comments</comments>
		<pubDate>Tue, 23 Aug 2011 03:25:28 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[Archlinux]]></category>
		<category><![CDATA[操作系统]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=725</guid>
		<description><![CDATA[前段时间，把本本的系统换成archlinux了。写代码，经常用vim,为了方便以后使用，记录一下vim的配置文件。 set tabstop=4 " Number of spaces that a in the file counts for. set shiftwidth=4 " Number of spaces to use for each step of (auto)indent. set expandtab " Use the appropriate number of spaces to insert a . " Spaces are used in indents with the '>' and ']]></description>
		<wfw:commentRss>http://www.jianblog.com/2011/08/23/725/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python3下使用distribute安装软件</title>
		<link>http://www.jianblog.com/2011/03/27/722/</link>
		<comments>http://www.jianblog.com/2011/03/27/722/#comments</comments>
		<pubDate>Sun, 27 Mar 2011 06:56:37 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[Archlinux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[操作系统]]></category>
		<category><![CDATA[编程]]></category>
		<category><![CDATA[archlinux]]></category>
		<category><![CDATA[freebsd]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=722</guid>
		<description><![CDATA[在这段时间在用Python去实现一些系统管理的东西。我现在把操作系统由Centos改为Archlinux，主要是Archlinux的软件包管理跟FreeBSD很象。我比较喜欢FreeBSD的包管理方式，当然他还是没有FreeBSD的Ports使用起来方便。 Python3已经慢慢地走进人们的视线，我也赶下潮流使用一下新版本的东西看是否可以接受。 pacman -S python-distribute distribute的使用跟Easy_install是一样的，在命令行下，运行 easy_install-3.2 URL 相关包的URL到http://pypi.python.org/pypi这里来搜索，Python有很多很优秀的库。往后，我会分享更多我这段时间在家静思的成果。当然，这段时间，我在家关注更多的还是技术相关的东西。]]></description>
		<wfw:commentRss>http://www.jianblog.com/2011/03/27/722/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>squid简单配置</title>
		<link>http://www.jianblog.com/2011/03/26/717/</link>
		<comments>http://www.jianblog.com/2011/03/26/717/#comments</comments>
		<pubDate>Sat, 26 Mar 2011 09:13:30 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[操作系统]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Squid]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=717</guid>
		<description><![CDATA[squid是Linux下比较常用的代理服务器软件。其实，他的配置可以说挺简单的，当然也可以配置得挺复杂的。以前，我有写过相关的文章。现在只是将一些东西简化出来。 关于Squid的服务端口，将端口改为8080 http_port 8080 允许所有用户访问，只要找到http_access deny all改为http_access allow all http_access allow all 超级代理配置，即隐藏客户端的IP via off forwared_for off 用户验证 auth_param basic program /usr/lib64/squid/ncsa_auth /etc/squid/passwd auth_param basic children 5 auth_param basic realm Squid proxy-caching web server auth_param basic credentialsttl 2 hours auth_param basic casesensitive off 在http_access deny all之前加入以下代码 acl ncsa_users proxy_auth REQUIRED http_access allow ncsa_users 通过apache的htpasswd生成用户名密码 htpasswd [...]]]></description>
		<wfw:commentRss>http://www.jianblog.com/2011/03/26/717/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tokyocabinet/Tokyotyrant文档大合集</title>
		<link>http://www.jianblog.com/2010/08/29/701/</link>
		<comments>http://www.jianblog.com/2010/08/29/701/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 12:42:53 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[操作系统]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=701</guid>
		<description><![CDATA[1. 前言 2. 参考资料链接 3. 使用介绍 3.1. 基本概念 3.2. Tokyo Cabinet 简介 3.3. 性能介绍 3.4. tokyotyrant和Memcached的优势比较 3.4.1. 故障转移 3.4.2. 日志文件体积小 3.4.3. 超大数据量下表现出色 3.5. 安装 3.5.1. 编译安装tokyocabinet数据库 3.5.2. 编译安装tokyotyrant 3.6. tokyotyrant的配置 3.6.1. 创建tokyotyrant数据文件存放目录 3.6.2. 启动tokyotyrant的主进程（ttserver） 3.6.3. 停止tokyotyrant（ttserver） 3.7. 调用 4. 程序架构 4.1. 流程介绍 4.1.1. 多线程 4.1.2. TokyoTyrant vs. Memcached 4.1.3. 启动流程 4.1.4. 请求处理 4.1.5. 数据结构 5. [...]]]></description>
		<wfw:commentRss>http://www.jianblog.com/2010/08/29/701/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu安装thrift以及Eclipse</title>
		<link>http://www.jianblog.com/2010/03/19/698/</link>
		<comments>http://www.jianblog.com/2010/03/19/698/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 05:20:51 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[操作系统]]></category>
		<category><![CDATA[编程]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=698</guid>
		<description><![CDATA[PHP对中层间那块比较弱，Facebook开放了他们在使用的Thrift比较好地解决这个问题。当然，没有上到一个量级的时候，使用这个东西不见得有什么效果。我主要是简单地记录一下怎样安装Thrift，以及Eclipse的java开发环境。 &#60;coolcode&#62; apt-get install libboost-dev automake libtool flex bison pkg-config g++ sudo apt-get install ant ivy libslf4j-java libcommons-lang-java liblog4j1.2-java &#60;/coolcode&#62; 到官网下载 http://incubator.apache.org/thrift/ 最新的Thrift。 编译安装Thrift &#60;coolcode&#62; ./configure &#8211;prefix=/opt/thrift make make install &#60;/coolcode&#62; 配置java环境 cat /etc/profile.d/jdk.sh &#60;coolcode&#62; JAVA_HOME=/usr/lib/jvm/java-6-sun export JAVA_HOME CLASSPATH=.:/usr/share/java/ export CLASSPATH &#60;/coolcode&#62; 安装eclipse的java开发环境 &#60;coolcode&#62; sudo apt-get install eclipse-jdt &#60;/coolcode&#62;]]></description>
		<wfw:commentRss>http://www.jianblog.com/2010/03/19/698/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FreeBSD使用VPN</title>
		<link>http://www.jianblog.com/2009/08/19/686/</link>
		<comments>http://www.jianblog.com/2009/08/19/686/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 00:23:37 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[freebsd]]></category>
		<category><![CDATA[操作系统]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=686</guid>
		<description><![CDATA[互联网上使用VPN的资料，比较多。把网关结合好的，我发现不是很多。特意写个来记录一下 cd /usr/ports/net/pptpclient make install clean cat /etc/ppp/ppp.conf hk: &#160;set authname **** &#160;set authkey **** &#160;set timeout 1 &#160;set redial 10 1 &#160;set ifaddr 0 0 &#160;add! default HISADDR &#160;alias enable yes &#160;enable MPPE &#160;accept MPPE &#160; cat /usr/local/etc/rc.d/pptp.sh #!/bin/sh &#160; case &#34;$1&#34; in start) &#160;&#160; &#160; &#160; &#160;/usr/local/sbin/pptp XXX.XXX.XXX.XXX hk &#38; &#160;&#160; &#160; &#160; [...]]]></description>
		<wfw:commentRss>http://www.jianblog.com/2009/08/19/686/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Varnish第二版配置</title>
		<link>http://www.jianblog.com/2009/06/04/664/</link>
		<comments>http://www.jianblog.com/2009/06/04/664/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 19:13:48 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[freebsd]]></category>
		<category><![CDATA[操作系统]]></category>
		<category><![CDATA[varnish]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=664</guid>
		<description><![CDATA[之前有写过一个Varnish，用起来感觉怪怪的。准确地说是有人反应会出现时快时慢的感觉。这几天参考官方文档重新配置过了Varnish。现在的Varnish主要是跟Apache配合来使用。暂时还没有以独立的服务器来跑。因为个人的BLog没有什么流量。呵呵。。 FreeBSD安装软件就是简单 portmaster /usr/ports/www/varnish vi /etc/sysctl.conf kern.ipc.somaxconn=16384 kern.maxfiles=131072 kern.maxfilesperproc=104856 kern.threads.max_threads_per_proc=4096 &#160; net.inet.tcp.blackhole=2 net.inet.udp.blackhole=1 &#160; net.inet.icmp.icmplim_output=0 vi /etc/rc.conf varnishd_enable=&#34;YES&#34; varnishd_listen=&#34;:80&#34; 将Apache监听的端口改为8080 vi /usr/local/etc/apache22/http.conf #大概在第40行左右。使用:40可以直接到 Listen 8080 vi /usr/local/etc/varnish/default.vcl #-e This is a basic VCL configuration file for varnish.&#160; See the vcl(7) #man page for details on VCL syntax and semantics. # #Default backend definition.&#160; Set this [...]]]></description>
		<wfw:commentRss>http://www.jianblog.com/2009/06/04/664/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>freebsd下配置samba</title>
		<link>http://www.jianblog.com/2009/05/29/643/</link>
		<comments>http://www.jianblog.com/2009/05/29/643/#comments</comments>
		<pubDate>Thu, 28 May 2009 17:09:18 +0000</pubDate>
		<dc:creator>Kim Chow</dc:creator>
				<category><![CDATA[freebsd]]></category>
		<category><![CDATA[操作系统]]></category>
		<category><![CDATA[samba]]></category>

		<guid isPermaLink="false">http://www.jianblog.com/?p=643</guid>
		<description><![CDATA[在FreeBSD下安装Samba比较简单，主要是配置有点麻烦。 portmaster /usr/ports/net/samba 这样就把Samba装好了。配置也有一个比较简单的方法，就是使用swat来做配置。我还是把我的配置贴一下。 [global] &#160;&#160; &#160; &#160; &#160;workgroup = WORKGROUP &#160;&#160; &#160; &#160; &#160;server string = Samba &#160; &#160;&#160; &#160; &#160; &#160;#security &#160;&#160; &#160; &#160; &#160;security = user &#160;&#160; &#160; &#160; &#160;encrypt passwords = yes &#160;&#160; &#160; &#160; &#160;guest account = www &#160;&#160; &#160; &#160; &#160;guest ok = no &#160; &#160;&#160; &#160; &#160; &#160;#printing [...]]]></description>
		<wfw:commentRss>http://www.jianblog.com/2009/05/29/643/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

