<?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>征程无限 &#187; Debian</title>
	<atom:link href="http://www.chengyongxu.com/blog/tag/debian/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chengyongxu.com/blog</link>
	<description></description>
	<lastBuildDate>Fri, 06 Jan 2012 18:32:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>VsFTPD自动安装脚本</title>
		<link>http://www.chengyongxu.com/blog/vsftpd%e8%87%aa%e5%8a%a8%e5%ae%89%e8%a3%85%e8%84%9a%e6%9c%ac/</link>
		<comments>http://www.chengyongxu.com/blog/vsftpd%e8%87%aa%e5%8a%a8%e5%ae%89%e8%a3%85%e8%84%9a%e6%9c%ac/#comments</comments>
		<pubDate>Tue, 20 Jul 2010 10:26:20 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[FTP服务器]]></category>
		<category><![CDATA[shell编程]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Redhat]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[vsftp]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=629</guid>
		<description><![CDATA[<p>虽然平时配置一个ftp要不了5分钟，但写完脚本才发现，浪费的时间实现太多了，脚本一般半分钟就装好了。 本脚本在CentOS 和 Redhat Enterprise环境中测试通过。有空再测其它发行版。 脚本中用到了以下几个东西： shell检查linux发行版； shell向文本写东西； shell生成随机密码； sed输出匹配行的下一行； …… 本文采用的是虚拟用户方式 具体内容如下： #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-引用文字-开始&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- #!/bin/bash # VsFTPD Virtual User Configuration # Author: 楚霏 # Company: chengyongxu.com # Create Date: 2010-07-20 # Last Update Date: 2010-07-20 17:36 &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/vsftpd%e8%87%aa%e5%8a%a8%e5%ae%89%e8%a3%85%e8%84%9a%e6%9c%ac/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/vsftpd%e8%87%aa%e5%8a%a8%e5%ae%89%e8%a3%85%e8%84%9a%e6%9c%ac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian+nginx+mediawiki的rewrite问题</title>
		<link>http://www.chengyongxu.com/blog/debiannginxmediawiki%e7%9a%84rewrite%e9%97%ae%e9%a2%98/</link>
		<comments>http://www.chengyongxu.com/blog/debiannginxmediawiki%e7%9a%84rewrite%e9%97%ae%e9%a2%98/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 08:13:51 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[WEB服务器]]></category>
		<category><![CDATA[网站架构]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[nginx]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[rewrite]]></category>
		<category><![CDATA[巴塞罗那]]></category>
		<category><![CDATA[阿贾克斯]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=429</guid>
		<description><![CDATA[<p>环境是Debian+nginx0.7.61+php5.3.0+mysql5.1.37 一、保证mediawiki目录下的LocalSettings.php文件中没有对做url重写的相关没配置，也就是注释或删除下边这个参数 #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-引用文字-开始&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- #$wgArticlePath = “/$1&#8243;; #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-引用文字-结束&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- 二、在nginx的vhost.conf进行rewrite的配置 #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-引用文字-开始&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- location / { index index.html index.htm index.php; root /www/wwwroot/chengyongxu.cn; rewrite ^/wiki/index.php/([^?]*)(?:\?(.*))? /wiki/index.php?title=$1&$2; } #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-引用文字-结束&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- #上边只加了一条规则，这样就可以通过访问 http://chengyongxu.cn/wiki/index.php/阿贾克斯 来访问到 http://chengyongxu.cn/wiki/index.php?title=阿贾克斯 了 三、如果要做rewrite，一定要保证同类的链接的一致性 不能阿贾克斯的链接是： http://chengyongxu.cn/wiki/index.php/阿贾克斯 而类似的巴塞罗那的链接是： http://chengyongxu.cn/index.php/巴塞罗那</p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/debiannginxmediawiki%e7%9a%84rewrite%e9%97%ae%e9%a2%98/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Debian和ubuntu寻找最快源</title>
		<link>http://www.chengyongxu.com/blog/debian%e5%92%8cubuntu%e5%af%bb%e6%89%be%e6%9c%80%e5%bf%ab%e6%ba%90/</link>
		<comments>http://www.chengyongxu.com/blog/debian%e5%92%8cubuntu%e5%af%bb%e6%89%be%e6%9c%80%e5%bf%ab%e6%ba%90/#comments</comments>
		<pubDate>Mon, 11 May 2009 09:41:48 +0000</pubDate>
		<dc:creator>楚霏</dc:creator>
				<category><![CDATA[桌面应用]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[Dreamlinux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.chengyongxu.com/blog/?p=312</guid>
		<description><![CDATA[<p>Debian和ubuntu寻找最快源 适用于debian，同样也适用基于debian的发行版，如ubuntu,kubuntu,dreamlinux等 apt-spy 方式: apt-spy会根据站点回应时间和带宽自动创建`sources.list&#8217;。 apt-get install apt-spy mv sources.list sources.list.bak /*备份源列表*/ apt-spy &#8211;help /*获取详细的使用方法/ apt-spy update /*更新您的镜像列表文件*/ apt-spy -d testing -a Asia /*在亚洲区寻找速度最快的testing版镜像,并生成 sources.list文件,也可使用 -o 参数指定写入文件*/ 一个漫长的等待，以后就不用麻烦了 apt-get update 后记： 发现ubuntu9.04的默认源中没有apt-spy这个软件了，下面是ubuntu9.04的163源 把下边的源列表增到/etc/apt/sources.list #&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-引用文字-开始&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;- deb http://mirrors.163.com/ubuntu/ &hellip; <a class="more-link" href="http://www.chengyongxu.com/blog/debian%e5%92%8cubuntu%e5%af%bb%e6%89%be%e6%9c%80%e5%bf%ab%e6%ba%90/">More<span class="meta-nav">&rarr;</span></a></p>
]]></description>
		<wfw:commentRss>http://www.chengyongxu.com/blog/debian%e5%92%8cubuntu%e5%af%bb%e6%89%be%e6%9c%80%e5%bf%ab%e6%ba%90/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

