<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>猫言猫语</title>
	
	<link>http://imcat.in</link>
	<description>人的头脑太复杂，时间过得久，有时候连自己也被自己骗了，记下来才是最真实的……</description>
	<lastBuildDate>Fri, 06 Nov 2009 07:30:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/mucat" type="application/rss+xml" /><feedburner:emailServiceId>mucat</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Linux下Memcache的安装方法</title>
		<link>http://imcat.in/memcache-installation-method-under-linux/</link>
		<comments>http://imcat.in/memcache-installation-method-under-linux/#comments</comments>
		<pubDate>Sat, 26 Sep 2009 10:57:07 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Memcache]]></category>

		<guid isPermaLink="false">http://imcat.in/linux%e4%b8%8bmemcache%e7%9a%84%e5%ae%89%e8%a3%85%e6%96%b9%e6%b3%95/</guid>
		<description><![CDATA[最近都在研究缓存的问题,先是APC,显示Memcache,目的还是要将WordPress的速度提起来.

Memcache是danga.com的一个项目，最早是为 LiveJournal 服务的，目前全世界不少人使用这个缓存项目来构建自己大负载的网站，来分担数据库的压力。
它可以应对任意多个连接，使用非阻塞的网络IO。由于它的工作机制是在内存中开辟一块空间，然后建立一个HashTable，Memcached自管理这些HashTable。
Memcache官方网站：http://www.danga.com/memcached

首先去官方下载最新的版本,现在最新的是memcached-1.4.1 ,然后就编译安装了.
另外,Memcache用到了libevent这个库用于Socket的处理,所以还需要安装libevent，libevent的最新稳定版本是libevent-1.4.12 .
1.先进这个两个文件下载回来,放到临时目录下

cd /usr/local/src
wget http://memcached.googlecode.com/files/memcached-1.4.1.tar.gz
wget http://www.monkey.org/~provos/libevent-1.4.12-stable.tar.gz


2.先安装libevent：

tar zxvf libevent-1.4.12-stable.tar.gz
cd libevent-1.4.12-stable
./configure –prefix=/usr
make
make install

3.安装memcached，安装时还要指定libevent的安装位置：

tar zxvf memcached-1.4.1.tar.gz
cd memcached-1.4.1
./configure –with-libevent=/usr
make
make install

4.然后就可以启动memcached的守护进程了：

/usr/local/bin/memcached -d -m 10 -u root -l 127.0.0.10 -p 12000 -c 256 -P /tmp/memcached.pid

-d选项是启动一个守护进程，
-m是分配给Memcache使用的内存数量，单位是MB，我这里是10MB，
-u是运行Memcache的用户，我这里是root，
-l是监听的服务器IP地址，如果有多个地址的话，我这里指定了服务器的IP地址192.168.0.200，
-p是设置Memcache监听的端口，我这里设置了12000，最好是1024以上的端口，
-c选项是最大运行的并发连接数，默认是1024，我这里设置了256，按照你服务器的负载量来设定，
-P是设置保存Memcache的pid文件，我这里是保存在 /tmp/memcached.pid，
如果要结束Memcache进程，执行：

kill `cat /tmp/memcached.pid`

下面就是安装Memcache的PHP扩展
1.在http://pecl.php.net/package/memcache 选择相应想要下载的memcache版本。
2.安装PHP的memcache扩展
wget http://pecl.php.net/get/memcache-2.2.5.tgz
tar vxzf memcache-2.2.5.tgz
cd memcache-2.2.5/
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config
make
make install
3.上述安装完后会有类似这样的提示：
Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-2006xxxx/
4.把php.ini中的extension_dir = “./”修改为
extension_dir = “/usr/local/php/lib/php/extensions/no-debug-non-zts-2006xxxx/”
5.添加一行来载入memcache扩展：extension=memcache.so
最后重启你的phpfastcgi进程或者apache, Memcache就安装成功了.
PS.下次有空说说WordPress 怎么应用Memcache
 最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包安装apc为php加速Linux查看系统配置常用命令解决Linux中出现Too many open filesLinux下的QQ软件：Eva 0120测试版
请更改订阅地址:http://feed.imcat.in/

© [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/IoSZLeRrbwotb5wx9eR1EPG-wx0/0/da"><img src="http://feedads.g.doubleclick.net/~a/IoSZLeRrbwotb5wx9eR1EPG-wx0/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/IoSZLeRrbwotb5wx9eR1EPG-wx0/1/da"><img src="http://feedads.g.doubleclick.net/~a/IoSZLeRrbwotb5wx9eR1EPG-wx0/1/di" border="0" ismap="true"></img></a></p><p>最近都在研究缓存的问题,先是APC,显示Memcache,目的还是要将WordPress的速度提起来.</p>
<blockquote><p>
Memcache是danga.com的一个项目，最早是为 LiveJournal 服务的，目前全世界不少人使用这个缓存项目来构建自己大负载的网站，来分担数据库的压力。<br />
它可以应对任意多个连接，使用非阻塞的网络IO。由于它的工作机制是在内存中开辟一块空间，然后建立一个HashTable，Memcached自管理这些HashTable。<br />
Memcache官方网站：http://www.danga.com/memcached
</p></blockquote>
<p>首先去官方下载最新的版本,现在最新的是memcached-1.4.1 ,然后就编译安装了.</p>
<p>另外,Memcache用到了libevent这个库用于Socket的处理,所以还需要安装libevent，libevent的最新稳定版本是libevent-1.4.12 .</p>
<p>1.先进这个两个文件下载回来,放到临时目录下</p>
<p><code><br />
cd /usr/local/src<br />
wget http://memcached.googlecode.com/files/memcached-1.4.1.tar.gz<br />
wget http://www.monkey.org/~provos/libevent-1.4.12-stable.tar.gz<br />
</code></p>
<p><span id="more-1044"></span></p>
<p>2.先安装libevent：<br />
<code><br />
tar zxvf libevent-1.4.12-stable.tar.gz<br />
cd libevent-1.4.12-stable<br />
./configure –prefix=/usr<br />
make<br />
make install<br />
</code></p>
<p>3.安装memcached，安装时还要指定libevent的安装位置：<br />
<code><br />
tar zxvf memcached-1.4.1.tar.gz<br />
cd memcached-1.4.1<br />
./configure –with-libevent=/usr<br />
make<br />
make install<br />
</code></p>
<p>4.然后就可以启动memcached的守护进程了：<br />
<code><br />
/usr/local/bin/memcached -d -m 10 -u root -l 127.0.0.10 -p 12000 -c 256 -P /tmp/memcached.pid<br />
<!--more--><br />
-d选项是启动一个守护进程，</p>
<p>-m是分配给Memcache使用的内存数量，单位是MB，我这里是10MB，</p>
<p>-u是运行Memcache的用户，我这里是root，</p>
<p>-l是监听的服务器IP地址，如果有多个地址的话，我这里指定了服务器的IP地址192.168.0.200，</p>
<p>-p是设置Memcache监听的端口，我这里设置了12000，最好是1024以上的端口，</p>
<p>-c选项是最大运行的并发连接数，默认是1024，我这里设置了256，按照你服务器的负载量来设定，</p>
<p>-P是设置保存Memcache的pid文件，我这里是保存在 /tmp/memcached.pid，</p>
<p>如果要结束Memcache进程，执行：<br />
</code><br />
kill `cat /tmp/memcached.pid`<br />
<code></p>
<p><strong>下面就是安装Memcache的PHP扩展</strong></p>
<p>1.在http://pecl.php.net/package/memcache 选择相应想要下载的memcache版本。</p>
<p>2.安装PHP的memcache扩展</p>
<p></code>wget http://pecl.php.net/get/memcache-2.2.5.tgz<br />
tar vxzf memcache-2.2.5.tgz<br />
cd memcache-2.2.5/<br />
/usr/local/php/bin/phpize<br />
./configure --with-php-config=/usr/local/php/bin/php-config<br />
make<br />
make install</p>
<p>3.上述安装完后会有类似这样的提示：</p>
<p>Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-2006xxxx/</p>
<p>4.把php.ini中的extension_dir = “./”修改为</p>
<p>extension_dir = “/usr/local/php/lib/php/extensions/no-debug-non-zts-2006xxxx/”</p>
<p>5.添加一行来载入memcache扩展：extension=memcache.so</p>
<p>最后重启你的phpfastcgi进程或者apache, Memcache就安装成功了.</p>
<p>PS.下次有空说说WordPress 怎么应用Memcache</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/" title="最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包">最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包</a></li><li><a href="http://imcat.in/apc-for-php-installed-to-speed-up/" title="安装apc为php加速">安装apc为php加速</a></li><li><a href="http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/" title="Linux查看系统配置常用命令">Linux查看系统配置常用命令</a></li><li><a href="http://imcat.in/linux-too-open-files/" title="解决Linux中出现Too many open files">解决Linux中出现Too many open files</a></li><li><a href="http://imcat.in/qq-under-linux-software-eva-0120-beta/" title="Linux下的QQ软件：Eva 0120测试版">Linux下的QQ软件：Eva 0120测试版</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/memcache-installation-method-under-linux/">Permalink</a> |
<a href="http://imcat.in/memcache-installation-method-under-linux/#comments">14 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/memcache-installation-method-under-linux/&title=Linux下Memcache的安装方法">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/d1O9ymHeKMY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/memcache-installation-method-under-linux/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Firefox 优化工具 : SpeedyFox</title>
		<link>http://imcat.in/firefox-optimization-tools-speedyfox/</link>
		<comments>http://imcat.in/firefox-optimization-tools-speedyfox/#comments</comments>
		<pubDate>Tue, 22 Sep 2009 18:17:23 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[SpeedyFox]]></category>
		<category><![CDATA[优化工具]]></category>

		<guid isPermaLink="false">http://imcat.in/firefox-%e4%bc%98%e5%8c%96%e5%b7%a5%e5%85%b7-speedyfox/</guid>
		<description><![CDATA[名称：SpeedyFox
简介：Firefox 优化工具
3.0 之后，Firefox 采用的 SQLite 数据库存储数据交换，造成了对 Firefox 不小的影响。随着使用的时间越长，会对启动速度和运行效率带来极大的阻碍。SpeedyFox 就是针对 Firefox 的 SQLite 数据库进行优化的工具，能给 Firefox 提高不少效率，节哀快速度。

下载：crystalidea.com/download/speedyfox.exe
便携版：crystalidea.com/download/speedyfox_portable.zip
  FireFox火狐中国版发布Firefox3 插件推荐：带预览效果的Ctrl-Tab将Firefox的tab(标签栏)移到边栏上打开Firefox的网址自动完成功能在Firefox查看Google Analytics的数据两个方法解决FireFox3中扩展不兼容
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
12 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/jkWldDQ64JBO5NerimeXt6e1XUI/0/da"><img src="http://feedads.g.doubleclick.net/~a/jkWldDQ64JBO5NerimeXt6e1XUI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/jkWldDQ64JBO5NerimeXt6e1XUI/1/da"><img src="http://feedads.g.doubleclick.net/~a/jkWldDQ64JBO5NerimeXt6e1XUI/1/di" border="0" ismap="true"></img></a></p><p>名称：<a rel="nofollow" href="http://www.crystalidea.com/speedyfox" target="_blank">SpeedyFox</a><br />
简介：Firefox 优化工具<br />
3.0 之后，Firefox 采用的 SQLite 数据库存储数据交换，造成了对 Firefox 不小的影响。随着使用的时间越长，会对启动速度和运行效率带来极大的阻碍。SpeedyFox 就是针对 Firefox 的 SQLite 数据库进行优化的工具，能给 Firefox 提高不少效率，节哀快速度。</p>
<p><img src="http://imcat.in/wp-content/uploads/2009/09/021722L4n.jpg" border="0" alt="speedyfox.jpg" title="Firefox 优化工具 : SpeedyFox" /></p>
<p>下载：<a rel="nofollow" href="http://www.crystalidea.com/download/speedyfox.exe">crystalidea.com/download/speedyfox.exe</a><br />
便携版：<a rel="nofollow" href="http://www.crystalidea.com/download/speedyfox_portable.zip">crystalidea.com/download/speedyfox_portable.zip</a></p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/chinese-version-of-the-firefox-release-firefox/" title=" FireFox火狐中国版发布"> FireFox火狐中国版发布</a></li><li><a href="http://imcat.in/firefox3-plug-recommended-preview-effect-with-the-ctrl-tab/" title="Firefox3 插件推荐：带预览效果的Ctrl-Tab">Firefox3 插件推荐：带预览效果的Ctrl-Tab</a></li><li><a href="http://imcat.in/firefox-will-be-the-tab-the-tab-bar-sidebar-on-the-move/" title="将Firefox的tab(标签栏)移到边栏上">将Firefox的tab(标签栏)移到边栏上</a></li><li><a href="http://imcat.in/open-firefox-address-auto-complete-feature/" title="打开Firefox的网址自动完成功能">打开Firefox的网址自动完成功能</a></li><li><a href="http://imcat.in/firefox-in-the-google-analytics-data-show/" title="在Firefox查看Google Analytics的数据">在Firefox查看Google Analytics的数据</a></li><li><a href="http://imcat.in/firefox3-resolved-two-ways-not-compatible-with-expansion/" title="两个方法解决FireFox3中扩展不兼容">两个方法解决FireFox3中扩展不兼容</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/firefox-optimization-tools-speedyfox/">Permalink</a> |
<a href="http://imcat.in/firefox-optimization-tools-speedyfox/#comments">12 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/firefox-optimization-tools-speedyfox/&title=Firefox 优化工具 : SpeedyFox">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/yMIvT2jfzTs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/firefox-optimization-tools-speedyfox/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>日本街头为什么这么多摇小旗的?</title>
		<link>http://imcat.in/why-many-japanese-street-flag-shake/</link>
		<comments>http://imcat.in/why-many-japanese-street-flag-shake/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 20:54:17 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[个人收藏]]></category>
		<category><![CDATA[日本]]></category>
		<category><![CDATA[日本文化]]></category>

		<guid isPermaLink="false">http://imcat.in/%e6%97%a5%e6%9c%ac%e8%a1%97%e5%a4%b4%e4%b8%ba%e4%bb%80%e4%b9%88%e8%bf%99%e4%b9%88%e5%a4%9a%e6%91%87%e5%b0%8f%e6%97%97%e7%9a%84/</guid>
		<description><![CDATA[我每到国外都喜欢在大街小巷随意走，看看建筑，拍拍照片。
 一天，我在东京逛街，不到一个小时的时间，遇到了好几个摇小旗的人。他们为什么在街上摇小旗呢？我们来看看照片。
 

 1、 这是一个建筑工地旁边，专门设置了一个人在这里摇小旗，如果有车辆和行人通过，他会根据工地作业情况决定是否允许通过，以确保安全。即使允许你通过，也会提醒你注意安全。


 

 2、 这是一个小巷，因为有车辆停这里装卸，也安排了人在这里摇小旗（似乎是指挥棒），防止发生交通事故。
 

 3、 这是大道上一个抢修下水道的现场，不仅设置了临时围挡，还安排了挥舞指挥棒的人，不停地向路过车辆发出信号。
 

 4、 这是一个维修电线的现场，安排了2个摇小旗的人。
 
 不到一个小时就遇到了好几个摇小旗的人，工地有，停车卸货处有，维修下水道的地方有，维修电线的地方有，只要有可能发生交通事故的临时占道行为，日本人都 会安排摇小旗的，防止发生事故。由此可见，日本有不少人每天在从事摇小旗的工作。我很感慨，这是对生命珍视的最具体最有效的体现，比喊一万句“安全第一” 要奏效一万倍。
 我的日本朋友告诉我，这些摇小旗的人可认真呢，他们有着很光荣的使命感呢。是啊，保护最宝贵的生命不受侵害，确实无比光荣，摇小旗无比光荣。
 
 从日本回国刚刚两天，我所生活的城市发生了一个悲剧，一个小男孩失踪了两天，后来在一个大水坑里发现了尸体，这个水坑是一个施工单位挖土方留下的，下雨积 了2米多深的水，小男孩路过这里掉下去淹死了，一个鲜活的生命就这样被吞噬了。这个水坑周围没有任何围挡和警示标志，当然，更没有摇小旗的。
 一个真正珍惜人的生命的社会才是可爱的，珍惜生命要从细节做起做好做到位。
 我们应当学习日本人摇小旗。
from:日本街头为什么摇小旗的多（组图）

 日本的小裤裤咖啡店美少女-入江纱绫
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
39 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/yjawMFNkf6o0P1w-8lMsdNCnF00/0/da"><img src="http://feedads.g.doubleclick.net/~a/yjawMFNkf6o0P1w-8lMsdNCnF00/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/yjawMFNkf6o0P1w-8lMsdNCnF00/1/da"><img src="http://feedads.g.doubleclick.net/~a/yjawMFNkf6o0P1w-8lMsdNCnF00/1/di" border="0" ismap="true"></img></a></p><p><span style="font-size: medium;">我每到国外都喜欢在大街小巷随意走，看看建筑，拍拍照片。</span></p>
<p><span style="font-size: medium;"> 一天，我在东京逛街，不到一个小时的时间，遇到了好几个摇小旗的人。他们为什么在街上摇小旗呢？我们来看看照片。</span></p>
<p><span style="font-size: medium;"> </span></p>
<p><a href="http://imcat.in/wp-content/uploads/2009/08/205410D5z.jpg"><img style="border: 0pt none; margin: 0px auto 10px; display: block; text-align: center;" src="http://imcat.in/wp-content/uploads/2009/08/205410D5z.jpg" border="0" alt="205410D5z 日本街头为什么这么多摇小旗的?" width="448" height="298" title="日本街头为什么这么多摇小旗的?" /></a></p>
<p><span style="font-size: medium;"> 1、 这是一个建筑工地旁边，专门设置了一个人在这里摇小旗，如果有车辆和行人通过，他会根据工地作业情况决定是否允许通过，以确保安全。即使允许你通过，也会提醒你注意安全。</span></p>
<p><span style="font-size: medium;"><span id="more-1041"></span><br />
</span></p>
<p><span style="font-size: medium;"> </span></p>
<p><a href="http://imcat.in/wp-content/uploads/2009/08/205413dzq.jpg"><img style="border: 0pt none; margin: 0px auto 10px; display: block; text-align: center;" src="http://imcat.in/wp-content/uploads/2009/08/205413dzq.jpg" border="0" alt="205413dzq 日本街头为什么这么多摇小旗的?" width="448" height="298" title="日本街头为什么这么多摇小旗的?" /></a></p>
<p><span style="font-size: medium;"> 2、 这是一个小巷，因为有车辆停这里装卸，也安排了人在这里摇小旗（似乎是指挥棒），防止发生交通事故。</span></p>
<p><span style="font-size: medium;"> </span></p>
<p><a href="http://imcat.in/wp-content/uploads/2009/08/205415Jzg.jpg"><img style="border: 0pt none; margin: 0px auto 10px; display: block; text-align: center;" src="http://imcat.in/wp-content/uploads/2009/08/205415Jzg.jpg" border="0" alt="205415Jzg 日本街头为什么这么多摇小旗的?" width="448" height="298" title="日本街头为什么这么多摇小旗的?" /></a></p>
<p><span style="font-size: medium;"> 3、 这是大道上一个抢修下水道的现场，不仅设置了临时围挡，还安排了挥舞指挥棒的人，不停地向路过车辆发出信号。</span></p>
<p><span style="font-size: medium;"> </span></p>
<p><a href="http://imcat.in/wp-content/uploads/2009/08/205417g8L.jpg"><img style="border: 0pt none; margin: 0px auto 10px; display: block; text-align: center;" src="http://imcat.in/wp-content/uploads/2009/08/205417g8L.jpg" border="0" alt="205417g8L 日本街头为什么这么多摇小旗的?" width="448" height="298" title="日本街头为什么这么多摇小旗的?" /></a></p>
<p><span style="font-size: medium;"> 4、 这是一个维修电线的现场，安排了2个摇小旗的人。</span></p>
<p><span style="font-size: medium;"> </span></p>
<p><span style="font-size: medium;"> 不到一个小时就遇到了好几个摇小旗的人，工地有，停车卸货处有，维修下水道的地方有，维修电线的地方有，只要有可能发生交通事故的临时占道行为，日本人都 会安排摇小旗的，防止发生事故。由此可见，日本有不少人每天在从事摇小旗的工作。我很感慨，这是对生命珍视的最具体最有效的体现，比喊一万句“安全第一” 要奏效一万倍。</span></p>
<p><span style="font-size: medium;"> 我的日本朋友告诉我，这些摇小旗的人可认真呢，他们有着很光荣的使命感呢。是啊，保护最宝贵的生命不受侵害，确实无比光荣，摇小旗无比光荣。</span></p>
<p><span style="font-size: medium;"> </span></p>
<p><span style="font-size: medium;"> 从日本回国刚刚两天，我所生活的城市发生了一个悲剧，一个小男孩失踪了两天，后来在一个大水坑里发现了尸体，这个水坑是一个施工单位挖土方留下的，下雨积 了2米多深的水，小男孩路过这里掉下去淹死了，一个鲜活的生命就这样被吞噬了。这个水坑周围没有任何围挡和警示标志，当然，更没有摇小旗的。</span></p>
<p><span style="font-size: medium;"> 一个真正珍惜人的生命的社会才是可爱的，珍惜生命要从细节做起做好做到位。</span></p>
<p><span style="font-size: medium;"> 我们应当学习日本人摇小旗。</span></p>
<p><span style="font-size: medium;">from:<a href="http://laoxuetu.blog.sohu.com/128544340.html">日本街头为什么摇小旗的多（组图）</a><br />
</span></p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/japan-small-coffee-shop-underwear/" title="日本的小裤裤咖啡店">日本的小裤裤咖啡店</a></li><li><a href="http://imcat.in/us-girls-into-the-yarn-ling-jiang/" title="美少女-入江纱绫">美少女-入江纱绫</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/why-many-japanese-street-flag-shake/">Permalink</a> |
<a href="http://imcat.in/why-many-japanese-street-flag-shake/#comments">39 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/why-many-japanese-street-flag-shake/&title=日本街头为什么这么多摇小旗的?">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/-Vd52GsD83o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/why-many-japanese-street-flag-shake/feed/</wfw:commentRss>
		<slash:comments>39</slash:comments>
		</item>
		<item>
		<title>日本的小裤裤咖啡店</title>
		<link>http://imcat.in/japan-small-coffee-shop-underwear/</link>
		<comments>http://imcat.in/japan-small-coffee-shop-underwear/#comments</comments>
		<pubDate>Tue, 21 Jul 2009 18:17:55 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[御宅族]]></category>
		<category><![CDATA[小裤裤]]></category>
		<category><![CDATA[日本]]></category>
		<category><![CDATA[日本文化]]></category>

		<guid isPermaLink="false">http://imcat.in/%e6%97%a5%e6%9c%ac%e7%9a%84%e5%b0%8f%e8%a3%a4%e8%a3%a4%e5%92%96%e5%95%a1%e5%ba%97/</guid>
		<description><![CDATA[生活在11区的男人真幸福啊,不仅有女仆咖啡店,现在还有小裤裤咖啡店
果然是色香味俱全
这些MM都是穿着黑色 T-shirt 和条纹小裤裤,为什么不是蕾丝花边小裤裤呢?
下一步估计就是提供各种服务...嗯嗯.....11区人民的生活真好


 日本街头为什么这么多摇小旗的?美少女-入江纱绫
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
38 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/nav_ar5VvRF30OWt-PVU8LjC_EI/0/da"><img src="http://feedads.g.doubleclick.net/~a/nav_ar5VvRF30OWt-PVU8LjC_EI/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/nav_ar5VvRF30OWt-PVU8LjC_EI/1/da"><img src="http://feedads.g.doubleclick.net/~a/nav_ar5VvRF30OWt-PVU8LjC_EI/1/di" border="0" ismap="true"></img></a></p><p>生活在11区的男人真幸福啊,不仅有女仆咖啡店,现在还有小裤裤咖啡店</p>
<p>果然是色香味俱全</p>
<p>这些MM都是穿着黑色 T-shirt 和条纹小裤裤,为什么不是蕾丝花边小裤裤呢?</p>
<p>下一步估计就是提供各种服务...嗯嗯.....11区人民的生活真好<br />
<a href="http://imcat.in/wp-content/uploads/2009/07/203.jpg"><img class="alignnone size-medium wp-image-1036" title="203" src="http://imcat.in/wp-content/uploads/2009/07/203-300x272.jpg" alt="203 300x272 日本的小裤裤咖啡店" width="300" height="272" /></a></p>
<p><span id="more-1035"></span></p>

<a href='http://imcat.in/japan-small-coffee-shop-underwear/20090721_b1c5c795b389aa41a7c2bqofhhrbojpn/' title='20090721_b1c5c795b389aa41a7c2bQofhhRbOjpN'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/07/20090721_b1c5c795b389aa41a7c2bQofhhRbOjpN-150x150.jpg" class="attachment-thumbnail" alt="20090721 b1c5c795b389aa41a7c2bQofhhRbOjpN 150x150 日本的小裤裤咖啡店" title="20090721_b1c5c795b389aa41a7c2bQofhhRbOjpN" /></a>
<a href='http://imcat.in/japan-small-coffee-shop-underwear/shimapan-cafe/' title='shimapan-cafe'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/07/shimapan-cafe-150x150.jpg" class="attachment-thumbnail" alt="shimapan cafe 150x150 日本的小裤裤咖啡店" title="shimapan-cafe" /></a>
<a href='http://imcat.in/japan-small-coffee-shop-underwear/shimapan-cafe-3/' title='shimapan-cafe-3'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/07/shimapan-cafe-3-150x150.jpg" class="attachment-thumbnail" alt="shimapan cafe 3 150x150 日本的小裤裤咖啡店" title="shimapan-cafe-3" /></a>
<a href='http://imcat.in/japan-small-coffee-shop-underwear/shimapan-cafe-4/' title='shimapan-cafe-4'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/07/shimapan-cafe-4-150x150.jpg" class="attachment-thumbnail" alt="shimapan cafe 4 150x150 日本的小裤裤咖啡店" title="shimapan-cafe-4" /></a>
<a href='http://imcat.in/japan-small-coffee-shop-underwear/shimapan-cafe-5/' title='shimapan-cafe-5'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/07/shimapan-cafe-5-150x150.jpg" class="attachment-thumbnail" alt="shimapan cafe 5 150x150 日本的小裤裤咖啡店" title="shimapan-cafe-5" /></a>
<a href='http://imcat.in/japan-small-coffee-shop-underwear/shimapan-cafe-6/' title='shimapan-cafe-6'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/07/shimapan-cafe-6-150x150.jpg" class="attachment-thumbnail" alt="shimapan cafe 6 150x150 日本的小裤裤咖啡店" title="shimapan-cafe-6" /></a>
<a href='http://imcat.in/japan-small-coffee-shop-underwear/attachment/203/' title='203'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/07/203-150x150.jpg" class="attachment-thumbnail" alt="203 150x150 日本的小裤裤咖啡店" title="203" /></a>

<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/why-many-japanese-street-flag-shake/" title="日本街头为什么这么多摇小旗的?">日本街头为什么这么多摇小旗的?</a></li><li><a href="http://imcat.in/us-girls-into-the-yarn-ling-jiang/" title="美少女-入江纱绫">美少女-入江纱绫</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/japan-small-coffee-shop-underwear/">Permalink</a> |
<a href="http://imcat.in/japan-small-coffee-shop-underwear/#comments">38 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/japan-small-coffee-shop-underwear/&title=日本的小裤裤咖啡店">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/uo5ktSiJOCM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/japan-small-coffee-shop-underwear/feed/</wfw:commentRss>
		<slash:comments>38</slash:comments>
		</item>
		<item>
		<title>安装apc为php加速</title>
		<link>http://imcat.in/apc-for-php-installed-to-speed-up/</link>
		<comments>http://imcat.in/apc-for-php-installed-to-speed-up/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 22:30:20 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[APC]]></category>
		<category><![CDATA[install-apc]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://imcat.in/%e5%ae%89%e8%a3%85apc%e4%b8%baphp%e5%8a%a0%e9%80%9f/</guid>
		<description><![CDATA[Alternative PHP Cache（APC）是 PHP 的一个免费公开的优化代码缓存。它用来提供免费，公开并且强健的架构来缓存和优化 PHP 的中间代码。
主要是加速PHP..
WordPress是一个占用内存的大户,而且执行效率比较低..
我安装了APC后,VPS的整体内存降了30M左右吧..
下面是安装方法:

wget http://pecl.php.net/get/APC-3.1.2.tgz
tar zxvf APC-3.1.2.tgz
cd APC-3.1.2/
/usr/local/php/bin/phpize
./configure --enable-apc --enable-apc-mmap --with-php-config=/usr/local/php/bin/php-config
make
make install


配置php.ini 末尾加入
apc.enabled = 1
apc.cache_by_default = on
apc.shm_segments = 1
apc.shm_size = 32
apc.ttl = 600
apc.user_ttl = 600
apc.num_files_hint = 0
apc.write_lock = On
然后重启服务器就OK
 最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包Linux下Memcache的安装方法Linux查看系统配置常用命令解决Linux中出现Too many open filesphp5.2 的 php.ini 中文版Linux下的QQ软件：Eva 0120测试版
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
7 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/jDB-a96inIEVI8h0A2ossP8oThw/0/da"><img src="http://feedads.g.doubleclick.net/~a/jDB-a96inIEVI8h0A2ossP8oThw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/jDB-a96inIEVI8h0A2ossP8oThw/1/da"><img src="http://feedads.g.doubleclick.net/~a/jDB-a96inIEVI8h0A2ossP8oThw/1/di" border="0" ismap="true"></img></a></p><p>Alternative PHP Cache（APC）是 PHP 的一个免费公开的优化代码缓存。它用来提供免费，公开并且强健的架构来缓存和优化 PHP 的中间代码。<br />
主要是加速PHP..<br />
WordPress是一个占用内存的大户,而且执行效率比较低..<br />
我安装了APC后,VPS的整体内存降了30M左右吧..<br />
下面是安装方法:</p>
<blockquote><p>
wget http://pecl.php.net/get/APC-3.1.2.tgz<br />
tar zxvf APC-3.1.2.tgz<br />
cd APC-3.1.2/<br />
/usr/local/php/bin/phpize<br />
./configure --enable-apc --enable-apc-mmap --with-php-config=/usr/local/php/bin/php-config<br />
make<br />
make install
</p></blockquote>
<p><span id="more-1027"></span></p>
<p>配置php.ini 末尾加入<br />
apc.enabled = 1<br />
apc.cache_by_default = on<br />
apc.shm_segments = 1<br />
apc.shm_size = 32<br />
apc.ttl = 600<br />
apc.user_ttl = 600<br />
apc.num_files_hint = 0<br />
apc.write_lock = On</p>
<p>然后重启服务器就OK</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/" title="最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包">最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包</a></li><li><a href="http://imcat.in/memcache-installation-method-under-linux/" title="Linux下Memcache的安装方法">Linux下Memcache的安装方法</a></li><li><a href="http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/" title="Linux查看系统配置常用命令">Linux查看系统配置常用命令</a></li><li><a href="http://imcat.in/linux-too-open-files/" title="解决Linux中出现Too many open files">解决Linux中出现Too many open files</a></li><li><a href="http://imcat.in/chinese-version-of-the-phpini-php52/" title="php5.2 的 php.ini 中文版">php5.2 的 php.ini 中文版</a></li><li><a href="http://imcat.in/qq-under-linux-software-eva-0120-beta/" title="Linux下的QQ软件：Eva 0120测试版">Linux下的QQ软件：Eva 0120测试版</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/apc-for-php-installed-to-speed-up/">Permalink</a> |
<a href="http://imcat.in/apc-for-php-installed-to-speed-up/#comments">7 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/apc-for-php-installed-to-speed-up/&title=安装apc为php加速">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/YWrr6u-qxcc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/apc-for-php-installed-to-speed-up/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>情侣车站吻</title>
		<link>http://imcat.in/station-couple-kiss/</link>
		<comments>http://imcat.in/station-couple-kiss/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 11:52:43 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[个人收藏]]></category>
		<category><![CDATA[吻]]></category>
		<category><![CDATA[情侣]]></category>
		<category><![CDATA[车站]]></category>

		<guid isPermaLink="false">http://imcat.in/%e6%83%85%e4%be%a3%e8%bd%a6%e7%ab%99%e5%90%bb/</guid>
		<description><![CDATA[原来标题是:后生依然可畏～中学生情侣车站公然舌吻～
我都懒得去探究他们是小学生还是中学生还是高中生了...
作者还来个舌吻,太厉害了,舌头他都看得见.....在中国啊,标题原来是这么重要的!!!
我转过来不是因为他的标题,也不是因为图片....是设计台词!!!
设计台词才是亮点啊!

（设计台词）
红衣男：哎呀妈，咋回事啊？光天化日之下……现在这娃咋都被改革给开放呢？

祖国的花朵s：木啊木啊……

（设计台词）
红衣男：MB，车怎么还不来……
祖国的花朵s：啾叽啾叽……
背景：每天一斤奶，强壮中国人。

（设计台词）
红衣男：MLGB，有完没完了？……3P不？……
黑衣女：非礼勿视，非礼勿视……阳光真刺眼……
祖国的花朵s：哧溜哧溜……

（设计台词）
红衣男：…………
眼睛女：孩子们哪，你们是祖国的花朵呀～
夹克男：我没看见，我没看见……
祖国的花朵s：啾叽叽啾叽叽……

（设计台词）
红衣男：老子受不了……
眼睛女：收拾收拾东西，走了得了……
夹克男：（biu地一声不见了）
祖国的花朵s：哧溜哧溜溜……

（设计台词）
红衣男：算你们狠！老子走！
祖国的花朵s：咕唧咕唧……

（设计台词）
某阿姨：我当时就惊呆了！
某阿叔：这俩也太有才了！

（设计台词）
某阿姨和某阿叔：（以迅雷不及掩耳盗铃之势消失了）
花朵1：世界终于清净了～！
花朵2：是啊！真不容易！偶耐你！
花朵1：偶也耐你！
背景：非凡荣誉，只因有您！
奶人：oh ye~
the end~
 MOP情侣去死团&#8212;宗旨以及入团条件注意事项
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
14 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/VUsX35yPYAr09L3-aJoxQb9kg6U/0/da"><img src="http://feedads.g.doubleclick.net/~a/VUsX35yPYAr09L3-aJoxQb9kg6U/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/VUsX35yPYAr09L3-aJoxQb9kg6U/1/da"><img src="http://feedads.g.doubleclick.net/~a/VUsX35yPYAr09L3-aJoxQb9kg6U/1/di" border="0" ismap="true"></img></a></p><p>原来标题是:后生依然可畏～中学生情侣车站公然舌吻～</p>
<p>我都懒得去探究他们是小学生还是中学生还是高中生了...</p>
<p>作者还来个舌吻,太厉害了,舌头他都看得见.....在中国啊,标题原来是这么重要的!!!</p>
<p>我转过来不是因为他的标题,也不是因为图片....是设计台词!!!</p>
<p>设计台词才是亮点啊!<br />
<img src="http://imcat.in/wp-content/uploads/2009/07/01153463c.jpg" border="0" alt="01153463c 情侣车站吻" width="320" height="259" title="情侣车站吻" /><br />
（设计台词）<br />
红衣男：哎呀妈，咋回事啊？光天化日之下……现在这娃咋都被改革给开放呢？</p>
<p><span id="more-967"></span><br />
祖国的花朵s：木啊木啊……<br />
<img src="http://imcat.in/wp-content/uploads/2009/07/011536Brs.jpg" border="0" alt="011536Brs 情侣车站吻" width="320" height="259" title="情侣车站吻" /><br />
（设计台词）<br />
红衣男：MB，车怎么还不来……<br />
祖国的花朵s：啾叽啾叽……<br />
背景：每天一斤奶，强壮中国人。<br />
<img src="http://imcat.in/wp-content/uploads/2009/07/011536d59.jpg" border="0" alt="011536d59 情侣车站吻" width="320" height="259" title="情侣车站吻" /><br />
（设计台词）<br />
红衣男：MLGB，有完没完了？……3P不？……<br />
黑衣女：非礼勿视，非礼勿视……阳光真刺眼……<br />
祖国的花朵s：哧溜哧溜……<br />
<img src="http://imcat.in/wp-content/uploads/2009/07/011536zj1.jpg" border="0" alt="011536zj1 情侣车站吻" width="320" height="259" title="情侣车站吻" /><br />
（设计台词）<br />
红衣男：…………<br />
眼睛女：孩子们哪，你们是祖国的花朵呀～<br />
夹克男：我没看见，我没看见……<br />
祖国的花朵s：啾叽叽啾叽叽……<br />
<img src="http://imcat.in/wp-content/uploads/2009/07/011536uen.jpg" border="0" alt="011536uen 情侣车站吻" width="320" height="259" title="情侣车站吻" /><br />
（设计台词）<br />
红衣男：老子受不了……<br />
眼睛女：收拾收拾东西，走了得了……<br />
夹克男：（biu地一声不见了）<br />
祖国的花朵s：哧溜哧溜溜……<br />
<img src="http://imcat.in/wp-content/uploads/2009/07/011536OQ1.jpg" border="0" alt="011536OQ1 情侣车站吻" width="320" height="259" title="情侣车站吻" /><br />
（设计台词）<br />
红衣男：算你们狠！老子走！<br />
祖国的花朵s：咕唧咕唧……<br />
<img src="http://imcat.in/wp-content/uploads/2009/07/011536560.jpg" border="0" alt="011536560 情侣车站吻" width="320" height="259" title="情侣车站吻" /><br />
（设计台词）<br />
某阿姨：我当时就惊呆了！<br />
某阿叔：这俩也太有才了！<br />
<img src="http://imcat.in/wp-content/uploads/2009/07/011536kkE.jpg" border="0" alt="011536kkE 情侣车站吻" width="320" height="259" title="情侣车站吻" /><br />
（设计台词）<br />
某阿姨和某阿叔：（以迅雷不及掩耳盗铃之势消失了）<br />
花朵1：世界终于清净了～！<br />
花朵2：是啊！真不容易！偶耐你！<br />
花朵1：偶也耐你！<br />
背景：非凡荣誉，只因有您！<br />
奶人：oh ye~<br />
the end~</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/mop-lovers-die-mission-and-purpose-rutuan-conditions-attention/" title="MOP情侣去死团&#8212;宗旨以及入团条件注意事项">MOP情侣去死团&#8212;宗旨以及入团条件注意事项</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/station-couple-kiss/">Permalink</a> |
<a href="http://imcat.in/station-couple-kiss/#comments">14 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/station-couple-kiss/&title=情侣车站吻">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/PtrNm-rdX54" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/station-couple-kiss/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>慈溪高校“摸奶门”事件3gp视频下载</title>
		<link>http://imcat.in/video-cixi-3gp-video-download/</link>
		<comments>http://imcat.in/video-cixi-3gp-video-download/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 19:07:37 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[猫言猫语]]></category>

		<guid isPermaLink="false">http://imcat.in/%e8%a7%86%e9%a2%91%e6%85%88%e6%ba%aa%e9%ab%98%e6%a0%a1%e2%80%9c%e6%91%b8%e5%a5%b6%e9%97%a8%e2%80%9d%e4%ba%8b%e4%bb%b63gp%e8%a7%86%e9%a2%91%e4%b8%8b%e8%bd%bd/</guid>
		<description><![CDATA[摸奶门女主角,摸奶门.3gp视频下载,慈溪摸奶门,摸奶门,慈溪..]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/bRHj0srYbi2qMqZqtkvx966ozWQ/0/da"><img src="http://feedads.g.doubleclick.net/~a/bRHj0srYbi2qMqZqtkvx966ozWQ/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/bRHj0srYbi2qMqZqtkvx966ozWQ/1/da"><img src="http://feedads.g.doubleclick.net/~a/bRHj0srYbi2qMqZqtkvx966ozWQ/1/di" border="0" ismap="true"></img></a></p><p>摸奶门女主角,摸奶门.3gp视频下载,慈溪摸奶门,摸奶门,慈溪..</p>
<p>最近两天网上突然流传出一个学校教室里 几个男生围着一个女人抚摸其乳房的视频让人很惊讶！现在的学生都这么了？连最基本的礼义廉耻都不要了？</p>
<p><span style="color: #ff0000;">此日志用来测试下VPS的负载能力,顺便SEO下,看看这几个关键词的能力~~</span></p>
<p>当然,你们既然进来了...也不是白费的....</p>
<p><span id="more-965"></span></p>
<p><img src="http://imcat.in/wp-content/uploads/2009/06/191033gb1.jpg" alt="http://imcat.in/wp-content/uploads/2009/06/191033gb1.jpg" width="371" height="371" alt="摸奶门女主角3gp视频下载" title="慈溪高校“摸奶门”事件3gp视频下载" /></p>
<p><a href="http://67.220.91.16/bbs/index.php?fromuid=4185985" target="_blank">下载地址1</a></p>
<p><a href="http://67.220.91.16/bbs/index.php?fromuid=4185985" target="_blank">下载地址2</a> 提取码 70406ba1</p>
<p><a href="http://67.220.91.16/bbs/index.php?fromuid=4185985" target="_blank">下载地址3</a></p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/firefox-for-firefox-3-in-exchange-for-the-address-column-2/" title="为 Firefox 3 换回 Firefox 2 的地址栏">为 Firefox 3 换回 Firefox 2 的地址栏</a></li><li><a href="http://imcat.in/wp-plug-slug-in-english/" title="一款自动转换为英文缩略名的插件">一款自动转换为英文缩略名的插件</a></li><li><a href="http://imcat.in/top-free-software-evernote-22-release-notes-two-major-changes/" title="顶级免费笔记软件EverNote 2.2发布:2项重大变更">顶级免费笔记软件EverNote 2.2发布:2项重大变更</a></li><li><a href="http://imcat.in/vincy-rejects-edisons-marriage-proposal-gillan-chung-is-married/" title="Vincy rejects Edison&rsquo;s marriage proposal &#8211; Gillan Chung is married?">Vincy rejects Edison&rsquo;s marriage proposal &#8211; Gillan Chung is married?</a></li><li><a href="http://imcat.in/the-end-of-five-large-tracts-of-enlightenment/" title="年底五部大片的启示">年底五部大片的启示</a></li><li><a href="http://imcat.in/world-of-warcraft-daily-tasks-recycling-goods/" title="魔兽世界每日任务：回收货物">魔兽世界每日任务：回收货物</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/video-cixi-3gp-video-download/">Permalink</a> |
<a href="http://imcat.in/video-cixi-3gp-video-download/#comments">59 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/video-cixi-3gp-video-download/&title=慈溪高校“摸奶门”事件3gp视频下载">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/OJrNHNhioL0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/video-cixi-3gp-video-download/feed/</wfw:commentRss>
		<slash:comments>59</slash:comments>
		</item>
		<item>
		<title>自动备份mysql数据库并发送到Email</title>
		<link>http://imcat.in/backup-mysql-databases-automatically-sent-to-email/</link>
		<comments>http://imcat.in/backup-mysql-databases-automatically-sent-to-email/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 14:39:26 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[猫言猫语]]></category>
		<category><![CDATA[Email]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[备份]]></category>
		<category><![CDATA[数据库]]></category>
		<category><![CDATA[自动备份]]></category>

		<guid isPermaLink="false">http://imcat.in/%e8%87%aa%e5%8a%a8%e5%a4%87%e4%bb%bdmysql%e6%95%b0%e6%8d%ae%e5%ba%93%e5%b9%b6%e5%8f%91%e9%80%81%e5%88%b0email/</guid>
		<description><![CDATA[一个博客,一个网站最重要的就是数据库,所以经常备份数据是必须的.尽管 WordPress 有定时备份数据的插件,但只能备份当前的博客,不够灵活.适合个人小小博客,对于一些网站来说,就不适合了.现在很多人都拥有多个网站,showfom 同学就有几个网站.每个网站都装个插件就比较麻烦了.况且不是每个网站都是 WordPress 的 .
所以写了个自动备份mysql数据库的脚本,再加上gmail这个G级邮箱,备份多少数据都可以了...下面是代码:
mysqldump -uuser -ppassword --databases db1 db2 db3 &#62; /home/website/backups/databackup.sql
tar zcf /home/website/backups/databackup.sql.tar.gz /home/website/backups/
echo "主题:数据库备份" &#124; mutt -a /home/website/backups/databackup.sql.tar.gz -s "内容:数据库备份" www@gmail.com
rm -r /home/website/backups/*

将上面的代码保存为automysqlbackup.sh
然后利用crontab 实现动备份,在ssh下,
crontab -e
输入以下内容:
00 00 * * * /home/website/automysqlbackup.sh
这样就实现了每天00:00自动备份mysql数据库并发送到Email
简单的说明下吧.
第一句是一次性备份多个数据库,这个要你用root权限的用户才可以的..-u后面的是数据库用户名 -p后面的是数据库密码 无需空格 db1 db2 db3为你需要备份的数据库名.
如果你的数据库用户名没有root这个权限,可以改为这样
mysqldump -uuser -ppassword db1 &#62; /home/website/backups/db1.sql
mysqldump -uuser -ppassword db2 &#62; /home/website/backups/db1.sql
mysqldump -uuser -ppassword db3 &#62; /home/website/backups/db1.sql
第二句是将 [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/7P_rDi8rBACafXnRpidsL49BM00/0/da"><img src="http://feedads.g.doubleclick.net/~a/7P_rDi8rBACafXnRpidsL49BM00/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/7P_rDi8rBACafXnRpidsL49BM00/1/da"><img src="http://feedads.g.doubleclick.net/~a/7P_rDi8rBACafXnRpidsL49BM00/1/di" border="0" ismap="true"></img></a></p><p>一个博客,一个网站最重要的就是数据库,所以经常备份数据是必须的.尽管 <a href="http://wordpress.org/">WordPress</a> 有定时备份数据的插件,但只能备份当前的博客,不够灵活.适合个人小小博客,对于一些网站来说,就不适合了.现在很多人都拥有多个网站,<a href="http://showfom.com/google-pr-updates-09-05-28/" target="_blank">showfom</a> 同学就有几个网站.每个网站都装个插件就比较麻烦了.况且不是每个网站都是 <a href="http://wordpress.org/">WordPress</a> 的 .</p>
<p>所以写了个自动备份mysql数据库的脚本,再加上gmail这个G级邮箱,备份多少数据都可以了...下面是代码:</p>
<blockquote><p>mysqldump -uuser -ppassword --databases db1 db2 db3 &gt; /home/website/backups/databackup.sql<br />
tar zcf /home/website/backups/databackup.sql.tar.gz /home/website/backups/<br />
echo "主题:数据库备份" | mutt -a /home/website/backups/databackup.sql.tar.gz -s "内容:数据库备份" www@gmail.com<br />
rm -r /home/website/backups/*</p></blockquote>
<p><span id="more-964"></span><br />
将上面的代码保存为automysqlbackup.sh<br />
然后利用crontab 实现动备份,在ssh下,</p>
<blockquote><p>crontab -e</p></blockquote>
<p>输入以下内容:</p>
<blockquote><p>00 00 * * * /home/website/automysqlbackup.sh</p></blockquote>
<p>这样就实现了每天00:00自动备份mysql数据库并发送到Email</p>
<p>简单的说明下吧.<br />
第一句是一次性备份多个数据库,这个要你用root权限的用户才可以的..-u后面的是数据库用户名 -p后面的是数据库密码 无需空格 db1 db2 db3为你需要备份的数据库名.<br />
如果你的数据库用户名没有root这个权限,可以改为这样</p>
<blockquote><p>mysqldump -uuser -ppassword db1 &gt; /home/website/backups/db1.sql<br />
mysqldump -uuser -ppassword db2 &gt; /home/website/backups/db1.sql<br />
mysqldump -uuser -ppassword db3 &gt; /home/website/backups/db1.sql</p></blockquote>
<p>第二句是将 backups 文件夹里面的数据文件压缩为文件名:databackup.sql.tar.gz</p>
<p>第三句是将压缩了的数据库文件发送到指定的邮箱.....</p>
<p>其中的主题:数据库备份 ,就是邮件的主题, 内容:数据库备份,就是邮件的内用,</p>
<p>/home/website/backups/databackup.sql.tar.gz 为附件</p>
<p>www@gmail.com为要发送的Email</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/" title="最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包">最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/backup-mysql-databases-automatically-sent-to-email/">Permalink</a> |
<a href="http://imcat.in/backup-mysql-databases-automatically-sent-to-email/#comments">12 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/backup-mysql-databases-automatically-sent-to-email/&title=自动备份mysql数据库并发送到Email">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/pG6N5LY9vn0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/backup-mysql-databases-automatically-sent-to-email/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Linux查看系统配置常用命令</title>
		<link>http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/</link>
		<comments>http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 19:17:11 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[命令]]></category>

		<guid isPermaLink="false">http://imcat.in/linux%e6%9f%a5%e7%9c%8b%e7%b3%bb%e7%bb%9f%e9%85%8d%e7%bd%ae%e5%b8%b8%e7%94%a8%e5%91%bd%e4%bb%a4/</guid>
		<description><![CDATA[系统
# uname -a               # 查看内核/操作系统/CPU信息
# head -n 1 /etc/issue   # 查看操作系统版本
# cat /proc/cpuinfo      # 查看CPU信息
# hostname               # 查看计算机名
# lspci -tv              # 列出所有PCI设备
# lsusb -tv              # 列出所有USB设备
# lsmod                  # 列出加载的内核模块
# env                    # 查看环境变量
资源
# free -m                # 查看内存使用量和交换区使用量
# df -h                  # 查看各分区使用情况
# du -sh &#60;目录名&#62;        # 查看指定目录的大小
# grep MemTotal /proc/meminfo   # 查看内存总量
# grep MemFree /proc/meminfo    # 查看空闲内存量
# [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/pc4wpWP11ohpAZ8jcydK0bPqPug/0/da"><img src="http://feedads.g.doubleclick.net/~a/pc4wpWP11ohpAZ8jcydK0bPqPug/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/pc4wpWP11ohpAZ8jcydK0bPqPug/1/da"><img src="http://feedads.g.doubleclick.net/~a/pc4wpWP11ohpAZ8jcydK0bPqPug/1/di" border="0" ismap="true"></img></a></p><p>系统</p>
<p># uname -a               # 查看内核/操作系统/CPU信息<br />
# head -n 1 /etc/issue   # 查看操作系统版本<br />
# cat /proc/cpuinfo      # 查看CPU信息<br />
# hostname               # 查看计算机名<br />
# lspci -tv              # 列出所有PCI设备<br />
# lsusb -tv              # 列出所有USB设备<br />
# lsmod                  # 列出加载的内核模块<br />
# env                    # 查看环境变量</p>
<p>资源</p>
<p># free -m                # 查看内存使用量和交换区使用量<br />
# df -h                  # 查看各分区使用情况<br />
# du -sh &lt;目录名&gt;        # 查看指定目录的大小<br />
# grep MemTotal /proc/meminfo   # 查看内存总量<br />
# grep MemFree /proc/meminfo    # 查看空闲内存量<br />
# uptime                 # 查看系统运行时间、用户数、负载<br />
# cat /proc/loadavg      # 查看系统负载</p>
<p>磁盘和分区</p>
<p><span id="more-963"></span></p>
<p># mount | column -t      # 查看挂接的分区状态<br />
# fdisk -l               # 查看所有分区<br />
# swapon -s              # 查看所有交换分区<br />
# hdparm -i /dev/hda     # 查看磁盘参数(仅适用于IDE设备)<br />
# dmesg | grep IDE       # 查看启动时IDE设备检测状况</p>
<p>网络</p>
<p># ifconfig               # 查看所有网络接口的属性<br />
# iptables -L            # 查看防火墙设置<br />
# route -n               # 查看路由表<br />
# netstat -lntp          # 查看所有监听端口<br />
# netstat -antp          # 查看所有已经建立的连接<br />
# netstat -s             # 查看网络统计信息</p>
<p>进程</p>
<p># ps -ef                 # 查看所有进程<br />
# top                    # 实时显示进程状态</p>
<p>用户</p>
<p># w                      # 查看活动用户<br />
# id &lt;用户名&gt;            # 查看指定用户信息<br />
# last                   # 查看用户登录日志<br />
# cut -d: -f1 /etc/passwd   # 查看系统所有用户<br />
# cut -d: -f1 /etc/group    # 查看系统所有组<br />
# crontab -l             # 查看当前用户的计划任务</p>
<p>服务</p>
<p># chkconfig –list       # 列出所有系统服务<br />
# chkconfig –list | grep on    # 列出所有启动的系统服务</p>
<p>程序</p>
<p># rpm -qa                # 查看所有安装的软件包</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/memcache-installation-method-under-linux/" title="Linux下Memcache的安装方法">Linux下Memcache的安装方法</a></li><li><a href="http://imcat.in/apc-for-php-installed-to-speed-up/" title="安装apc为php加速">安装apc为php加速</a></li><li><a href="http://imcat.in/linux-too-open-files/" title="解决Linux中出现Too many open files">解决Linux中出现Too many open files</a></li><li><a href="http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/" title="最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包">最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包</a></li><li><a href="http://imcat.in/some-commonly-used-ssh-commands/" title="一些常用的SSH命令">一些常用的SSH命令</a></li><li><a href="http://imcat.in/qq-under-linux-software-eva-0120-beta/" title="Linux下的QQ软件：Eva 0120测试版">Linux下的QQ软件：Eva 0120测试版</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/">Permalink</a> |
<a href="http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/#comments">One comment</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/&title=Linux查看系统配置常用命令">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/xPn1HsHB_C8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>国内外DNS服务器地址列表</title>
		<link>http://imcat.in/dns-server-address-list-at-home-and-abroad/</link>
		<comments>http://imcat.in/dns-server-address-list-at-home-and-abroad/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 19:14:14 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[个人收藏]]></category>
		<category><![CDATA[DNS]]></category>

		<guid isPermaLink="false">http://imcat.in/%e5%9b%bd%e5%86%85%e5%a4%96dns%e6%9c%8d%e5%8a%a1%e5%99%a8%e5%9c%b0%e5%9d%80%e5%88%97%e8%a1%a8/</guid>
		<description><![CDATA[收藏备用!来源月光!
DNS（Domain Name System）是域名解析服务器的意思，它在互联网的作用是把域名转换成为网络可以识别的IP地址。目前国内电信运营商通过使用DNS劫持的方法，干扰用 户正常上网，使得用户无法访问Google、Gmail、Google AdSense、Google Maps等常用服务，昨天我介绍了使用OpenDNS的方法解决这个问题，由于OpenDNS的服务器在美国，如果使用的人多了有可能会速度变慢，因此今天我介绍一些其他国外的DNS服务器地址，供大家选择。
通常来说，香港、韩国、日本等国的DNS服务器速度会比较快，大家可以多用几个试试，尽量选择一个自己访问最快的DNS服务器，中国的电信运营商都是流氓，DNS服务器，早换早轻松。
港澳台DNS服务器地址
香港：
205.252.144.228
208.151.69.65
202.181.202.140
202.181.224.2
澳门：
202.175.3.8
202.175.3.3
台湾：
168.95.192.1
168.95.1.1
国外DNS服务器地址

美国：
208.67.222.222
208.67.220.220
165.87.13.129
165.87.201.244
205.171.3.65
205.171.2.65
198.41.0.4
198.41.0.4
198.32.64.12
192.33.4.12
192.203.230.10
192.5.5.241
192.112.36.4
192.36.148.17
192.58.128.30
192.9.9.3
193.0.14.129
128.9.0.107
128.8.10.90
66.33.206.206.
208.96.10.221
66.33.216.216
205.171.3.65
205.171.2.65
165.87.13.129
165.87.201.244
加拿大：
209.166.160.36
209.166.160.132
英国：
193.0.14.129
日本
202.12.27.33
202.216.228.18
韩国：
164.124.101.31
203.248.240.31
168.126.63.60
168.126.63.61
新西兰：
202.27.184.3
泰国：
209.166.160.132
202.44.8.34
202.44.8.2
印度：
202.138.103.100
202.138.96.2
国内各省市DNS服务器地址
北京：
202.96.199.133
202.96.0.133
202.106.0.20
202.106.148.1
202.97.16.195
202.138.96.2
深圳：
202.96.134.133
202.96.154.15
广州：
61.144.56.100
61.144.56.101
广东：
202.96.128.86
202.96.128.143
上海：
202.96.199.132
202.96.199.133
202.96.209.5
202.96.209.133
天津：
202.99.96.68
202.99.104.68
广西：
202.96.128.68
202.103.224.68
202.103.225.68
河南：
202.102.227.68
202.102.245.12
202.102.224.68
河北：
202.99.160.68
福建：
202.101.98.54
202.101.98.55
厦门：
202.101.103.55
202.101.103.54
湖南：
202.103.0.68
202.103.96.68
202.103.96.112
湖北：
202.103.0.68
202.103.0.117
202.103.24.68
江苏：
202.102.15.162
202.102.29.3
202.102.13.141
202.102.24.35
浙江：
202.96.102.3
202.96.96.68
202.96.104.18
陕西：
202.100.13.11
202.100.4.16
202.100.4.15
202.100.0.68
山东：
202.102.154.3
202.102.152.3
202.102.128.68
202.102.134.68
山西：
202.99.192.68
202.99.198.6
四川：
202.98.96.68
61.139.2.69
重庆：
61.128.128.68
成都：
202.98.96.68
202.98.96.69
辽宁：
202.98.0.68
202.96.75.68
202.96.75.64
202.96.69.38
202.96.86.18
202.96.86.24
安徽：
202.102.192.68
202.102.199.68
10.89.64.5
吉林：
202.98.5.68
202.98.14.18
202.98.14.19
江西：
202.101.224.68
202.109.129.2
202.101.240.36
新疆：
61.128.97.74
61.128.97.73
贵州：
202.98.192.68
10.157.2.15
云南：
202.98.96.68
202.98.160.68
黑龙江：
202.97.229.133
202.97.224.68
219.150.32.132
海南：
202.100.192.68
202.100.199.8
宁夏：
202.100.0.68
202.100.96.68
甘肃：
202.100.72.13
内蒙古：
202.99.224.68
青海：
202.100.128.68
全球路由DNS服务器
全球只有13台路由DNS服务器（Route Server),在13台路由服务器中，名字分别为“A”至“M”，其中10台设置在美国，另外各有一台设置于英国、瑞典和日本。下表是这些机器的管理单位、设置地点及最新的IP地址。
名称　　管理单位及设置地点　　　　IP地址
A INTERNIC.NET（美国，弗吉尼亚州） 198.41.0.4
B 美国信息科学研究所（美国，加利弗尼亚州） 128.9.0.107
C PSINet公司（美国，弗吉尼亚州） 192.33.4.12
D 马里兰大学（美国马里兰州） 128.8.10.90
E 美国航空航天管理局[NASA]（美国加利弗尼亚州） 192.203.230.10
F 因特网软件联盟（美国加利弗尼亚州） 192.5.5.241
G 美国国防部网络信息中心（美国弗吉尼亚州） 192.112.36.4
H 美国陆军研究所（美国马里兰州） 128.63.2.53
I Autonomica公司（瑞典，斯德哥尔摩） 192.36.148.17
J VeriSign公司（美国，弗吉尼亚州） 192.58.128.30
K RIPE NCC（英国，伦敦） 193.0.14.129
L IANA （美国，弗吉尼亚州） 198.32.64.12
 申请Godaddy免费空间及DNS设置另一个类似opendns的免费DNS：ScrubIT解决Hotspot Shield不能浏览网站问题（DNS问题）DNS解析太慢？何不试试OpenDNS&#8211;更安全、更快、更智能的DNS一些国外免费DNS
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
3 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/EG0FKiRnimwOKdmcOqfYLMtd-7s/0/da"><img src="http://feedads.g.doubleclick.net/~a/EG0FKiRnimwOKdmcOqfYLMtd-7s/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/EG0FKiRnimwOKdmcOqfYLMtd-7s/1/da"><img src="http://feedads.g.doubleclick.net/~a/EG0FKiRnimwOKdmcOqfYLMtd-7s/1/di" border="0" ismap="true"></img></a></p><p><span style="color: #ff0000;">收藏备用!来源<a href="http://www.williamlong.info/archives/1842.html">月光</a>!</span></p>
<p>DNS（Domain Name System）是域名解析服务器的意思，它在互联网的作用是把域名转换成为网络可以识别的IP地址。目前国内电信运营商通过使用DNS劫持的方法，干扰用 户正常上网，使得用户无法访问Google、Gmail、Google AdSense、Google Maps等常用服务，昨天我<a href="http://www.williamlong.info/archives/1841.html" target="_blank">介绍</a>了使用<a href="http://www.williamlong.info/archives/1101.html" target="_blank">OpenDNS</a>的方法解决这个问题，由于OpenDNS的服务器在美国，如果使用的人多了有可能会速度变慢，因此今天我介绍一些其他国外的DNS服务器地址，供大家选择。</p>
<p>通常来说，香港、韩国、日本等国的DNS服务器速度会比较快，大家可以多用几个试试，尽量选择一个自己访问最快的DNS服务器，中国的电信运营商都是流氓，DNS服务器，早换早轻松。</p>
<p><strong>港澳台DNS服务器地址</strong></p>
<p>香港：<br />
205.252.144.228<br />
208.151.69.65<br />
202.181.202.140<br />
202.181.224.2</p>
<p>澳门：<br />
202.175.3.8<br />
202.175.3.3</p>
<p>台湾：<br />
168.95.192.1<br />
168.95.1.1</p>
<p><strong>国外DNS服务器地址</strong></p>
<p><span id="more-962"></span></p>
<p>美国：<br />
208.67.222.222<br />
208.67.220.220<br />
165.87.13.129<br />
165.87.201.244<br />
205.171.3.65<br />
205.171.2.65<br />
198.41.0.4<br />
198.41.0.4<br />
198.32.64.12<br />
192.33.4.12<br />
192.203.230.10<br />
192.5.5.241<br />
192.112.36.4<br />
192.36.148.17<br />
192.58.128.30<br />
192.9.9.3<br />
193.0.14.129<br />
128.9.0.107<br />
128.8.10.90<br />
66.33.206.206.<br />
208.96.10.221<br />
66.33.216.216<br />
205.171.3.65<br />
205.171.2.65<br />
165.87.13.129<br />
165.87.201.244</p>
<p>加拿大：<br />
209.166.160.36<br />
209.166.160.132</p>
<p>英国：<br />
193.0.14.129</p>
<p>日本<br />
202.12.27.33<br />
202.216.228.18</p>
<p>韩国：<br />
164.124.101.31<br />
203.248.240.31<br />
168.126.63.60<br />
168.126.63.61</p>
<p>新西兰：<br />
202.27.184.3</p>
<p>泰国：<br />
209.166.160.132<br />
202.44.8.34<br />
202.44.8.2</p>
<p>印度：<br />
202.138.103.100<br />
202.138.96.2</p>
<p><strong>国内各省市DNS服务器地址</strong></p>
<p>北京：<br />
202.96.199.133<br />
202.96.0.133<br />
202.106.0.20<br />
202.106.148.1<br />
202.97.16.195<br />
202.138.96.2</p>
<p>深圳：<br />
202.96.134.133<br />
202.96.154.15</p>
<p>广州：<br />
61.144.56.100<br />
61.144.56.101</p>
<p>广东：<br />
202.96.128.86<br />
202.96.128.143</p>
<p>上海：<br />
202.96.199.132<br />
202.96.199.133<br />
202.96.209.5<br />
202.96.209.133</p>
<p>天津：<br />
202.99.96.68<br />
202.99.104.68</p>
<p>广西：<br />
202.96.128.68<br />
202.103.224.68<br />
202.103.225.68</p>
<p>河南：<br />
202.102.227.68<br />
202.102.245.12<br />
202.102.224.68</p>
<p>河北：<br />
202.99.160.68</p>
<p>福建：<br />
202.101.98.54<br />
202.101.98.55</p>
<p>厦门：<br />
202.101.103.55<br />
202.101.103.54</p>
<p>湖南：<br />
202.103.0.68<br />
202.103.96.68<br />
202.103.96.112</p>
<p>湖北：<br />
202.103.0.68<br />
202.103.0.117<br />
202.103.24.68</p>
<p>江苏：<br />
202.102.15.162<br />
202.102.29.3<br />
202.102.13.141<br />
202.102.24.35</p>
<p>浙江：<br />
202.96.102.3<br />
202.96.96.68<br />
202.96.104.18</p>
<p>陕西：<br />
202.100.13.11<br />
202.100.4.16<br />
202.100.4.15<br />
202.100.0.68</p>
<p>山东：<br />
202.102.154.3<br />
202.102.152.3<br />
202.102.128.68<br />
202.102.134.68</p>
<p>山西：<br />
202.99.192.68<br />
202.99.198.6</p>
<p>四川：<br />
202.98.96.68<br />
61.139.2.69</p>
<p>重庆：<br />
61.128.128.68</p>
<p>成都：<br />
202.98.96.68<br />
202.98.96.69</p>
<p>辽宁：<br />
202.98.0.68<br />
202.96.75.68<br />
202.96.75.64<br />
202.96.69.38<br />
202.96.86.18<br />
202.96.86.24</p>
<p>安徽：<br />
202.102.192.68<br />
202.102.199.68<br />
10.89.64.5</p>
<p>吉林：<br />
202.98.5.68<br />
202.98.14.18<br />
202.98.14.19</p>
<p>江西：<br />
202.101.224.68<br />
202.109.129.2<br />
202.101.240.36</p>
<p>新疆：<br />
61.128.97.74<br />
61.128.97.73</p>
<p>贵州：<br />
202.98.192.68<br />
10.157.2.15</p>
<p>云南：<br />
202.98.96.68<br />
202.98.160.68</p>
<p>黑龙江：<br />
202.97.229.133<br />
202.97.224.68<br />
219.150.32.132</p>
<p>海南：<br />
202.100.192.68<br />
202.100.199.8</p>
<p>宁夏：<br />
202.100.0.68<br />
202.100.96.68</p>
<p>甘肃：<br />
202.100.72.13</p>
<p>内蒙古：<br />
202.99.224.68</p>
<p>青海：<br />
202.100.128.68</p>
<p><strong>全球路由DNS服务器</strong></p>
<p>全球只有13台路由DNS服务器（Route Server),在13台路由服务器中，名字分别为“A”至“M”，其中10台设置在美国，另外各有一台设置于英国、瑞典和日本。下表是这些机器的管理单位、设置地点及最新的IP地址。</p>
<p>名称　　管理单位及设置地点　　　　IP地址<br />
A INTERNIC.NET（美国，弗吉尼亚州） 198.41.0.4<br />
B 美国信息科学研究所（美国，加利弗尼亚州） 128.9.0.107<br />
C PSINet公司（美国，弗吉尼亚州） 192.33.4.12<br />
D 马里兰大学（美国马里兰州） 128.8.10.90<br />
E 美国航空航天管理局[NASA]（美国加利弗尼亚州） 192.203.230.10<br />
F 因特网软件联盟（美国加利弗尼亚州） 192.5.5.241<br />
G 美国国防部网络信息中心（美国弗吉尼亚州） 192.112.36.4<br />
H 美国陆军研究所（美国马里兰州） 128.63.2.53<br />
I Autonomica公司（瑞典，斯德哥尔摩） 192.36.148.17<br />
J VeriSign公司（美国，弗吉尼亚州） 192.58.128.30<br />
K RIPE NCC（英国，伦敦） 193.0.14.129<br />
L IANA （美国，弗吉尼亚州） 198.32.64.12</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/godaddy-for-free-space-and-dns-settings/" title="申请Godaddy免费空间及DNS设置">申请Godaddy免费空间及DNS设置</a></li><li><a href="http://imcat.in/another-similar-opendns-free-dns-scrubit/" title="另一个类似opendns的免费DNS：ScrubIT">另一个类似opendns的免费DNS：ScrubIT</a></li><li><a href="http://imcat.in/jie-jue-hotspot-shield-bu-neng-liu-lan-wang-zhan-wen-ti-dns-wen-ti/" title="解决Hotspot Shield不能浏览网站问题（DNS问题）">解决Hotspot Shield不能浏览网站问题（DNS问题）</a></li><li><a href="http://imcat.in/opendns/" title="DNS解析太慢？何不试试OpenDNS&#8211;更安全、更快、更智能的DNS">DNS解析太慢？何不试试OpenDNS&#8211;更安全、更快、更智能的DNS</a></li><li><a href="http://imcat.in/some-foreign-free-dns/" title="一些国外免费DNS">一些国外免费DNS</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/dns-server-address-list-at-home-and-abroad/">Permalink</a> |
<a href="http://imcat.in/dns-server-address-list-at-home-and-abroad/#comments">3 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/dns-server-address-list-at-home-and-abroad/&title=国内外DNS服务器地址列表">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/J4qCkO8H82Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/dns-server-address-list-at-home-and-abroad/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>解决Linux中出现Too many open files</title>
		<link>http://imcat.in/linux-too-open-files/</link>
		<comments>http://imcat.in/linux-too-open-files/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 21:29:05 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Too many open files]]></category>
		<category><![CDATA[vps]]></category>

		<guid isPermaLink="false">http://imcat.in/%e8%a7%a3%e5%86%b3linux%e4%b8%ad%e5%87%ba%e7%8e%b0too-open-files/</guid>
		<description><![CDATA[前几天查看VPS的php-cgi和nginx的日志都出现Too many open files这样的错误,原因是file-max默认值（1024）太小了,要解决这个问题，只要更改file-max的大小就可以.
用ulimit修改了一下：
ulimit -n 10240
这样就可以将打开文件数从1024提高到了10240,但重启了VPS,就会恢复默认大小了..要永久的改变file-max值,可以root身份执行下列命令

# echo "10240"  &#62; /proc/sys/fs/file-max  # 适用于2.2和2.4版内核
# echo "10240" &#62; /proc/sys/fs/inode-max # 仅适用于2.2版内核
或将下列内容放入 /etc/sysctl.conf，做永久性的更改：

fs.file-max = 10240   # 适用于 2.2 和 2.4 版内核
fs.inode-max = 10240 # 仅适用于 2.2 版内核
最正确的做法是在/etc/security/limits.conf里设置：
* hard nofile 65535
* soft nofile 65535
 Linux下Memcache的安装方法安装apc为php加速Linux查看系统配置常用命令最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包利用vps主机的ssh帐号翻&#8211;墙将博客搬到VPS
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
7 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/72qbyIBAaEsUrjkRtukyKxRYfyY/0/da"><img src="http://feedads.g.doubleclick.net/~a/72qbyIBAaEsUrjkRtukyKxRYfyY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/72qbyIBAaEsUrjkRtukyKxRYfyY/1/da"><img src="http://feedads.g.doubleclick.net/~a/72qbyIBAaEsUrjkRtukyKxRYfyY/1/di" border="0" ismap="true"></img></a></p><p>前几天查看VPS的php-cgi和nginx的日志都出现Too many open files这样的错误,原因是file-max默认值（1024）太小了,要解决这个问题，只要更改file-max的大小就可以.</p>
<p>用ulimit修改了一下：</p>
<p><code>ulimit -n 10240</code></p>
<p>这样就可以将打开文件数从1024提高到了10240,但重启了VPS,就会恢复默认大小了..要永久的改变file-max值,可以root身份执行下列命令</p>
<p><code><br />
# echo "10240"  &gt; /proc/sys/fs/file-max  # 适用于2.2和2.4版内核<br />
# echo "10240" &gt; /proc/sys/fs/inode-max # 仅适用于2.2版内核</code></p>
<p>或将下列内容放入 /etc/sysctl.conf，做永久性的更改：<br />
<code><br />
fs.file-max = 10240   # 适用于 2.2 和 2.4 版内核<br />
fs.inode-max = 10240 # 仅适用于 2.2 版内核</code></p>
<p><span style="color: #ff0000;">最正确的做法是在/etc/security/limits.conf里设置：</span></p>
<p><span style="font-family: 宋体;">* hard nofile 65535<br />
* soft nofile 65535</span></p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/memcache-installation-method-under-linux/" title="Linux下Memcache的安装方法">Linux下Memcache的安装方法</a></li><li><a href="http://imcat.in/apc-for-php-installed-to-speed-up/" title="安装apc为php加速">安装apc为php加速</a></li><li><a href="http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/" title="Linux查看系统配置常用命令">Linux查看系统配置常用命令</a></li><li><a href="http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/" title="最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包">最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包</a></li><li><a href="http://imcat.in/vps-host-using-ssh-account-of-climbing-over-the-wall/" title="利用vps主机的ssh帐号翻&#8211;墙">利用vps主机的ssh帐号翻&#8211;墙</a></li><li><a href="http://imcat.in/blog-moved-vps/" title="将博客搬到VPS">将博客搬到VPS</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/linux-too-open-files/">Permalink</a> |
<a href="http://imcat.in/linux-too-open-files/#comments">7 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/linux-too-open-files/&title=解决Linux中出现Too many open files">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/blGzW_ds_2Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/linux-too-open-files/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>性感的平野绫</title>
		<link>http://imcat.in/sexy-hirano-aya/</link>
		<comments>http://imcat.in/sexy-hirano-aya/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 16:13:13 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[御宅族]]></category>
		<category><![CDATA[写真]]></category>
		<category><![CDATA[平野绫]]></category>
		<category><![CDATA[性感]]></category>

		<guid isPermaLink="false">http://imcat.in/%e6%80%a7%e6%84%9f%e7%9a%84%e5%b9%b3%e9%87%8e%e7%bb%ab/</guid>
		<description><![CDATA[这么大尺度的平野绫还是第一次见..


 性感的火焰美女ESET NOD32女郎写真YUKO小仓优子08年生活照＋写真美少女-入江纱绫张筱雨新专集sand grass下载
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
24 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/QVjbbeeIYtNb6-JjDfEZzqB2iF8/0/da"><img src="http://feedads.g.doubleclick.net/~a/QVjbbeeIYtNb6-JjDfEZzqB2iF8/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QVjbbeeIYtNb6-JjDfEZzqB2iF8/1/da"><img src="http://feedads.g.doubleclick.net/~a/QVjbbeeIYtNb6-JjDfEZzqB2iF8/1/di" border="0" ismap="true"></img></a></p><p>这么大尺度的平野绫还是第一次见..</p>
<p><a href="http://imcat.in/wp-content/uploads/2009/06/vIJOSHIHUobx.jpg"><img class="alignnone size-medium wp-image-949" title="性感的平野绫" src="http://imcat.in/wp-content/uploads/2009/06/vIJOSHIHUobx-300x225.jpg" alt="性感的平野绫" width="300" height="225" /></a></p>
<p><span id="more-960"></span></p>

<a href='http://imcat.in/sexy-hirano-aya/3183150068_1e6fd25192/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/3183150068_1e6fd25192-150x150.jpg" class="attachment-thumbnail" alt="3183150068 1e6fd25192 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/2827071566_dac5f6d8b7/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/2827071566_dac5f6d8b7-150x150.jpg" class="attachment-thumbnail" alt="2827071566 dac5f6d8b7 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/3297900902_07bfe7b176/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/3297900902_07bfe7b176-150x150.jpg" class="attachment-thumbnail" alt="3297900902 07bfe7b176 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/imge74f532azik8zj/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/imge74f532azik8zj-150x150.jpg" class="attachment-thumbnail" alt="imge74f532azik8zj 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/2545467086_c827fae642/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/2545467086_c827fae642-150x150.jpg" class="attachment-thumbnail" alt="2545467086 c827fae642 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/3182263389_bd39f28600/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/3182263389_bd39f28600-150x150.jpg" class="attachment-thumbnail" alt="3182263389 bd39f28600 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/attachment/1216661393922/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/1216661393922-150x150.jpg" class="attachment-thumbnail" alt="1216661393922 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/2712869612_8c90feacb6/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/2712869612_8c90feacb6-150x150.jpg" class="attachment-thumbnail" alt="2712869612 8c90feacb6 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/vijoshihuobx/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/vIJOSHIHUobx-150x150.jpg" class="attachment-thumbnail" alt="vIJOSHIHUobx 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/3183150404_a2ebe73db4/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/3183150404_a2ebe73db4-150x150.jpg" class="attachment-thumbnail" alt="3183150404 a2ebe73db4 150x150 性感的平野绫    " title="性感的平野绫" /></a>
<a href='http://imcat.in/sexy-hirano-aya/3154194445_8f2e72c274/' title='性感的平野绫'><img width="150" height="150" src="http://maoxmao.com/wp-content/uploads/2009/06/3154194445_8f2e72c274-150x150.jpg" class="attachment-thumbnail" alt="3154194445 8f2e72c274 150x150 性感的平野绫    " title="性感的平野绫" /></a>

<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/flame-sexy-beauty/" title="性感的火焰美女">性感的火焰美女</a></li><li><a href="http://imcat.in/eset-nod32-girl-photo/" title="ESET NOD32女郎写真">ESET NOD32女郎写真</a></li><li><a href="http://imcat.in/yuko-yuko-ogura-08-pictures-of-life-as/" title="YUKO小仓优子08年生活照＋写真">YUKO小仓优子08年生活照＋写真</a></li><li><a href="http://imcat.in/us-girls-into-the-yarn-ling-jiang/" title="美少女-入江纱绫">美少女-入江纱绫</a></li><li><a href="http://imcat.in/zhang-xiao-yu-new-album-sand-grass-download/" title="张筱雨新专集sand grass下载">张筱雨新专集sand grass下载</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/sexy-hirano-aya/">Permalink</a> |
<a href="http://imcat.in/sexy-hirano-aya/#comments">24 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/sexy-hirano-aya/&title=性感的平野绫">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/QKAuxly28qA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/sexy-hirano-aya/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>WordPress的Nginx 301重定向</title>
		<link>http://imcat.in/nginx-301-redirect-in-wordpress/</link>
		<comments>http://imcat.in/nginx-301-redirect-in-wordpress/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 09:08:52 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[网络相关]]></category>
		<category><![CDATA[301]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://imcat.in/wordpress%e7%9a%84nginx-301%e9%87%8d%e5%ae%9a%e5%90%91/</guid>
		<description><![CDATA[昨天在name.com买了 imcat.in 这个域名.于是用301重定向,将原来域名重定向到imcat.in来传递RP,和不丢失流量.
但由于我的VPS,用的是Nginx做web服务器,Nginx是不支持.htaccess的.不过在Nginx中进行301重定向(301 redirect)也是非常容易的.
例如我要永久将 imcat.in 重定向到 imcat.in 有两钟方法:
1.不是访问imcat.in的域名都转到imcat.in
server {
server_name imcat.in imcat.in maoxmao.com;
if ($host != 'imcat.in' ) {
rewrite  ^/(.*)$  http://imcat.in/$1  permanent;
}
...
}

2.直接给imcat.in开一条server规则
server {
    server_name  imcat.in maoxmao.com;
    rewrite ^(.*) http://imcat.in$1 permanent;
}
我用的第二条
 最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包推荐WordPress插件 &#8211; WP Widget Cache对猫言猫语进行少少的修改小样！不要以为穿上马甲我就认不出你！WordPress 2.6发布最有效的压缩CSS样式表和js脚本
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
3 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/vL_KEjv4b85V6r41FTcuticU3es/0/da"><img src="http://feedads.g.doubleclick.net/~a/vL_KEjv4b85V6r41FTcuticU3es/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/vL_KEjv4b85V6r41FTcuticU3es/1/da"><img src="http://feedads.g.doubleclick.net/~a/vL_KEjv4b85V6r41FTcuticU3es/1/di" border="0" ismap="true"></img></a></p><p>昨天在name.com买了 imcat.in 这个域名.于是用301重定向,将原来域名重定向到imcat.in来传递RP,和不丢失流量.</p>
<p>但由于我的VPS,用的是Nginx做web服务器,Nginx是不支持.htaccess的.不过在Nginx中进行301重定向(301 redirect)也是非常容易的.</p>
<p>例如我要永久将 imcat.in 重定向到 imcat.in 有两钟方法:</p>
<p>1.不是访问imcat.in的域名都转到imcat.in</p>
<p><code>server {<br />
server_name imcat.in imcat.in maoxmao.com;</code></p>
<p>if ($host != 'imcat.in' ) {<br />
rewrite  ^/(.*)$  http://imcat.in/$1  permanent;<br />
}<br />
...<br />
}<br />
<span id="more-946"></span></p>
<p>2.直接给imcat.in开一条server规则<br />
<code>server {<br />
    server_name  imcat.in maoxmao.com;<br />
    rewrite ^(.*) http://imcat.in$1 permanent;<br />
}</code><br />
我用的第二条</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/" title="最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包">最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包</a></li><li><a href="http://imcat.in/recommended-wordpress-plugin-wp-widget-cache/" title="推荐WordPress插件 &#8211; WP Widget Cache">推荐WordPress插件 &#8211; WP Widget Cache</a></li><li><a href="http://imcat.in/introduction-of-the-cat-to-cat-language-bit-changes/" title="对猫言猫语进行少少的修改">对猫言猫语进行少少的修改</a></li><li><a href="http://imcat.in/sample-product-do-not-think-that-i-put-on-a-vest-on-the-acceptability-not-see-you/" title="小样！不要以为穿上马甲我就认不出你！">小样！不要以为穿上马甲我就认不出你！</a></li><li><a href="http://imcat.in/wordpress-26-released/" title="WordPress 2.6发布">WordPress 2.6发布</a></li><li><a href="http://imcat.in/the-most-effective-compression-css-style-sheets-and-scripts-js/" title="最有效的压缩CSS样式表和js脚本">最有效的压缩CSS样式表和js脚本</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/nginx-301-redirect-in-wordpress/">Permalink</a> |
<a href="http://imcat.in/nginx-301-redirect-in-wordpress/#comments">3 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/nginx-301-redirect-in-wordpress/&title=WordPress的Nginx 301重定向">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/xbEPOV1VMDo" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/nginx-301-redirect-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>和谐你全家-绿坝娘COSPLAY</title>
		<link>http://imcat.in/in-harmony-with-your-family-green-dam-mother-cosplay/</link>
		<comments>http://imcat.in/in-harmony-with-your-family-green-dam-mother-cosplay/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 08:20:45 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[个人收藏]]></category>
		<category><![CDATA[御宅族]]></category>
		<category><![CDATA[Cosplay]]></category>
		<category><![CDATA[和谐]]></category>
		<category><![CDATA[绿坝娘]]></category>

		<guid isPermaLink="false">http://imcat.in/cosplay/</guid>
		<description><![CDATA[


 蜘蛛侠Cosplay-女版蜘蛛侠
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
10 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/SDnt5BJP7NT2FgNg44-t9RGokt4/0/da"><img src="http://feedads.g.doubleclick.net/~a/SDnt5BJP7NT2FgNg44-t9RGokt4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/SDnt5BJP7NT2FgNg44-t9RGokt4/1/da"><img src="http://feedads.g.doubleclick.net/~a/SDnt5BJP7NT2FgNg44-t9RGokt4/1/di" border="0" ismap="true"></img></a></p><p><img src="http://imcat.in/wp-content/uploads/2009/06/050947LI9.jpg" alt="050947LI9 和谐你全家 绿坝娘COSPLAY"  title="和谐你全家 绿坝娘COSPLAY" /></p>
<p><span id="more-945"></span></p>
<p><img src="http://imcat.in/wp-content/uploads/2009/06/1709473im.jpg" alt="1709473im 和谐你全家 绿坝娘COSPLAY"  title="和谐你全家 绿坝娘COSPLAY" /></p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/cosplay-female-version-of-spider-man-spider-man/" title="蜘蛛侠Cosplay-女版蜘蛛侠">蜘蛛侠Cosplay-女版蜘蛛侠</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/in-harmony-with-your-family-green-dam-mother-cosplay/">Permalink</a> |
<a href="http://imcat.in/in-harmony-with-your-family-green-dam-mother-cosplay/#comments">10 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/in-harmony-with-your-family-green-dam-mother-cosplay/&title=和谐你全家-绿坝娘COSPLAY">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/QRQXsQ7_SKI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/in-harmony-with-your-family-green-dam-mother-cosplay/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包</title>
		<link>http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/</link>
		<comments>http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 08:07:28 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[LNMP]]></category>
		<category><![CDATA[Memcache]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Nginx]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Vsftpd]]></category>

		<guid isPermaLink="false">http://imcat.in/%e6%9c%80%e6%96%b0linux%e4%b8%8b%e7%9a%84nginxmysqlphpmemcachevsftpd%e4%b8%80%e9%94%ae%e5%ae%89%e8%a3%85%e5%8c%85/</guid>
		<description><![CDATA[这个LANP安装包不是原创!是修改版!
我接触Linux也就一个多月而已,很多东西还是靠Google学来的!这个LANP安装包是我根据张宴和Licess的LNMP改写而成,而且经过我多次测试才发布的.测试环境为CentOS 4.0, CentOS 5.2, CentOS 5.3猫言猫语的VPS就是用这个安装包安装的.安装很简单,也就运行几个命令而已.
程序版本为: Nginx 0.7.60  PHP5.2.9  MySQL 5.1.35
1.首先登陆VPS,用SSH登陆.
2.安装LNMP,进入一个目录:cd /usr/local/src
然后就下载LNMP:wget http://imcat.in/LNMP.zip
解压缩 unzip LNMP.zip
有些VPS安装后没有unzip这个命令,那么运行 yum install unzip
进入该目录 cd LNMP
给脚本添加执行权限:chmod +x down.sh install.sh startup.sh
下载安装所需的源代码文件: ./down.sh
开始安装: ./install.sh
安装完后,请运行:passwd www
为www用户设置一个密码.这个用户和密码就是ftp的用户名和密码

修改您的MySQL的root密码
使用命令：mysqladmin -u root -p password mypasswd          //mypasswd为自己的密码
如果提示没有mysqladmin命令.请运行:yum install mysql
这样你就可以上传你的网站了.
程序安装路径：
MySQL :   /usr/local/mysql
PHP :     /usr/local/php
Nginx : [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/NzxG9Zna9t7E2pgiv7sXSr3UzHE/0/da"><img src="http://feedads.g.doubleclick.net/~a/NzxG9Zna9t7E2pgiv7sXSr3UzHE/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/NzxG9Zna9t7E2pgiv7sXSr3UzHE/1/da"><img src="http://feedads.g.doubleclick.net/~a/NzxG9Zna9t7E2pgiv7sXSr3UzHE/1/di" border="0" ismap="true"></img></a></p><p><span style="color: #ff0000;">这个LANP安装包不是原创!是修改版!</span></p>
<p>我接触Linux也就一个多月而已,很多东西还是靠Google学来的!这个LANP安装包是我根据<a title="张宴的博客" href="http://blog.s135.com/" target="_blank">张宴</a>和<a title="Licess的博客" href="http://blog.licess.cn/lnmp/" target="_blank">Licess</a>的LNMP改写而成,而且经过我多次测试才发布的.测试环境为CentOS 4.0, CentOS 5.2, CentOS 5.3<a href="http://imcat.in/">猫言猫语</a>的VPS就是用这个安装包安装的.安装很简单,也就运行几个命令而已.</p>
<p>程序版本为: Nginx 0.7.60  PHP5.2.9  MySQL 5.1.35</p>
<p>1.首先登陆VPS,用SSH登陆.</p>
<p>2.安装LNMP,进入一个目录:cd /usr/local/src</p>
<p>然后就下载LNMP:wget http://imcat.in/LNMP.zip</p>
<p>解压缩 unzip LNMP.zip</p>
<p>有些VPS安装后没有unzip这个命令,那么运行 yum install unzip</p>
<p>进入该目录 cd LNMP</p>
<p>给脚本添加执行权限:chmod +x down.sh install.sh startup.sh</p>
<p>下载安装所需的源代码文件: ./down.sh</p>
<p>开始安装: ./install.sh</p>
<p>安装完后,请运行:passwd www</p>
<p>为www用户设置一个密码.这个用户和密码就是ftp的用户名和密码</p>
<p><span id="more-944"></span></p>
<p>修改您的MySQL的root密码<br />
使用命令：mysqladmin -u root -p password mypasswd          //mypasswd为自己的密码<br />
如果提示没有mysqladmin命令.请运行:yum install mysql</p>
<p>这样你就可以上传你的网站了.</p>
<p>程序安装路径：<br />
MySQL :   /usr/local/mysql<br />
PHP :     /usr/local/php<br />
Nginx :   /usr/local/nginx<br />
PHPMyAdmin /home/www/phpmyadmin<br />
Web目录    /home/www<br />
FTP根目录   /home/www</p>
<p>注意：MYSQL数据库用户名root密码root，登陆后进入mysql数据库，找到user表，删除除了有root密码外的所有用户。</p>
<p>另外:Linux系统要用32位的.64位占用的内存很大的.</p>
<blockquote><p><span style="color: #ff0000;">9月29日更新:更新Nginx 0.7.62  PHP5.2.10  MySQL 5.1.39 .删除APC缓存,因为和zend有冲突,改为用eaccelerator做PHP的缓存</p>
<p>7月21日更新:更新Nginx 0.7.61  PHP5.2.10  MySQL 5.1.35 添加APC缓存<br />
用我这个安装包是无法安装Zend的,因为Zend和APC有冲突,如果要安装的话,就要在PHP.INI里面取消APC才可以<br />
</span></p>
<p>9月29日更新:<a href="../lnmp.zip" target="_blank">http://imcat.in/lnmp.zip</a></p>
<p>7月21日更新:<a href="../LNMP.zip" target="_blank">http://imcat.in/LNMP.zip</a></p></blockquote>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/memcache-installation-method-under-linux/" title="Linux下Memcache的安装方法">Linux下Memcache的安装方法</a></li><li><a href="http://imcat.in/apc-for-php-installed-to-speed-up/" title="安装apc为php加速">安装apc为php加速</a></li><li><a href="http://imcat.in/backup-mysql-databases-automatically-sent-to-email/" title="自动备份mysql数据库并发送到Email">自动备份mysql数据库并发送到Email</a></li><li><a href="http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/" title="Linux查看系统配置常用命令">Linux查看系统配置常用命令</a></li><li><a href="http://imcat.in/linux-too-open-files/" title="解决Linux中出现Too many open files">解决Linux中出现Too many open files</a></li><li><a href="http://imcat.in/nginx-301-redirect-in-wordpress/" title="WordPress的Nginx 301重定向">WordPress的Nginx 301重定向</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/">Permalink</a> |
<a href="http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/#comments">15 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/&title=最新Linux下的Nginx+MySQL+PHP+Memcache+Vsftpd一键安装包">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/dh06DsZ2oNQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/the-latest-linux-under-nginx-mysql-php-memcache-vsftpd-one-click-installation-package/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>女的胸部大小怎么分的啊?</title>
		<link>http://imcat.in/chest-size-woman-how-points-ah/</link>
		<comments>http://imcat.in/chest-size-woman-how-points-ah/#comments</comments>
		<pubDate>Sun, 07 Jun 2009 18:46:27 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[个人收藏]]></category>
		<category><![CDATA[乳房]]></category>
		<category><![CDATA[胸部]]></category>

		<guid isPermaLink="false">http://www.maoxmao.com/%e5%a5%b3%e7%9a%84%e8%83%b8%e9%83%a8%e5%a4%a7%e5%b0%8f%e6%80%8e%e4%b9%88%e5%88%86%e7%9a%84%e5%95%8a/</guid>
		<description><![CDATA[技术贴啊,不要错过!
胸围尺寸说明：胸罩型号是由胸罩尺寸和罩杯尺寸两部分构成的。通常所说的女性胸围，是指沿女性乳头绕胸一周的长度。而胸罩的尺寸，指的是女性的下胸围，即沿女性乳根绕胸一周的长度。罩杯尺寸呢，是指女性的胸围减去下胸围的差。
比如一位女性，胸围85cm，下胸围70cm，那么罩杯尺寸就是85cm-70cm=15cm。罩杯一般用A、B、C等大写英文字母表示，每2.5cm为 一级，AA最小为7.5cm，A为10cm，B是12.5cm，C是15cm，D是17.5cm，E是20cm，再往上就算是特种尺寸了。
像之前说的那位女性，胸围85cm，下胸围70cm，罩杯尺寸为15cm，就是C。于是，她适合穿的胸罩型号就为70C。只要是符合国际胸罩标识标准的产品，都是用这样的方法来区分型号的。
在买胸罩之前，最好先把你的美人的尺寸搞清楚，如果她也不清楚，就量量吧，不管你用尺子量还是用手掌量，只要把尺寸转换成厘米就好。西方人通常用英寸来表 示胸围，所以你会看到有些胸罩是75B，有些却是30B，这只是单位不同而已。一英寸等于2.54厘米，换算一下就行了。

搞清楚了尺寸的计算方法之后，下来我们再看看胸罩的分类。
胸罩的罩杯，按照形状分为全罩杯、3/4罩杯和1/2罩杯三种类型。全罩杯型的，可以将女性的乳房整个包在罩杯内,有很明显的支撑和集中乳房的效果。它还有其他各种附加措施，比如加垫等等，是特殊功能最多的一种。
3/4罩杯的最大优点，是向中央集中乳房的效果最好。它能够将女性的乳沟显现得更加明显，从而凸显女性乳房的美妙曲线。
1/2罩杯呢，由于体积比较小，而且一般这种胸罩都可以把肩带摘下来，所以穿着方便，能够灵活搭配各种衣服使用。
一般来说，1/2罩杯由于承托力小，所以比较适合胸部小而平坦的女性。3/4型和全罩杯型适合的群体更加广泛。而且还可以利用胸罩的“掩护”完成一些特殊功能，比如里面带垫子的能够让乳房看起来大一点，下半部分加厚一些的，可以将已经下垂的乳房托起等等。
罩杯类形－－上下胸围的差距
AA            A               B             C              D
约7.5cm   约10cm   约12.5cm   约15cm   约17.5cm
E               F             G               H              I
约20cm   约22.5cm   约25cm   约27.5cm   约30cm
尺寸的测量尺寸的测量
1． 罩杯尺寸
罩杯尺寸 = 胸围 －下胸围
(例如：10cm=A罩杯.13cm=B罩杯.15cm=C罩杯 18cm=D罩杯.20cm=E罩杯)
胸罩罩杯尺寸说明表
罩杯型号 胸围与胸下围的差距
AA 约7.5cm
A [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/QfzQ9k0Jh4lHFBo4CN1zzD1D0qk/0/da"><img src="http://feedads.g.doubleclick.net/~a/QfzQ9k0Jh4lHFBo4CN1zzD1D0qk/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/QfzQ9k0Jh4lHFBo4CN1zzD1D0qk/1/da"><img src="http://feedads.g.doubleclick.net/~a/QfzQ9k0Jh4lHFBo4CN1zzD1D0qk/1/di" border="0" ismap="true"></img></a></p><p><span style="color: #ff0000;">技术贴啊,不要错过!</span></p>
<p>胸围尺寸说明：胸罩型号是由胸罩尺寸和罩杯尺寸两部分构成的。通常所说的女性胸围，是指沿女性乳头绕胸一周的长度。而胸罩的尺寸，指的是女性的下胸围，即沿女性乳根绕胸一周的长度。罩杯尺寸呢，是指女性的胸围减去下胸围的差。</p>
<p>比如一位女性，胸围85cm，下胸围70cm，那么罩杯尺寸就是85cm-70cm=15cm。罩杯一般用A、B、C等大写英文字母表示，每2.5cm为 一级，AA最小为7.5cm，A为10cm，B是12.5cm，C是15cm，D是17.5cm，E是20cm，再往上就算是特种尺寸了。</p>
<p>像之前说的那位女性，胸围85cm，下胸围70cm，罩杯尺寸为15cm，就是C。于是，她适合穿的胸罩型号就为70C。只要是符合国际胸罩标识标准的产品，都是用这样的方法来区分型号的。</p>
<p>在买胸罩之前，最好先把你的美人的尺寸搞清楚，如果她也不清楚，就量量吧，不管你用尺子量还是用手掌量，只要把尺寸转换成厘米就好。西方人通常用英寸来表 示胸围，所以你会看到有些胸罩是75B，有些却是30B，这只是单位不同而已。一英寸等于2.54厘米，换算一下就行了。</p>
<p><span id="more-941"></span></p>
<p>搞清楚了尺寸的计算方法之后，下来我们再看看胸罩的分类。</p>
<p>胸罩的罩杯，按照形状分为全罩杯、3/4罩杯和1/2罩杯三种类型。全罩杯型的，可以将女性的乳房整个包在罩杯内,有很明显的支撑和集中乳房的效果。它还有其他各种附加措施，比如加垫等等，是特殊功能最多的一种。</p>
<p>3/4罩杯的最大优点，是向中央集中乳房的效果最好。它能够将女性的乳沟显现得更加明显，从而凸显女性乳房的美妙曲线。</p>
<p>1/2罩杯呢，由于体积比较小，而且一般这种胸罩都可以把肩带摘下来，所以穿着方便，能够灵活搭配各种衣服使用。</p>
<p>一般来说，1/2罩杯由于承托力小，所以比较适合胸部小而平坦的女性。3/4型和全罩杯型适合的群体更加广泛。而且还可以利用胸罩的“掩护”完成一些特殊功能，比如里面带垫子的能够让乳房看起来大一点，下半部分加厚一些的，可以将已经下垂的乳房托起等等。</p>
<p>罩杯类形－－上下胸围的差距<br />
AA            A               B             C              D<br />
约7.5cm   约10cm   约12.5cm   约15cm   约17.5cm</p>
<p>E               F             G               H              I<br />
约20cm   约22.5cm   约25cm   约27.5cm   约30cm</p>
<p>尺寸的测量尺寸的测量</p>
<p>1． 罩杯尺寸<br />
罩杯尺寸 = 胸围 －下胸围<br />
(例如：10cm=A罩杯.13cm=B罩杯.15cm=C罩杯 18cm=D罩杯.20cm=E罩杯)</p>
<p>胸罩罩杯尺寸说明表</p>
<p>罩杯型号 胸围与胸下围的差距</p>
<p>AA 约7.5cm</p>
<p>A 约10cm</p>
<p>B 约12.5cm</p>
<p>C 约15cm</p>
<p>D 约17.5cm</p>
<p>E 约20cm</p>
<p>胸罩尺寸=下胸围尺寸<br />
(例如:胸围是83公分.下胸围是70公分) 应穿着=&gt; 70 B 的胸罩</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/godaddy-host-of-the-linux-open-ssh-guide/" title="Godaddy的Linux主机开通SSH教程">Godaddy的Linux主机开通SSH教程</a></li><li><a href="http://imcat.in/this-way-you-will-test-your-love-it/" title="【转载】你会这样去考验你的爱人吗？">【转载】你会这样去考验你的爱人吗？</a></li><li><a href="http://imcat.in/bt-also-a-deputy-download-site-imageshack/" title="又一个BT代理下载网站-IMAGESHACK">又一个BT代理下载网站-IMAGESHACK</a></li><li><a href="http://imcat.in/cctvbox-through-the-cctv-network-tv-client-to-see-the-olympic-games/" title="CCTVBox:通过CCTV网络电视客户端看奥运 ">CCTVBox:通过CCTV网络电视客户端看奥运 </a></li><li><a href="http://imcat.in/why-many-japanese-street-flag-shake/" title="日本街头为什么这么多摇小旗的?">日本街头为什么这么多摇小旗的?</a></li><li><a href="http://imcat.in/memcache-installation-method-under-linux/" title="Linux下Memcache的安装方法">Linux下Memcache的安装方法</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/chest-size-woman-how-points-ah/">Permalink</a> |
<a href="http://imcat.in/chest-size-woman-how-points-ah/#comments">35 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/chest-size-woman-how-points-ah/&title=女的胸部大小怎么分的啊?">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/YhFpw7NI9rs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/chest-size-woman-how-points-ah/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
		<item>
		<title>只许看图,不许联想</title>
		<link>http://imcat.in/only-read-not-lenovo/</link>
		<comments>http://imcat.in/only-read-not-lenovo/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 05:09:32 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[猫言猫语]]></category>

		<guid isPermaLink="false">http://www.maoxmao.com/%e5%8f%aa%e8%ae%b8%e7%9c%8b%e5%9b%be%e4%b8%8d%e8%ae%b8%e8%81%94%e6%83%b3/</guid>
		<description><![CDATA[
 如何选择 WordPress 的插件Better Gmail更新，已完全兼容新版Gmail身体有些支持不住了&#8230;..Google官方Adsense优化建议免费的万能播放器下载 K-Lite Mega Codec PackWordpress2.6新功能概览
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
9 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/VO9vc7UdcChAUndm4VrdgvM2hhw/0/da"><img src="http://feedads.g.doubleclick.net/~a/VO9vc7UdcChAUndm4VrdgvM2hhw/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/VO9vc7UdcChAUndm4VrdgvM2hhw/1/da"><img src="http://feedads.g.doubleclick.net/~a/VO9vc7UdcChAUndm4VrdgvM2hhw/1/di" border="0" ismap="true"></img></a></p><p><a href="http://imcat.in/wp-content/uploads/2009/06/11078351.jpg"><img class="alignnone size-medium wp-image-939" title="11078351" src="http://imcat.in/wp-content/uploads/2009/06/11078351-388x579.jpg" alt="11078351 388x579 只许看图,不许联想" width="388" height="579" /></a></p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/how-in-the-streets-identified-wanmoshou-the-world/" title="怎样在大街上认出玩魔兽世界的人！">怎样在大街上认出玩魔兽世界的人！</a></li><li><a href="http://imcat.in/ass-graffiti/" title="屁股涂鸦">屁股涂鸦</a></li><li><a href="http://imcat.in/wordpress-plugin-recommendations-recommended-button-fruit/" title="wordpress plugin 推荐：鲜果推荐按钮">wordpress plugin 推荐：鲜果推荐按钮</a></li><li><a href="http://imcat.in/firefox3-resolved-two-ways-not-compatible-with-expansion/" title="两个方法解决FireFox3中扩展不兼容">两个方法解决FireFox3中扩展不兼容</a></li><li><a href="http://imcat.in/flickr-foldr-monitr-with-automatic-upload-pictures-to-flickr/" title="用Flickr Foldr Monitr自动上传图片到 Flickr">用Flickr Foldr Monitr自动上传图片到 Flickr</a></li><li><a href="http://imcat.in/i-use-the-expansion-of-firefox3/" title="我使用的Firefox3扩展">我使用的Firefox3扩展</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/only-read-not-lenovo/">Permalink</a> |
<a href="http://imcat.in/only-read-not-lenovo/#comments">9 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/only-read-not-lenovo/&title=只许看图,不许联想">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/vnhpqtR54Iw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/only-read-not-lenovo/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>找个合适的女朋友可真难那</title>
		<link>http://imcat.in/to-find-the-right-girlfriend-can-be-difficult-and-that/</link>
		<comments>http://imcat.in/to-find-the-right-girlfriend-can-be-difficult-and-that/#comments</comments>
		<pubDate>Wed, 03 Jun 2009 20:32:51 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[个人收藏]]></category>

		<guid isPermaLink="false">http://www.maoxmao.com/%e6%89%be%e4%b8%aa%e5%90%88%e9%80%82%e7%9a%84%e5%a5%b3%e6%9c%8b%e5%8f%8b%e5%8f%af%e7%9c%9f%e9%9a%be%e9%82%a3/</guid>
		<description><![CDATA[转载的!出处不知道!
这世界上最难的事情就是找一个合适的女朋友了。
这个人不但要我自己喜欢，还要我父母喜欢，否则我就有巨大的家庭压力。
她不但要喜欢我，而且她父母也要喜欢我，否则终究要分手。
她不但不能嫌我穷，还不能嫌我胖。能欣赏我，接受我，还能准备将来给我做饭带孩子。
最好还能懂一点哲学和文学，不然怎么能和我谈的来呢？？
最重要的是知书达理，贤惠体贴，不过这已经是奢望了。。。。
现在的女孩子，除了知道吃，就是知道玩，要不然就是把工资花光，等着下个月的工资还***，唉...
哪有过日子的人呢？
眼看着自己一天一天老去，奔三的速度加快，谈了几个不是被甩就是分手，难道是我要求太高，还是我素质太低，真郁闷！！
其实家里还在催我，催我就催我吧，爱情难道是催出来的吗？？？
我最喜欢林黛玉，但是只是喜欢，过日子可不行。王西凤是过日子的人，不过谈恋爱可不行。
最好还是薛宝钗那样的姑娘，会过日子，还会谈恋爱，可惜我不是贾宝玉，所以我最痛恨的人就是贾宝玉，放着好好的姑娘不追，弄得大家都不爽。
我也不爽！！
其实不结婚也可以的嘛，不谈恋爱也可以的嘛，催催，难道要我就找一个过日子的人嘛。

这可不行！
尼采为了一个女人，一辈子都不结婚，宁愿嫖娼，当然，他最后死于梅毒。
希特勒在生命的最后才选择结婚，当然他那是才有空结婚。
那叔本华那，米勒那，马克思那....
哪个不是一辈子都没人爱，活的有滋有味。。。
所以我不急，急也没用，没用我干嘛急。
我就上班，看书，上网，玩游戏，活的好好的。
以前有过女朋友，没一个烦的少的。
男人其实很简单。
女人才复杂。
男人的染色体是Y。
女人是X。
Y就是一条道走到黑，X就是未知，奇怪，神秘，麻烦...
牛津大学教授说：男人终究要灭绝。
由此看来，男人越来越少，女人越来越多。我不是担心男人消失，我是在想，要是世界上只有我一个男人..
哈哈。
可惜这个过程要很多年，那时候我要是不死，也很老了，唉，生不逢时...
 又一个BT代理下载网站-IMAGESHACK推荐WordPress插件 &#8211; WP Widget CacheFlickr Manager－插入带Lightbox效果的Flickr照片一张让XP用户感到奇怪的图片恢复IE的表单自动记忆功能让 Windows XP 关机对话框出现“休眠”按钮
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
8 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/fgVtZMXHAqDsR5uaP7drEvepd9k/0/da"><img src="http://feedads.g.doubleclick.net/~a/fgVtZMXHAqDsR5uaP7drEvepd9k/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/fgVtZMXHAqDsR5uaP7drEvepd9k/1/da"><img src="http://feedads.g.doubleclick.net/~a/fgVtZMXHAqDsR5uaP7drEvepd9k/1/di" border="0" ismap="true"></img></a></p><p><strong>转载的!出处不知道!</strong></p>
<p>这世界上最难的事情就是找一个合适的女朋友了。<br />
这个人不但要我自己喜欢，还要我父母喜欢，否则我就有巨大的家庭压力。<br />
她不但要喜欢我，而且她父母也要喜欢我，否则终究要分手。<br />
她不但不能嫌我穷，还不能嫌我胖。能欣赏我，接受我，还能准备将来给我做饭带孩子。<br />
最好还能懂一点哲学和文学，不然怎么能和我谈的来呢？？<br />
最重要的是知书达理，贤惠体贴，不过这已经是奢望了。。。。<br />
现在的女孩子，除了知道吃，就是知道玩，要不然就是把工资花光，等着下个月的工资还***，唉...<br />
哪有过日子的人呢？<br />
眼看着自己一天一天老去，奔三的速度加快，谈了几个不是被甩就是分手，难道是我要求太高，还是我素质太低，真郁闷！！<br />
其实家里还在催我，催我就催我吧，爱情难道是催出来的吗？？？<br />
我最喜欢林黛玉，但是只是喜欢，过日子可不行。王西凤是过日子的人，不过谈恋爱可不行。<br />
最好还是薛宝钗那样的姑娘，会过日子，还会谈恋爱，可惜我不是贾宝玉，所以我最痛恨的人就是贾宝玉，放着好好的姑娘不追，弄得大家都不爽。<br />
我也不爽！！<br />
其实不结婚也可以的嘛，不谈恋爱也可以的嘛，催催，难道要我就找一个过日子的人嘛。</p>
<p><span id="more-938"></span><br />
这可不行！<br />
尼采为了一个女人，一辈子都不结婚，宁愿嫖娼，当然，他最后死于梅毒。<br />
希特勒在生命的最后才选择结婚，当然他那是才有空结婚。<br />
那叔本华那，米勒那，马克思那....<br />
哪个不是一辈子都没人爱，活的有滋有味。。。<br />
所以我不急，急也没用，没用我干嘛急。<br />
我就上班，看书，上网，玩游戏，活的好好的。<br />
以前有过女朋友，没一个烦的少的。<br />
男人其实很简单。<br />
女人才复杂。<br />
男人的染色体是Y。<br />
女人是X。<br />
Y就是一条道走到黑，X就是未知，奇怪，神秘，麻烦...<br />
牛津大学教授说：男人终究要灭绝。<br />
由此看来，男人越来越少，女人越来越多。我不是担心男人消失，我是在想，要是世界上只有我一个男人..<br />
哈哈。<br />
可惜这个过程要很多年，那时候我要是不死，也很老了，唉，生不逢时...</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/outside-the-domain-daily-tasks-dangerous-sky/" title="外域日常任务：危险的天空">外域日常任务：危险的天空</a></li><li><a href="http://imcat.in/mediacoder-video-transcoding-tool/" title="MediaCoder-影音转码工具">MediaCoder-影音转码工具</a></li><li><a href="http://imcat.in/blog-moved-vps/" title="将博客搬到VPS">将博客搬到VPS</a></li><li><a href="http://imcat.in/yizhangyouyisidehuanjuetu/" title="一张有意思的幻觉图">一张有意思的幻觉图</a></li><li><a href="http://imcat.in/alpha-image-convertor-photo-revised-version-of-conversion-tools/" title="Alpha Image Convertor 图片转换工具修改版">Alpha Image Convertor 图片转换工具修改版</a></li><li><a href="http://imcat.in/yan-zi-childhood-precious-photos-2/" title="燕姿小时候珍贵照片两张">燕姿小时候珍贵照片两张</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/to-find-the-right-girlfriend-can-be-difficult-and-that/">Permalink</a> |
<a href="http://imcat.in/to-find-the-right-girlfriend-can-be-difficult-and-that/#comments">8 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/to-find-the-right-girlfriend-can-be-difficult-and-that/&title=找个合适的女朋友可真难那">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/UthNxtA7-0g" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/to-find-the-right-girlfriend-can-be-difficult-and-that/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>单身男人的休息日</title>
		<link>http://imcat.in/single-menu002639s-rest-day/</link>
		<comments>http://imcat.in/single-menu002639s-rest-day/#comments</comments>
		<pubDate>Sun, 17 May 2009 03:20:35 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[猫言猫语]]></category>
		<category><![CDATA[单身]]></category>
		<category><![CDATA[宅男]]></category>
		<category><![CDATA[生活]]></category>

		<guid isPermaLink="false">http://www.maoxmao.com/%e5%8d%95%e8%ba%ab%e7%94%b7%e4%ba%ba%e7%9a%84%e4%bc%91%e6%81%af%e6%97%a5/</guid>
		<description><![CDATA[5:00 下班做公交车回宿舍
6:00 回到宿舍附近打包一个饭回去
7:00 吃饭(期间穿插上网话痨)
8:00 把一周的衣服泡起来
9:00-10:00 艰巨任务,洗衣服!(期间跑过来电脑前面N次)
10:00-12:00 看电影,美剧,动漫,听音乐
12:00 吃宵夜,这么热的天气最好喝糖水(海带绿豆沙)
1:00-到睡觉 看订阅,回复Email和IM的消息
白天就不写了,白天的时间太乱了.有时候,我可能睡一天,玩一天游戏,出去逛街一天,出去打电动(拳王!)现在很热,估计我会去游泳
我是很忙的,虽然一个星期有三天假,但总是不够用..唉
ps:我的好朋友面试成功了,还是两份工作!!!她终于不用做面霸了.......
不过我还是比较自私,我希望她来广州工作...哈~
 MOP情侣去死团&#8212;宗旨以及入团条件注意事项这是个离暧昧很近,却离爱情很远的年代 身体有些支持不住了&#8230;..这样的生活?有么?没有女朋友的时候,因为寂寞而痛苦..
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
13 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/LBJDVsYaOjwN3nPS2uN-AVmMKr4/0/da"><img src="http://feedads.g.doubleclick.net/~a/LBJDVsYaOjwN3nPS2uN-AVmMKr4/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/LBJDVsYaOjwN3nPS2uN-AVmMKr4/1/da"><img src="http://feedads.g.doubleclick.net/~a/LBJDVsYaOjwN3nPS2uN-AVmMKr4/1/di" border="0" ismap="true"></img></a></p><p>5:00 下班做公交车回宿舍</p>
<p>6:00 回到宿舍附近打包一个饭回去</p>
<p>7:00 吃饭(期间穿插上网话痨)</p>
<p>8:00 把一周的衣服泡起来</p>
<p>9:00-10:00 艰巨任务,洗衣服!(期间跑过来电脑前面N次)</p>
<p>10:00-12:00 看电影,美剧,动漫,听音乐</p>
<p>12:00 吃宵夜,这么热的天气最好喝糖水(海带绿豆沙)</p>
<p>1:00-到睡觉 看订阅,回复Email和IM的消息</p>
<p>白天就不写了,白天的时间太乱了.有时候,我可能睡一天,玩一天游戏,出去逛街一天,出去打电动(拳王!)现在很热,估计我会去游泳</p>
<p>我是很忙的,虽然一个星期有三天假,但总是不够用..唉</p>
<p>ps:我的好朋友面试成功了,还是两份工作!!!她终于不用做面霸了.......</p>
<p>不过我还是比较自私,我希望她来广州工作...哈~</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/mop-lovers-die-mission-and-purpose-rutuan-conditions-attention/" title="MOP情侣去死团&#8212;宗旨以及入团条件注意事项">MOP情侣去死团&#8212;宗旨以及入团条件注意事项</a></li><li><a href="http://imcat.in/this-is-a-very-close-from-the-ambiguous-it-is-far-from-the-love-of-the/" title="这是个离暧昧很近,却离爱情很远的年代 ">这是个离暧昧很近,却离爱情很远的年代 </a></li><li><a href="http://imcat.in/some-of-the-physical-qichibuzhu/" title="身体有些支持不住了&#8230;..">身体有些支持不住了&#8230;..</a></li><li><a href="http://imcat.in/this-life-there/" title="这样的生活?有么?">这样的生活?有么?</a></li><li><a href="http://imcat.in/no-girlfriend-when-as-lonely-and-painful/" title="没有女朋友的时候,因为寂寞而痛苦..">没有女朋友的时候,因为寂寞而痛苦..</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/single-menu002639s-rest-day/">Permalink</a> |
<a href="http://imcat.in/single-menu002639s-rest-day/#comments">13 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/single-menu002639s-rest-day/&title=单身男人的休息日">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/KVEV8i7yLDs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/single-menu002639s-rest-day/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>一些常用的SSH命令</title>
		<link>http://imcat.in/some-commonly-used-ssh-commands/</link>
		<comments>http://imcat.in/some-commonly-used-ssh-commands/#comments</comments>
		<pubDate>Tue, 12 May 2009 13:46:54 +0000</pubDate>
		<dc:creator>ゞ猫</dc:creator>
				<category><![CDATA[个人收藏]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[命令]]></category>

		<guid isPermaLink="false">http://www.maoxmao.com/%e4%b8%80%e4%ba%9b%e5%b8%b8%e7%94%a8%e7%9a%84ssh%e5%91%bd%e4%bb%a4/</guid>
		<description><![CDATA[购买了vps,我用得最多还是SSH,因为我没有安装控制面板,什么都是靠SSH来完成,用SSH的好处很多,基本上(Cpanel控制面板有的),SSH都支持,可是我总是记不住命令,唯有用博客记下来了...
wget命令:从远程的服务器上下载软件到你的目录下,wget http://imcat.in/xxoo.zip 这个命令就是把xxoo.zip下载过来.
然后就是解压命令了,如果是zip文件就直接用unzip就可以解压,例如: unzip xxoo.zip  就是解压xxoo.zip文件到当前文件夹..
压缩命令: tar cfz xxoo.tar.gz xxoo   这个命令就是将xxoo文件夹压缩为xxoo.tar.gz
重命名命令：mv xxoo maoxmao   就是把xxoo重命名为 maoxmao
复制命令：cp -a xxoo /home/www  就是把你当前目录下的xxoo文件夹整个复制到/home/www下。
ssh下备份mysql:

mysqldump -h localhost -p maoxmao -u maoxmao &#62;maoxmao.sql
输入密码后,就自动将数据库备份为maoxmao.sql
恢复mysql命令:
mysql -h  localhost -p maoxmao -u maoxmao
输入密码,然后source maoxmao.sql
就可以恢复mysql了
暂时就这么多,以后再更新
 Linux查看系统配置常用命令利用vps主机的ssh帐号翻&#8211;墙Godaddy的Linux主机开通SSH教程
请更改订阅地址:http://feed.imcat.in/

© ゞ猫 for 猫言猫语, 2009. &#124;
Permalink &#124;
4 comments &#124;
Add to
del.icio.us

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://feedads.g.doubleclick.net/~a/1Ou8PFEHU91Chs0irH_3_KiS4_M/0/da"><img src="http://feedads.g.doubleclick.net/~a/1Ou8PFEHU91Chs0irH_3_KiS4_M/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/1Ou8PFEHU91Chs0irH_3_KiS4_M/1/da"><img src="http://feedads.g.doubleclick.net/~a/1Ou8PFEHU91Chs0irH_3_KiS4_M/1/di" border="0" ismap="true"></img></a></p><p>购买了vps,我用得最多还是SSH,因为我没有安装控制面板,什么都是靠SSH来完成,用SSH的好处很多,基本上(Cpanel控制面板有的),SSH都支持,可是我总是记不住命令,唯有用博客记下来了...</p>
<p>wget命令:从远程的服务器上下载软件到你的目录下,wget http://imcat.in/xxoo.zip 这个命令就是把xxoo.zip下载过来.</p>
<p>然后就是解压命令了,如果是zip文件就直接用unzip就可以解压,例如: unzip xxoo.zip  就是解压xxoo.zip文件到当前文件夹..</p>
<p>压缩命令: tar cfz xxoo.tar.gz xxoo   这个命令就是将xxoo文件夹压缩为xxoo.tar.gz</p>
<p>重命名命令：mv xxoo maoxmao   就是把xxoo重命名为 maoxmao</p>
<p>复制命令：cp -a xxoo /home/www  就是把你当前目录下的xxoo文件夹整个复制到/home/www下。</p>
<p>ssh下备份mysql:</p>
<p><span id="more-920"></span></p>
<p>mysqldump -h localhost -p maoxmao -u maoxmao &gt;maoxmao.sql</p>
<p>输入密码后,就自动将数据库备份为maoxmao.sql</p>
<p>恢复mysql命令:</p>
<p>mysql -h  localhost -p maoxmao -u maoxmao</p>
<p>输入密码,然后source maoxmao.sql</p>
<p>就可以恢复mysql了</p>
<p>暂时就这么多,以后再更新</p>
<h3  class="related_post_title"> </h3><ul class="related_post"><li><a href="http://imcat.in/view-the-system-configuration-commonly-used-linux-commands/" title="Linux查看系统配置常用命令">Linux查看系统配置常用命令</a></li><li><a href="http://imcat.in/vps-host-using-ssh-account-of-climbing-over-the-wall/" title="利用vps主机的ssh帐号翻&#8211;墙">利用vps主机的ssh帐号翻&#8211;墙</a></li><li><a href="http://imcat.in/godaddy-host-of-the-linux-open-ssh-guide/" title="Godaddy的Linux主机开通SSH教程">Godaddy的Linux主机开通SSH教程</a></li></ul><br/>
请更改订阅地址:<a href="http://feed.imcat.in/">http://feed.imcat.in/</a>
<hr />
<p><small>© ゞ猫 for <a href="http://imcat.in">猫言猫语</a>, 2009. |
<a href="http://imcat.in/some-commonly-used-ssh-commands/">Permalink</a> |
<a href="http://imcat.in/some-commonly-used-ssh-commands/#comments">4 comments</a> |
Add to
<a href="http://del.icio.us/post?url=http://imcat.in/some-commonly-used-ssh-commands/&title=一些常用的SSH命令">del.icio.us</a>
<br/>
</small></p><img src="http://feeds.feedburner.com/~r/mucat/~4/7rSY7f44Z8s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://imcat.in/some-commonly-used-ssh-commands/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
