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

<channel>
	<title>月影鹏鹏</title>
	<atom:link href="http://jk.aiwaly.com/feed" rel="self" type="application/rss+xml" />
	<link>http://jk.aiwaly.com</link>
	<description>不断探索,追求卓越,做快乐自己</description>
	<lastBuildDate>Thu, 29 Mar 2012 01:09:08 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>vmware 厚置备延迟置零,厚置备置零,精简置备</title>
		<link>http://jk.aiwaly.com/wp/vmware-disk-moshi.html</link>
		<comments>http://jk.aiwaly.com/wp/vmware-disk-moshi.html#comments</comments>
		<pubDate>Thu, 29 Mar 2012 01:09:08 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[虚拟化]]></category>

		<guid isPermaLink="false">http://jacky.aiwaly.com/?p=3123</guid>
		<description><![CDATA[
厚置备延迟置零：以默认的厚格式创建虚拟磁盘。创建过程中为虚拟磁盘分配所需空间。创建时不会擦除物理设备上保留的任何数据，但是以后从虚拟机首次执行写操作时会按需要将其置零。
厚置备置零：创建支持群集功能（如 Fault Tolerance）的厚磁盘。在创建时为虚拟磁盘分配所需的空间。与平面格式相反，在创建过程中会将物理设备上保留的数据置零。创建这种格式的磁盘所需的时间可能会比创建其他类型的磁盘长。
精简置备：使用精简置备格式。最初，精简置备的磁盘只使用该磁盘最初所需要的数据存储空间。如果以后精简磁盘需要更多空间，则它可以增长到为其分配的最大容量

]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/vmware-disk-moshi.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“Cache-control”常见的取值有private、no-cache、max-age、must-revalidate等</title>
		<link>http://jk.aiwaly.com/wp/cache-control.html</link>
		<comments>http://jk.aiwaly.com/wp/cache-control.html#comments</comments>
		<pubDate>Thu, 08 Dec 2011 07:44:33 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[网站运维]]></category>

		<guid isPermaLink="false">http://jk.aiwaly.com/wp/%e2%80%9ccache-control%e2%80%9d%e5%b8%b8%e8%a7%81%e7%9a%84%e5%8f%96%e5%80%bc%e6%9c%89private%e3%80%81no-cache%e3%80%81max-age%e3%80%81must-revalidate%e7%ad%89.html</guid>
		<description><![CDATA[网页的缓存是由HTTP消息头中的“Cache-control”来控制的，常见的取值有private、no-cache、max-age、must-revalidate等，默认为private。其作用根据不同的重新浏览方式分为以下几种情况：
 （1） 打开新窗口
如果指定cache-control的值为private、no-cache、must-revalidate，那么打开新窗口访问时都会重新访问服务器。而如果指定了max-age值，那么在此值内的时间里就不会重新访问服务器，例如：
Cache-control: max-age=5
表示当访问此网页后的5秒内再次访问不会去服务器
（2） 在地址栏回车
如果值为private或must-revalidate（和网上说的不一样），则只有第一次访问时会访问服务器，以后就不再访问。如果值为no-cache，那么每次都会访问。如果值为max-age，则在过期之前不会重复访问。
（3） 按后退按扭
如果值为private、must-revalidate、max-age，则不会重访问，而如果为no-cache，则每次都重复访问
（4） 按刷新按扭
无论为何值，都会重复访问
当指定Cache-control值为“no-cache”时，访问此页面不会在Internet临时文章夹留下页面备份。
另外，通过指定“Expires”值也会影响到缓存。例如，指定Expires值为一个早已过去的时间，那么访问此网时若重复在地址栏按回车，那么每次都会重复访问：
Expires: Fri, 31 Dec 1999 16:00:00 GMT
在ASP中，可以通过Response对象的Expires、ExpiresAbsolute属性控制Expires值；通过Response对象的CacheControl属性控制Cache-control的值，例如：
Response.ExpiresAbsolute = #2000-1-1# &#8217; 指定绝对的过期时间，这个时间用的是服务器当地时间，会被自动转换为GMT时间
Response.Expires = 20  &#8217; 指定相对的过期时间，以分钟为单位，表示从当前时间起过多少分钟过期。
Response.CacheControl = &#8220;no-cache&#8221;
Expires值是可以通过在Internet临时文件夹中查看临时文件的属性看到的，如：
]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/cache-control.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>鹏鹏摄影3d墙</title>
		<link>http://jk.aiwaly.com/wp/yueying_3d_wall.html</link>
		<comments>http://jk.aiwaly.com/wp/yueying_3d_wall.html#comments</comments>
		<pubDate>Thu, 20 Oct 2011 08:45:54 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[快乐生活]]></category>

		<guid isPermaLink="false">http://jk.aiwaly.com/?p=3107</guid>
		<description><![CDATA[  
 function iFrameHeight() {  
  var ifm= document.getElementById("iframepage");  
  var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;  
  if(ifm != null &#038;&#038; subWeb != null) {
     ifm.height = subWeb.body.scrollHeight;
  }  
 }  


]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/yueying_3d_wall.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>老宅照片相册整理</title>
		<link>http://jk.aiwaly.com/wp/laozhanzhaopianzhengli.html</link>
		<comments>http://jk.aiwaly.com/wp/laozhanzhaopianzhengli.html#comments</comments>
		<pubDate>Thu, 20 Oct 2011 07:04:13 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[快乐生活]]></category>

		<guid isPermaLink="false">http://jk.aiwaly.com/?p=3099</guid>
		<description><![CDATA[  
 function iFrameHeight() {  
  var ifm= document.getElementById("iframepage");  
  var subWeb = document.frames ? document.frames["iframepage"].document : ifm.contentDocument;  
  if(ifm != null &#038;&#038; subWeb != null) {
     ifm.height = subWeb.body.scrollHeight;
  }  
 }  


]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/laozhanzhaopianzhengli.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>oracle中修改密码的方法</title>
		<link>http://jk.aiwaly.com/wp/oracle-change-password.html</link>
		<comments>http://jk.aiwaly.com/wp/oracle-change-password.html#comments</comments>
		<pubDate>Fri, 16 Sep 2011 09:17:13 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://jk.aiwaly.com/?p=3096</guid>
		<description><![CDATA[

用OS认证方式登陆，即是CONNECT / AS SYSDBA 登陆，然后修改密码就是了
ALTER USER SYS IDENTIFIED BY ****
ALTER USER SYSTEM IDENTIFIED BY ****
然后你可以改变成密码文件认证。
9i 中可以以oracle登陆操作系统，　设置好ORACLE_HOME和ORACLE_SID环境变量, 启动sqlplus
使用conn / as sysdba登陆数据库，　然后就可以用alter user sys identified by &#8220;newsyspassword&#8221;来修改sys的密码了，　修改system密码也是一样．
数据库版本：9.2.0.5
有时候我们可能不知道一个用户的密码，但是又需要以这个用户做一些操作，又不能去修改掉这个用户的密码，这个时候，就可以利用一些小窍门，来完成操作。
具体操作过程如下：
SQL*Plus: Release 9.2.0.5.0 &#8211; Production on 星期日 11月 21 13:32:34 2004
Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
SQL&#62; connect sys/oracle as sysdba
已连接。
SQL&#62; select username,password from dba_users;
USERNAME                       PASSWORD
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212; &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
SYS                            8A8F025737A9097A
SYSTEM                         2D594E86F93B17A1
DBSNMP                         [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/oracle-change-password.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>centos5上php53的mcrypt模块</title>
		<link>http://jk.aiwaly.com/wp/centos-5-php53-mcrypt.html</link>
		<comments>http://jk.aiwaly.com/wp/centos-5-php53-mcrypt.html#comments</comments>
		<pubDate>Thu, 01 Sep 2011 08:05:38 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[开源软件]]></category>
		<category><![CDATA[网站运维]]></category>

		<guid isPermaLink="false">http://jacky.aiwaly.com/?p=3093</guid>
		<description><![CDATA[centos 的  php53-mcrypt   安装包  yum方式无法找到，所以按如下方式可以编译所需的模块。

wget http://museum.php.net/php5/php-5.3.3.tar.gz
yum install php53-devel
yum install libmcrypt-devel
cd /usr/src/
tar zxvf /php-5.3.3.tar.gz
cd php-5.3.3/ext/mcrypt/
phpize
aclocal
./configure
make
make install
Add following line to /etc/php.d/mcrypt.ini
extension=mcrypt.so
Restart web server
php -m
你可以看到 mcrypt  模块已经添加
]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/centos-5-php53-mcrypt.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ngnix出现高危漏洞,记得防范</title>
		<link>http://jk.aiwaly.com/wp/possible-arbitrary-code-execution-with-null-bytes-php-and-old-versions-of-nginx.html</link>
		<comments>http://jk.aiwaly.com/wp/possible-arbitrary-code-execution-with-null-bytes-php-and-old-versions-of-nginx.html#comments</comments>
		<pubDate>Fri, 26 Aug 2011 01:28:10 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[开源软件]]></category>
		<category><![CDATA[网站运维]]></category>

		<guid isPermaLink="false">http://jk.aiwaly.com/?p=3091</guid>
		<description><![CDATA[
Ngnix出现漏洞，可远程执行代码：Ngnix在遇到%00空字节时与后端FastCGI处理不一致，导致可以在图片中嵌入PHP代码后通过访问xxx.jpg%00.php来执行其中的代码。影响版本：0.5.*, 0.6.*, 0.7 &#60;= 0.7.65, 0.8 &#60;= 0.8.37。请各位同学检查服务器nginx版本，尽快升级！!
补救措施在上传目录增加如下配置。
# This location block will prevent an attacker from exploiting
# this vulnerability using files in the &#8216;uploads&#8217; or &#8216;other_uploads&#8217; directory
location ~ ^/(uploads&#124;other_uploads)/.*.php$
{
deny all;
}
可以参见如下资料
https://nealpoole.com/blog/2011/07/possible-arbitrary-code-execution-with-null-bytes-php-and-old-versions-of-nginx/
]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/possible-arbitrary-code-execution-with-null-bytes-php-and-old-versions-of-nginx.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>国内快速debian安装源，最新6.0版</title>
		<link>http://jk.aiwaly.com/wp/debian-6-src.html</link>
		<comments>http://jk.aiwaly.com/wp/debian-6-src.html#comments</comments>
		<pubDate>Wed, 17 Aug 2011 06:31:05 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[开源软件]]></category>
		<category><![CDATA[服务器管理]]></category>

		<guid isPermaLink="false">http://jk.aiwaly.com/?p=3088</guid>
		<description><![CDATA[国内快速debian源 sources.list下载-最新6.0版（squeeze）更新

# &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
# 主源
# 必须，一般的包都从此获取。
# 香港主站
deb http://ftp.hk.debian.org/debian squeeze main contrib non-free
deb-src http://ftp.hk.debian.org/debian squeeze main contrib non-free
# 网易镜像
deb http://mirrors.163.com/debian squeeze main contrib non-free
deb-src http://mirrors.163.com/debian squeeze main contrib non-free
# 台湾主站
deb http://ftp.tw.debian.org/debian squeeze main contrib non-free
deb-src http://ftp.tw.debian.org/debian squeeze main contrib non-free
# 搜狐镜像
deb http://mirrors.sohu.com/debian squeeze main contrib non-free
deb-src http://mirrors.sohu.com/debian squeeze main contrib non-free
# &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;
# 计划更新
# 通常不必，发布小版本之前的测试库。该库包括所有的安全更新，有此则无需再设置安全
# 更新源。
# 香港主站
deb http://ftp.hk.debian.org/debian [...]]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/debian-6-src.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>201108朝阳公园</title>
		<link>http://jk.aiwaly.com/wp/201108-chaoyang-park.html</link>
		<comments>http://jk.aiwaly.com/wp/201108-chaoyang-park.html#comments</comments>
		<pubDate>Thu, 11 Aug 2011 02:20:52 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[快乐生活]]></category>

		<guid isPermaLink="false">http://jk.aiwaly.com/?p=3082</guid>
		<description><![CDATA[ 




  
 
  
 
 
 
  
 
  
 
  
 
  
 
  
]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/201108-chaoyang-park.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>20110809北京大雨过后</title>
		<link>http://jk.aiwaly.com/wp/20110809beijing-after-rain.html</link>
		<comments>http://jk.aiwaly.com/wp/20110809beijing-after-rain.html#comments</comments>
		<pubDate>Thu, 11 Aug 2011 01:36:43 +0000</pubDate>
		<dc:creator>月影鹏鹏</dc:creator>
				<category><![CDATA[快乐生活]]></category>

		<guid isPermaLink="false">http://jk.aiwaly.com/?p=3075</guid>
		<description><![CDATA[ 

 
]]></description>
		<wfw:commentRss>http://jk.aiwaly.com/wp/20110809beijing-after-rain.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

