<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss'><id>tag:blogger.com,1999:blog-1884717530661375217</id><updated>2009-10-13T10:09:41.245+08:00</updated><title type='text'>Colin Doug's Blog</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>25</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-3032338039068453900</id><published>2009-05-09T11:02:00.002+08:00</published><updated>2009-05-10T08:42:39.655+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='links'/><title type='text'>Links</title><content type='html'>&lt;a href="http://www.cl.cam.ac.uk/%7Erja14/econsec.html"&gt;&lt;br /&gt;http://www.cl.cam.ac.uk/~rja14/econsec.html&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.econ.nyu.edu/user/galed/papers.html"&gt;http://www.econ.nyu.edu/user/galed/papers.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;search&lt;br /&gt;&lt;a href="http://www.springerlink.com/business-and-economics/"&gt;http://www.springerlink.com/business-and-economics/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;online books&lt;br /&gt;&lt;a href="http://www.inforules.com/"&gt;http://www.inforules.com/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-3032338039068453900?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/3032338039068453900/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/05/links.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3032338039068453900'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3032338039068453900'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/05/links.html' title='Links'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-3099371372061106405</id><published>2009-05-04T13:00:00.003+08:00</published><updated>2009-05-04T13:12:44.534+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><title type='text'>mysql的表crashed后修复</title><content type='html'>mysql的表在大量访问和写入环境下有可能损坏，报错如下：&lt;br /&gt;&lt;blockquote&gt;&lt;span class="MsgBodyText"&gt;ERROR 144 (HY000): Table './snort/acid_event' is marked as crashed and last (automatic?) repair failed&lt;/span&gt;&lt;/blockquote&gt;解决办法是用myisamchk命令进行修复。&lt;br /&gt;在ubuntu8.10中，mysql的数据存放的路径在/var/lib/mysql,加入有个数据库叫snort，snort中有个表&lt;span class="MsgBodyText"&gt;acid_event损坏了&lt;/span&gt;,那么在/var/lib/mysql/snort/下有个文件叫&lt;span class="MsgBodyText"&gt;acid_event.MYI,修复办法是&lt;br /&gt;&lt;blockquote&gt;cd /var/lib/mysql/snort/&lt;br /&gt;myisamchk -c -r  &lt;span class="MsgBodyText"&gt;acid_event.MYI&lt;/span&gt;&lt;/blockquote&gt;&lt;/span&gt;错误产生原因，有人说是频繁查询和更新表造成的索引错误。还有说法为是MYSQL数据库因为某种原因而受到了损坏，如：数据库服务器突发性的断电、在提在数据库表提供服务时对表的原文件进行某种操作都有可 能导致MYSQL数据库表被损坏而无法读取数据。总之就是因为某些不可测的问题造成表的损坏。&lt;br /&gt;&lt;p&gt;当你试图修复一个被破坏的表的问题时，有三种修复类型。如果你得到一个错误信息指出一个临时文件不能建立，删除信息所指出的文件并再试一次--这通常是上一次修复操作遗留下来的。&lt;br /&gt;这三种修复方法如下所示：&lt;br /&gt;% myisamchk --recover --quick /path/to/tblName&lt;br /&gt;% myisamchk --recover /path/to/tblName&lt;br /&gt;% myisamchk --safe-recover /path/to/tblName &lt;/p&gt; &lt;p&gt;第一种是最快的，用来修复最普通的问题；而最后一种是最慢的，用来修复一些其它方法所不能修复的问题。&lt;/p&gt;如果上面的方法无法修复一个被损坏的表，在你放弃之前，你还可以试试下面这两个技巧：&lt;br /&gt;如果你怀疑表的索引文件(*.MYI)发生了不可修 复的错误，甚至是丢失了这个文件，你可以使用数据文件(*.MYD)和数据格式文件(*.frm)重新生成它。首先制作一个数据文件 (tblName.MYD)的拷贝。重启你的MySQL服务并连接到这个服务上，使用下面的命令删除表的内容：&lt;br /&gt;mysql&gt; DELETE FROM tblName;&lt;br /&gt;在 删除表的内容的同时，会建立一个新的索引文件。退出登录并重新关闭服务，然后用你刚才保存的数据文件(tblName.MYD)覆盖新的(空)数据文件。 最后，使用myisamchk执行标准的修复(上面的第二种方法)，根据表的数据的内容和表的格式文件重新生成索引数据。 &lt;p&gt;如果你的表的格式文件(tblName.frm)丢失了或者是发生了不可修复的错误，但是你清楚如何使用相应的CREATE TABLE语句来重新生成这张表，你可以重新生成一个新的.frm文件并和你的数据文件和索引文件(如果索引文件有问题，使用上面的方法重建一个新的)一 起使用。首先制作一个数据和索引文件的拷贝，然后删除原来的文件(删除数据目录下有关这个表的所有记录)。&lt;/p&gt; &lt;p&gt;启动MySQL服务并使用当初的CREATE TABLE文件建立一个新的表。新的.frm文件应该可以正常工作了，但是最好你还是执行一下标准的修复(上面的第二种方法)。&lt;/p&gt;快速检查和修复表：&lt;br /&gt;shell&gt; myisamchk --silent --force --fast --update-state \&lt;br /&gt;          -O key_buffer=64M -O sort_buffer=64M \&lt;br /&gt;          -O read_buffer=1M -O write_buffer=1M \&lt;br /&gt;          /path/to/datadir/*/*.MYI&lt;br /&gt;&lt;br /&gt;参看：http://www.dlcom.org/zhanzhang/jy/20080801/080P1236022008.html&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-3099371372061106405?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/3099371372061106405/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/05/mysqlcrashed.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3099371372061106405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3099371372061106405'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/05/mysqlcrashed.html' title='mysql的表crashed后修复'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-125281550742102408</id><published>2009-04-29T12:46:00.002+08:00</published><updated>2009-04-29T13:00:29.794+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='search'/><title type='text'>Google搜索技巧</title><content type='html'>搜Mp3&lt;br /&gt;?intitle:index.of? mp3  歌手名&lt;br /&gt;&lt;br /&gt;搜动画&lt;br /&gt;?intitle:index.of? swf&lt;br /&gt;其他类推&lt;br /&gt;&lt;br /&gt;"parent directory " /appz/ -xxx -html -htm -php -shtml -opendivx -md5 -md5sums&lt;br /&gt;&lt;br /&gt;"parent directory " DVDRip -xxx -html -htm -php -shtml -opendivx -md5 -md5sums&lt;br /&gt;&lt;br /&gt;"parent directory "Xvid -xxx -html -htm -php -shtml -opendivx -md5 -md5sums&lt;br /&gt;&lt;br /&gt;"parent directory " Gamez -xxx -html -htm -php -shtml -opendivx -md5 -md5sums&lt;br /&gt;&lt;br /&gt;"parent directory " MP3 -xxx -html -htm -php -shtml -opendivx -md5 -md5sums&lt;br /&gt;&lt;br /&gt;"parent directory " Name of Singer or album -xxx -html -htm -php -shtml -opendivx -md5 -md5sums&lt;br /&gt;&lt;br /&gt;Notice that i am only changing the word after the parent directory, change it to what you want and you will get a lot of stuff.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-125281550742102408?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/125281550742102408/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/google.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/125281550742102408'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/125281550742102408'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/google.html' title='Google搜索技巧'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-8259145877486319575</id><published>2009-04-29T10:22:00.002+08:00</published><updated>2009-04-29T10:27:35.766+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='english'/><title type='text'>mess with the best，die like the rest</title><content type='html'>据说是美国海军陆战队的口号.&lt;br /&gt;mess with -- 干涉&lt;br /&gt;the best -- (自称)&lt;br /&gt;mess with the best -- 敢与老子作对&lt;br /&gt;die like the rest -- 死无葬身之地(跟他们一样下场)&lt;br /&gt;完整的全文应该是: If you mess with the best, you will die like the rest.&lt;br /&gt;//以上解释, 不敢肯定. 最好有上下文, 或者请教权威出处.&lt;br /&gt;&lt;br /&gt;其他翻译有:&lt;br /&gt;与强者同行，无惧生死。&lt;br /&gt;要做事，就找最优秀的一起干；要死，也一定要选择从容的离开。&lt;br /&gt;跟我叫板，你死定了。&lt;br /&gt;顺我者昌,逆我者亡。&lt;br /&gt;&lt;br /&gt;尚无法确定真确的意思和用法.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-8259145877486319575?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/8259145877486319575/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/mess-with-bestdie-like-rest.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8259145877486319575'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8259145877486319575'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/mess-with-bestdie-like-rest.html' title='mess with the best，die like the rest'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-3415979148229291297</id><published>2009-04-27T14:58:00.006+08:00</published><updated>2009-04-27T15:19:51.458+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='web attack countermeasures'/><title type='text'>修改默认的HTTP Response Header</title><content type='html'>黑客通常通过获取一个HTTP Response，然后解析出HTTP Response Header来知道对方用的是什么web 服务器软件，如下：&lt;br /&gt;&lt;blockquote&gt;&lt;pre&gt;HTTP/1.1 200 OK&lt;br /&gt;Server: Microsoft-IIS/5.0&lt;br /&gt;Date: Thu, 07 Jul 2005 13:08:16 GMT&lt;br /&gt;Content-Length: 1270&lt;/pre&gt;&lt;/blockquote&gt;对于IIS来说有一个工具（URLScan）可以用来修改这个HTTP Response Header，让黑客得到假的Header信息，URLScan的地址：&lt;a href="http://learn.iis.net/page.aspx/473/using-urlscan"&gt;http://learn.iis.net/page.aspx/473/using-urlscan&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;对于Tomcat,Header一般会暴露如下信息:&lt;br /&gt;Server: Apache-Coyote/1.1&lt;br /&gt;修改是在conf/server.xml,在Connector 元素中设置server属性即可。如下：&lt;br /&gt;&lt;connector server="test"&gt;&lt;br /&gt;&lt;connector server="test"&gt;&lt;br /&gt;对于apache呢？&lt;br /&gt;只要在httpd.conf中配上如下两个参数：&lt;br /&gt;&lt;blockquote&gt; &lt;p&gt;ServerSignature Off&lt;/p&gt;&lt;p&gt;ServerTokens Prod &lt;/p&gt;&lt;/blockquote&gt;&lt;/connector&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-3415979148229291297?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/3415979148229291297/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/http-response-header.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3415979148229291297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3415979148229291297'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/http-response-header.html' title='修改默认的HTTP Response Header'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-8789950659668525289</id><published>2009-04-26T16:31:00.001+08:00</published><updated>2009-04-26T16:33:25.905+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='english'/><title type='text'>Go figure</title><content type='html'>&lt;p style="margin: 0px 3px 15px;"&gt;&lt;span style="font-size: 12pt;font-size:78%;" &gt;Example 1:&lt;/span&gt;&lt;span style="font-size: 12pt;font-size:78%;" &gt;Ironically, when asked about improvement, both parties indicated&lt;br /&gt;that they thought communication should be more intense. Go figure!&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin: 0px 3px 15px;"&gt;&lt;span style="font-size: 12pt;font-size:78%;" &gt;Example 2:  The prepositions are strangely the last thing almost all the children learn in a  language. Go figure!&lt;/span&gt;&lt;/p&gt; &lt;p style="margin: 0px 3px 15px;"&gt;&lt;span style="font-size: 12pt;font-size:78%;" &gt;Example 3:  Women and children are the first targets of war. Go figure.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin: 0px 3px 15px;"&gt;&lt;span style="font-size: 12pt;font-size:78%;" &gt;Example 4:  Go figure: Weight loss is one of the worst reasons for exercise.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin: 0px 3px 15px;"&gt;&lt;span style="font-size: 12pt;font-size:78%;" &gt;Now, if  your definitions of "go figure" run along the lines of "wow, isn't that right?"  or "who'd have thought?" or "how come", they're all correct.&lt;/span&gt;&lt;/p&gt; &lt;p style="margin: 0px 3px 15px;"&gt;&lt;span style="font-size: 12pt;font-size:78%;" &gt;Think of  "go figure" as short for "go and figure it out for yourself". It is used more  like an exclamation, though, punctuating an unexpected fact. Oh yeah, that's  right.&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-8789950659668525289?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/8789950659668525289/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/go-figure.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8789950659668525289'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8789950659668525289'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/go-figure.html' title='Go figure'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-6473317972148250275</id><published>2009-04-25T09:54:00.007+08:00</published><updated>2009-04-26T17:40:26.637+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='大事记'/><title type='text'>大事记-中国海军60周年最大规模海上阅兵</title><content type='html'>2009年4月23日，一场展示各国海军共同构建和谐海洋决心的海上大阅兵，在青岛附近的黄海海域展开。这是中国第一次举办多国海军检阅活动，也是中国海军历史上最大规模的海上阅兵，来自14个国家的21艘舰艇同时接受检阅。胡锦涛主席亲临检阅。 &lt;p&gt;14时20分，《分列式进行曲》的激昂旋律在“石家庄”号阅兵舰上响起。阅兵舰舰艏左前方，由25艘潜艇、驱逐舰、护卫舰和导弹快艇组成的中国海军受阅舰艇编队劈波而来。&lt;/p&gt; &lt;p&gt;首先接受检阅的是“长征6”号核动力潜艇。在它的带领下，曾创造潜行时间最长世界纪录的“长征3”号核动力潜艇和“长城218”号、“长城177”号常规动力潜艇以水面航行状态逐一通过阅兵舰。&lt;/p&gt;&lt;p&gt;新华社&lt;/p&gt;&lt;p&gt;海上阅兵原定上午9：00开始，并且由CCTV直播，但是忽然推迟到下午2：00开始，直播也被取消，上午胡主席进行了会见&lt;span&gt;29国海军代表团团长活动。&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://news.xinhuanet.com/photo/2009-04/23/xin_06204062314035003276581.jpg"&gt;&lt;img style="cursor: pointer; width: 600px; height: 447px;" src="http://news.xinhuanet.com/photo/2009-04/23/xin_06204062314035003276581.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;4月23日上午，国家主席、中央军委主席胡锦涛在青岛会见应邀前来参加中国人民解放军海军成立60周年庆典活动的29国海军代表团团长，代表中国政府和军队向参加庆典活动的各国海军官兵表示热烈欢迎。  新华社记者王建民摄&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://news.xinhuanet.com/photo/2009-04/23/xin_02204062317294212793750.jpg"&gt;&lt;img style="cursor: pointer; width: 600px; height: 398px;" src="http://news.xinhuanet.com/photo/2009-04/23/xin_02204062317294212793750.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;4月23日下午，中共中央总书记、国家主席、中央军委主席胡锦涛在青岛出席庆祝人民海军成立60周年海上阅兵活动。这是胡锦涛主席热情地向受阅舰艇官兵挥手致意。新华社记者王建民摄&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://news.xinhuanet.com/politics/2009-04/24/xin_262040624235556218731.jpg"&gt;&lt;img style="cursor: pointer; width: 600px; height: 442px;" src="http://news.xinhuanet.com/politics/2009-04/24/xin_262040624235556218731.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;  4月24日晚，在庆祝中国人民解放军海军成立60周年之际，中共中央总书记、国家主席、中央军委主席胡锦涛在北京亲切会见海军老同志和英模代表。这是胡锦涛和战斗英雄麦贤得亲切握手交谈。新华社记者  查春明 摄&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_u3ytwaQErxM/SfJz3LazbRI/AAAAAAAAAAs/14SZjmm1y4Y/s1600-h/ChinaNavy.png"&gt;&lt;img style="cursor: pointer; width: 796px; height: 334px;" src="http://4.bp.blogspot.com/_u3ytwaQErxM/SfJz3LazbRI/AAAAAAAAAAs/14SZjmm1y4Y/s400/ChinaNavy.png" alt="" id="BLOGGER_PHOTO_ID_5328448700927929618" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://news.ifeng.com/mil/special/haijun60years/"&gt;http://news.ifeng.com/mil/special/haijun60years/&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-6473317972148250275?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/6473317972148250275/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/60.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/6473317972148250275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/6473317972148250275'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/60.html' title='大事记-中国海军60周年最大规模海上阅兵'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_u3ytwaQErxM/SfJz3LazbRI/AAAAAAAAAAs/14SZjmm1y4Y/s72-c/ChinaNavy.png' height='72' width='72'/><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-7758572207496551024</id><published>2009-04-25T09:47:00.004+08:00</published><updated>2009-04-26T16:34:09.673+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='throw on'/><category scheme='http://www.blogger.com/atom/ns#' term='english'/><title type='text'>throw on相关词组和用法</title><content type='html'>throw on&lt;br /&gt;v.匆匆穿上&lt;br /&gt;eg: You jump out of bed, throw on a baseball cap and some clothes, and rush down to  your workplace.&lt;br /&gt;&lt;br /&gt;throw on the defensive  （迫使采取守势）&lt;br /&gt;throw one's bread upon the waters  （v. 行善）&lt;br /&gt;throw one's hat in the ring （ v. 宣布加入战斗）&lt;br /&gt;throw one's sword into the scale  （v. 用武力解决）&lt;br /&gt;throw one's weight about  （v. 仗势欺人）&lt;br /&gt;throw oneself on （v.依赖）&lt;br /&gt;throw oneself upon the country （要求陪审团审判）&lt;br /&gt;throw oneself at  （v.向...猛扑过去, 拼命讨好）&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-7758572207496551024?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/7758572207496551024/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/throw-on.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/7758572207496551024'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/7758572207496551024'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/throw-on.html' title='throw on相关词组和用法'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-8870014462322385318</id><published>2009-04-22T17:05:00.003+08:00</published><updated>2009-04-22T17:20:27.794+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='news'/><title type='text'>甲骨文74亿美元收购Sun</title><content type='html'>甲骨文周一（09-4-20）宣布，将以每股9.5美元的价格收购Sun，这一价格比Sun上周五收盘价高出了42%。包括Sun的现金和债务在内，该交易的价值为74亿美元。&lt;br /&gt;&lt;br /&gt;如果此次交易顺利达成，则Sun将成为甲骨文自2005年1月以来的第52个收购对象。其中最大的几次并购分别是：2005年初，甲骨文以103亿美元收购全球第二大客户关系管理软件厂家仁科(PeopleSoft)；2007年以33亿美元收购商业情报软件厂家海波龙(Hyperion)；2008年初，以85亿美元收购中间件巨头BEA。 &lt;p&gt;而甲骨文的收入也迅速膨胀。2004财年甲骨文总收入102亿美元，实现净利润27亿美元，2008财年总收入224亿美元，实现净利润55亿美元。&lt;/p&gt;&lt;p&gt;Sun今年1月份发布第二财季财报时表示，软件业务营收增长了21%，增幅似乎不小，但软件业务年营收仅为6亿美元。分析师预计今年Sun营收将达到124亿美元。Sun从本质上来说是一家硬件公司，这也是分析师预计其本财年将会亏损的原因。Sun各项业务并入甲骨文后，甲骨文将有能力向全球企业用户提供包括硬件、软件和技术支持在内的一店式整体解决方案。&lt;/p&gt;立此存照。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-8870014462322385318?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/8870014462322385318/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/74sun.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8870014462322385318'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8870014462322385318'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/74sun.html' title='甲骨文74亿美元收购Sun'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-928917758557920966</id><published>2009-04-22T15:10:00.012+08:00</published><updated>2009-04-22T17:40:47.899+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='LVM'/><title type='text'>Lenny中用LVM调整磁盘卷大小</title><content type='html'>最近报/root分区磁盘不足，有幸是在安装系统时采用了LVM,否则问题就难解决了。&lt;br /&gt;最初的分区：&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_u3ytwaQErxM/Se7DxJLBYkI/AAAAAAAAAAc/7xUU-4TJrCQ/s1600-h/LennyLVM01.png"&gt;&lt;img style="cursor: pointer; width: 444px; height: 146px;" src="http://2.bp.blogspot.com/_u3ytwaQErxM/Se7DxJLBYkI/AAAAAAAAAAc/7xUU-4TJrCQ/s320/LennyLVM01.png" alt="" id="BLOGGER_PHOTO_ID_5327410658269028930" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;现在要压缩myserver-home ,增加myserver-root。&lt;br /&gt;&lt;br /&gt;查看物理卷&lt;br /&gt;#pvdisplay&lt;br /&gt;略……&lt;br /&gt;&lt;br /&gt;查看卷组&lt;br /&gt;#vgdisplay&lt;br /&gt;略……&lt;br /&gt;&lt;br /&gt;查看逻辑卷&lt;br /&gt;#lvdisplay&lt;br /&gt;&lt;blockquote&gt;--- Logical volume ---&lt;br /&gt;LV Name                /dev/myserver/root&lt;br /&gt;VG Name                myserver&lt;br /&gt;LV UUID                g8bztp-lrp3-XGhk-O6PB-ctZn-Yl5M-Dr247z&lt;br /&gt;LV Write Access        read/write&lt;br /&gt;LV Status              available&lt;br /&gt;# open                 1&lt;br /&gt;LV Size                6.52 GB&lt;br /&gt;Current LE             1668&lt;br /&gt;Segments               1&lt;br /&gt;Allocation             inherit&lt;br /&gt;Read ahead sectors     auto&lt;br /&gt;- currently set to     256&lt;br /&gt;Block device           254:0&lt;br /&gt;&lt;br /&gt;--- Logical volume ---&lt;br /&gt;LV Name                /dev/myserver/swap_1&lt;br /&gt;VG Name                myserver&lt;br /&gt;LV UUID                fsoPym-loXw-NfQW-3Uff-jMtM-1N1q-NGwSIr&lt;br /&gt;LV Write Access        read/write&lt;br /&gt;LV Status              available&lt;br /&gt;# open                 1&lt;br /&gt;LV Size                5.63 GB&lt;br /&gt;Current LE             1441&lt;br /&gt;Segments               1&lt;br /&gt;Allocation             inherit&lt;br /&gt;Read ahead sectors     auto&lt;br /&gt;- currently set to     256&lt;br /&gt;Block device           254:1&lt;br /&gt;&lt;br /&gt;--- Logical volume ---&lt;br /&gt;LV Name                /dev/myserver/home&lt;br /&gt;VG Name               myserver&lt;br /&gt;LV UUID                2fdbfk-sc9H-bKHn-Po5s-8q38-67Di-lFKZXz&lt;br /&gt;LV Write Access        read/write&lt;br /&gt;LV Status              available&lt;br /&gt;# open                 1&lt;br /&gt;LV Size                293.00 GB&lt;br /&gt;Current LE             12800&lt;br /&gt;Segments               1&lt;br /&gt;Allocation             inherit&lt;br /&gt;Read ahead sectors     auto&lt;br /&gt;- currently set to     256&lt;br /&gt;Block device           254:2&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;确定要变更的两个逻辑卷名：&lt;br /&gt;/dev/myserver/home   挂载点是 /home&lt;br /&gt;/dev/myserver/root     挂载点是 /&lt;br /&gt;&lt;br /&gt;(一)减少/dev/myserver/home&lt;br /&gt;&lt;br /&gt;#umount /home&lt;br /&gt;&lt;br /&gt;#mke2fs -n /dev/myserver/home&lt;br /&gt;&lt;blockquote&gt;mke2fs 1.41.3 (12-Oct-2008)&lt;br /&gt;Filesystem label=&lt;br /&gt;OS type: Linux&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Block size=4096&lt;/span&gt; (log=2)&lt;br /&gt;Fragment size=4096 (log=2)&lt;br /&gt;18563072 inodes, &lt;span style="color: rgb(255, 0, 0);"&gt;74249216 blocks&lt;/span&gt;&lt;br /&gt;3712460 blocks (5.00%) reserved for the super user&lt;br /&gt;First data block=0&lt;br /&gt;Maximum filesystem blocks=4294967296&lt;br /&gt;2266 block groups&lt;br /&gt;32768 blocks per group, 32768 fragments per group&lt;br /&gt;8192 inodes per group&lt;br /&gt;Superblock backups stored on blocks:&lt;br /&gt;32768, 98304, 163840, 229376, 294912, 819200, 884736, 1605632, 2654208,&lt;br /&gt;4096000, 7962624, 11239424, 20480000, 23887872, 71663616&lt;br /&gt;&lt;/blockquote&gt;&lt;br /&gt;执行这个命令是要计算调整块的最终大小。我要将/dev/myserver/home减少到50G,而将腾出的空间给/dev/myserver/root.&lt;br /&gt;上面的数据显示，每块大小为&lt;span style="color: rgb(255, 0, 0);"&gt;4096&lt;/span&gt;Bytes ，总共有&lt;span style="color: rgb(255, 0, 0);"&gt;74249216&lt;/span&gt;块。&lt;br /&gt;50G=53687091200 Bytes =13107200  blocks&lt;br /&gt;减少的块数=74249216 - 13107200=61142016&lt;br /&gt;减少的61142016块= 238836M&lt;br /&gt;&lt;br /&gt;#resize2fs -f /dev/myserver/home 13107200&lt;br /&gt;#lvreduce -L-238836M /dev/myserver/home&lt;br /&gt;#mount /home&lt;br /&gt;&lt;br /&gt;检查是否减少了&lt;br /&gt;#df -lh&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;(二)扩展/dev/myserver/root 的大小&lt;br /&gt;&lt;br /&gt;#lvextend -L+238836M /dev/myserver/root&lt;br /&gt;注意，这里在其他某些linux系统本可以执行ext2online 来实现，但是Lenny中没有这个命令，本应该用&lt;br /&gt;&lt;blockquote&gt;# umount /dev/myserver/root&lt;br /&gt;# resize2fs /dev/myserver/root&lt;br /&gt;# mount /dev/myserver/root /&lt;/blockquote&gt;但是因为 /dev/myserver/root在使用中，无法执行umount ，所以直接执行如下命令即可：&lt;br /&gt;&lt;br /&gt;#resize2fs  /dev/myserver/root&lt;br /&gt;&lt;br /&gt;检查是否增加了&lt;br /&gt;#df -lh&lt;br /&gt;&lt;br /&gt;完毕！&lt;br /&gt;&lt;br /&gt;参考：&lt;br /&gt;&lt;a href="http://www.ownlinux.cn/2009/03/26/debian-linux-lvm/"&gt;http://www.ownlinux.cn/2009/03/26/debian-linux-lvm/&lt;/a&gt;&lt;br /&gt;&lt;a href="http://www.linuxfans.org/cms/?action-viewnews-itemid-3155"&gt;lvm(逻辑卷管理器)的介绍和常用功能流程实验&lt;/a&gt;&lt;br /&gt;&lt;a href="http://linux.chinaunix.net/techdoc/beginner/2008/11/22/1047775.shtml"&gt;LVM使用手册&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-928917758557920966?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/928917758557920966/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/lennylvm.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/928917758557920966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/928917758557920966'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/lennylvm.html' title='Lenny中用LVM调整磁盘卷大小'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_u3ytwaQErxM/Se7DxJLBYkI/AAAAAAAAAAc/7xUU-4TJrCQ/s72-c/LennyLVM01.png' height='72' width='72'/><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-3707049593951368554</id><published>2009-04-20T10:54:00.002+08:00</published><updated>2009-04-20T10:58:47.880+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Forensic'/><title type='text'>Locard's Exchange Principle</title><content type='html'>&lt;p&gt;On a live system, changes will occur simply due to the passage of time, as processes work, as data is saved and deleted, as network connections time out or are created, and so on. Some changes happen when the system just sits there and runs. Changes also occur as the investigator&lt;br /&gt;runs programs on the system to collect information, volatile or otherwise. Running a program causes information to be loaded into physical memory, and in doing so, physical memory used by other, already running processes may be written to the page file. As the investigator collects information and sends it off the system, new network connections will be created. All these changes can be collectively explained by Locard’s Exchange Principle.&lt;/p&gt;&lt;p&gt;In the early 20th century, Dr. Edmond Locard’s work in the area of forensic science&lt;br /&gt;and crime scene reconstruction became known as Locard’s Exchange Principle.&lt;br /&gt;This principle states, in essence, that when two objects come into contact, material is&lt;br /&gt;exchanged or transferred between them. If you watch the popular CSI crime show&lt;br /&gt;on TV, you’ll invariably hear one of the crime scene investigators refer to possible&lt;br /&gt;transfer.This usually occurs after a car hits something or when an investigator examines&lt;br /&gt;a body and locates material that seems out of place.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Edmond Locard (1877–1966) studied law at the Institute of Legal Medicine and  worked subsequently as an assistant to the forensic pioneer Alexandre Lacassagne  prior to directing the forensic laboratory in Lyon, France. Locard's techniques  proved useful to the French Secret Service during World War I (1914–1918), when  Locard was able to determine where soldiers and prisoners had died by examining  the stains on their uniforms.&lt;/p&gt; &lt;p&gt;Like Hans Gross and Alphonse Bertillon before him, Locard advocated the  application of scientific methods and logic to criminal investigation and &lt;a href="http://www.enotes.com/forensic-science/identification"&gt;identification&lt;/a&gt;.  Locard's work formed the basis for what is widely regarded as a cornerstone of  the forensic sciences, Locard's Exchange Principle, which states that with  contact between two items, there will be an exchange. It was Locard's assertion  that when any person comes into contact with an object or another person, a  cross-transfer of &lt;a href="http://www.enotes.com/forensic-science/physical-evidence"&gt;physical  evidence&lt;/a&gt; occurs. By recognizing, documenting, and examining the nature and  extent of this evidentiary exchange, Locard observed that criminals could be  associated with particular locations, items of &lt;a href="http://www.enotes.com/forensic-science/evidence"&gt;evidence&lt;/a&gt;, and  victims. The detection of the exchanged materials is interpreted to mean that  the two objects were in contact. This is the cause and effect principle  reversed; the effect is observed and the cause is concluded.&lt;/p&gt; &lt;p&gt;Crime reconstruction involves examining the available physical evidence,  those materials left at or removed from the scene, victim, or offender, for  example hairs, &lt;a href="http://www.enotes.com/forensic-science/fibers"&gt;fibers&lt;/a&gt;, and soil, as  well as fingerprints, footprints, genetic markers (&lt;a href="http://www.enotes.com/forensic-science/dna"&gt;DNA&lt;/a&gt;), or handwriting.  These forensically established contacts are then considered in light of  available and reliable witness, the victim, and a suspect's statements. From  this, theories regarding the circumstances of the crime can be generated and  falsified by logically applying the information of the established facts of the  case.&lt;/p&gt; &lt;p&gt;Locard's publications make no mention of an "exchange principle," although he  did make the observation &lt;i&gt;"Il est impossible au malfaiteur d'agir avec  l'intensité que suppose l'action criminelle sans laisser des traces de son  passage."&lt;/i&gt; (It is impossible for a criminal to act, especially considering  the intensity of a crime, without leaving traces of this presence.). The term  "principle of exchange" first appears in &lt;i&gt;Police and Crime-Detection,&lt;/i&gt; in  1940, and was adapted from Locard's observations.&lt;/p&gt;&lt;p&gt;source：&lt;a href="http://www.enotes.com/forensic-science/locard-s-exchange-principle"&gt;http://www.enotes.com/forensic-science/locard-s-exchange-principle&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-3707049593951368554?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/3707049593951368554/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/locards-exchange-principle.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3707049593951368554'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3707049593951368554'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/locards-exchange-principle.html' title='Locard&apos;s Exchange Principle'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-3855699168264311514</id><published>2009-04-19T15:25:00.006+08:00</published><updated>2009-04-19T15:51:06.751+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='排列组合'/><title type='text'>排列组合</title><content type='html'>&lt;span style="font-weight: bold;"&gt;分 类 计 数 原 理&lt;/span&gt;&lt;br /&gt;做一件事，完成它有n类不同的办法。第一类办法中有m1种方法，第二类办法中有m2种方法……，第n类办法中有mn种方法，则完成这件事共有：N=m1+m2+…+mn种方法。&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;分 步 计 数 原理&lt;/span&gt;&lt;br /&gt;做一件事，完成它需要分成n个步骤。第一步中有m1种方法，第二步中有m2种方法……，第n步中有mn种方法，则完成这件事共有：N=m1 m2 … mn种方法。&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-weight: bold;"&gt;处理实际问题时，要善于区分是用分类计数原理还是分步计数原理，这两个原理的标志是“分类”还是“分步骤”。&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;排列 &lt;/span&gt;：从n个不同的元素中取m(m≤n)个元素，按照一定的顺序排成一排，叫做从n个不同的元素中取m个元素的排列。&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;组合&lt;/span&gt;：从n个不同的元素中，任取m(m≤n)个元素并成一组，叫做从n个不同的元素中取m个元素的组合。&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;排列数&lt;/span&gt;：从n个不同的元素中取m(m≤n)个元素的所有排列的个数，叫做从n个不同元素中取出m个元素的排列数，记为Pnm&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;组合数&lt;/span&gt;：从n个不同的元素中取m(m≤n)个元素的所有组合的个数，叫做从n个不同元素中取出m个元素的组合数，记为Cnm&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;选排列数&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.12999.com/gs/12/indexp1.gif"&gt;&lt;img style="cursor: pointer; width: 125px; height: 124px;" src="http://www.12999.com/gs/12/indexp1.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;全排列数&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.12999.com/gs/12/indexp3.gif"&gt;&lt;img style="cursor: pointer; width: 84px; height: 84px;" src="http://www.12999.com/gs/12/indexp3.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;组合公式&lt;/span&gt;：&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.12999.com/gs/12/indexp2.gif"&gt;&lt;img style="cursor: pointer; width: 239px; height: 124px;" src="http://www.12999.com/gs/12/indexp2.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;二项式定理&lt;/span&gt;：&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.12999.com/gs/12/indexp4.gif"&gt;&lt;img style="cursor: pointer; width: 367px; height: 113px;" src="http://www.12999.com/gs/12/indexp4.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;(1)项数：n+1项&lt;br /&gt;(2)指数：各项中的a的指数由n起依次减少1，直至0为止；b的指数从0起依次增加1，直至n为止。而每项中a与b的指数之和均等于n 。&lt;br /&gt;(3)二项式系数：二项式系数具有对称性，与两端等离的两项的二项式系数相等。&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;二项展开式的性质&lt;/span&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_u3ytwaQErxM/SerW_nz9_zI/AAAAAAAAAAU/01s7L859wBc/s1600-h/erxiangshi.gif"&gt;&lt;img style="cursor: pointer; width: 320px; height: 186px;" src="http://4.bp.blogspot.com/_u3ytwaQErxM/SerW_nz9_zI/AAAAAAAAAAU/01s7L859wBc/s320/erxiangshi.gif" alt="" id="BLOGGER_PHOTO_ID_5326305897826090802" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-3855699168264311514?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/3855699168264311514/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/blog-post.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3855699168264311514'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/3855699168264311514'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/blog-post.html' title='排列组合'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_u3ytwaQErxM/SerW_nz9_zI/AAAAAAAAAAU/01s7L859wBc/s72-c/erxiangshi.gif' height='72' width='72'/><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-6915144141417013613</id><published>2009-04-19T11:31:00.003+08:00</published><updated>2009-04-19T11:33:26.807+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='R'/><title type='text'>Ubuntu8安装统计软件R</title><content type='html'>1. 在 /etc/apt/sources.list 中添加：&lt;br /&gt;deb http://mirrors.geoexpat.com/cran/bin/linux/ubuntu intrepid/&lt;br /&gt;其他镜像地址列表：http://mirrors.geoexpat.com/cran/&lt;br /&gt;&lt;br /&gt;2.安装&lt;br /&gt;sudo apt-get update&lt;br /&gt;sudo apt-get install r-base&lt;br /&gt;&lt;br /&gt;3.如果想从源码编译安装，则需要r-base-dev&lt;br /&gt;sudo apt-get install r-base-dev&lt;br /&gt;&lt;br /&gt;更多信息：&lt;a href="http://www.r-project.org/"&gt;http://www.r-project.org/&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-6915144141417013613?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/6915144141417013613/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/ubuntu8r.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/6915144141417013613'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/6915144141417013613'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/ubuntu8r.html' title='Ubuntu8安装统计软件R'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-2893295918597535364</id><published>2009-04-19T10:33:00.001+08:00</published><updated>2009-04-19T10:35:03.861+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ETL'/><category scheme='http://www.blogger.com/atom/ns#' term='BI'/><title type='text'>Open Source ETL (Extraction, Transform, Load) Written in Java[收藏]</title><content type='html'>&lt;ul&gt;&lt;li&gt;&lt;a href="http://octopus.objectweb.org/"&gt;Octopus&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Octopus is a simple Java-based  Extraction, Transform, and Loading (ETL) tool. It may connect to any JDBC data  sources and perform transformations defined in an XML file. A loadjob-generator  is provided to generate Octopus loadjob skeletons from an existing database.  Many different types of databases can be mixed (MSSQL, Oracle, DB2, QED,  JDBC-ODBC with Excel and Access, MySQL, CSV-files, XML-files,...) Three special  JDBC drivers come with Octopus to support JDBC access to CSV-files (CSV-JDBC),  MS-SQL (FreeTDS) and XML. Octopus supports Ant and JUnit to create a database /  tables and extract/load data during a build or test process.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://software.xineo.net/xil.jspx"&gt;Xineo&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Xineo XIL (XML Import Langage)  defines an XML language for transforming various record-based data sources into  XML documents, and provides a fully functional XIL processing implementation.  This implementation has built-in support for relational (via JDBC) and  structured text (like CSV) sources, and is extensible thanks to its public API,  allowing dynamic integration of new data source implementations. It also  provides an abstraction over output format, and the Xineo implementation can  generate output documents into stream or as DOM document. Xineo's implementation  built-in data sources include : Relational data via JDBC and Structured text via  regular expressions.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://cloveretl.berlios.de/"&gt;CloverETL&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - CloverETL Features include  internally represents all characters as 16bit, converts from most common  character sets (ASCII, UTF-8, ISO-8859-1,ISO-8859-2, etc), works with delimited  or fix-length data records, data records (fields) are internally handled as a  variable-length data structures, fields can have default values, handles NULL  values, cooperates with any database with JDBC driver, transforming of the data  is performed by independent components, each running as an independent thread,  framework implements so called pipeline-parallelism, metadata describing  structure of data files (records) can be read from XML and transformation graphs  can be read from XML  &lt;/li&gt;&lt;li&gt;&lt;a href="http://sourceforge.net/projects/babeldoc"&gt;BabelDoc&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - BabelDoc is a Java framework  for processing documents in linear stages, it tracks documents and can  reintroduce documents back into into the pipelines, it is monitorable and  configurable through a number of interfaces, it can be run standalone, in server  processes or in application servers, it can be reconfigured dynamically by text  files and database tables.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://joost.sourceforge.net/"&gt;Joost&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Java implementation of the  Streaming Transformations for XML (STX) language. Streaming Transformations for  XML (STX) is a one-pass transformation language for XML documents. STX is  intended as a high-speed, low memory consumption alternative to XSLT. Since it  does not require the construction of an in-memory tree, it is suitable for use  in resource constrained scenarios.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://sourceforge.net/projects/cb2xml"&gt;CB2XML &lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt;- CB2XML (CopyBook to XML) is a  COBOL CopyBook to XML converter written in Java and based on the SableCC parser  generator. This project includes utilities to convert an XML instance file into  its COBOL copybook equivalent string buffer and vice versa. You can find  additional information about supporting Jurasic systems &lt;a href="http://jymengant.ifrance.com/jymengant/jurassicFAQ.html"&gt;here&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt;.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://sourceforge.net/projects/mec-eagle/"&gt;mec-eagle&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - JAVA XML XSL B2B integration  software:SWING based GUI,an EDI to XML, XML to XML and XML to EDI  converter,client-server architecture.All EDI standards are  supported:EDIFACT,ANSI X.12,SAP IDOC,XCBL,RosettaNet,Biztalk.Included  comm:SMTP,FTP,HTTP(S),PGP/MIME  &lt;/li&gt;&lt;li&gt;&lt;a href="http://transmorpher.inrialpes.fr/"&gt;Transmorpher&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Transmorpher is an environment  for processing generic transformations on XML documents. It aims at  complementing XSLT in order to:  &lt;ul compact="compact"&gt;&lt;li&gt;describe easily simple transformations (removing elements, replacing tag and  attribute names, concatenating documents...);  &lt;/li&gt;&lt;li&gt;allowing regular expression transformations on the content;  &lt;/li&gt;&lt;li&gt;composing transformations by linking their (multiple) output to input;  &lt;/li&gt;&lt;li&gt;iterating transformations, sometimes until saturation (closure operation);  &lt;/li&gt;&lt;li&gt;integrating external transformations. &lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://xpipe.sourceforge.net/Articles/Miscellaneous/fog0000000018.html"&gt;XPipe  &lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt;- XPipe is an approach to  manageable, scaleable, robust XML processing based on the assembly line  principle, common in many areas of manufacturing. XPipe as being an attempt to  take what was great about the original Unix pipe idea and apply it for  structured information streams based on XML.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.datasift.org/"&gt;DataSift&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - DataSift is a powerful java  data validation and transformation framework, aimed at enterprise software  development, which provides developers with an extensible architecture they can  fully adapt. Almost every feature in it can be configured and extended in some  way.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.xephyrus.com/flume/flume-intro.Prlx"&gt;Xephyrus Flume&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Flume is a component pipeline  engine. It allows you to chain together multiple workers into a pipeline  mechanism. The intention of Flume is that each of the workers would provide  access to a different type of technology. For example, a pipeline could consist  of a Jython script worker followed by a BeanShell script worker followed by an  XSLT worker.  &lt;/li&gt;&lt;li&gt;&lt;span class="link-https"&gt;&lt;a href="https://smallx.dev.java.net/"&gt;Smallx&lt;/a&gt;&lt;/span&gt; - Smallx supports  streaming of XML infosets to allow processing of very large documents  (500MB-1GB). Processing is specified in an XML syntax that describes an XML  pipeline--which is a sequence of components that consume and produce infosets.  This allows chaining of XML component standards like XSLT. Also, there is a full  component API that allows developers to easily write their own components.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://dsd.lbl.gov/nux/index.html"&gt;Nux&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Nux is a toolkit making  efficient and powerful XML processing easy. It is geared towards embedded use in  high-throughput XML messaging middleware such as large-scale Peer-to-Peer  infrastructures, message queues, publish-subscribe and matchmaking systems for  Blogs/newsfeeds, text chat, data acquisition and distribution systems,  application level routers, firewalls, classifiers, etc. Nux reliably processes  whatever data fits into main memory (even, say, 250 MB messages), but it is not  an XML database system, and does not attempt to be one. Nux integrates  best-of-breed components, containing extensions of the XOM, Saxon and Lucene  open-source libraries.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ketl.org/"&gt;KETL &lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt;- KETL is an extract, transform,  and load (ETL) tool designed by Kinetic Networks. KETL includes job scheduling  and alerting capabilities. The KETL Server is a Java-based data integration  platform consisting of a multi-threaded server that manages various job  executors. Jobs are defined using an XML definition language.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.kettle.be/"&gt;Kettle&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - K.E.T.T.L.E (Kettle ETTL  Environment) is a meta-data driven ETTL tool. (ETTL: Extraction, Transformation,  Transportation &amp;amp; Loading). No code has to be written to perform complex data  transformations. Environment means that it is possible to create plugins to do  custom transformations or access propriatary data sources. Kettle supports most  databases on the market and has native support for slowly chaning dimensions on  most platforms. The complete Kettle source code is over 160,000 lines of java  code.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.netflux.org/"&gt;Netflux&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Metadata based tool to allow  for easier manipulations. Spring based configuration, BSF based scripting  support, pluggable JDBC based data sources and sinks. A server and a GUI are  planned.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://opendigger.sourceforge.net/"&gt;OpenDigger&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - OpenDigger is a java based  compiler for the xETL language. xETL is a language specifically projected to  read, manipulate and write data in any format and database. With OpenDigger/XETL  you can build Extraction-Transformation-Loading (ETL) programs virtually from  and to any database platform.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://servingxml.sourceforge.net/"&gt;ServingXML&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - ServingXML is a markup  language for expressing XML pipelines, and an extensible Java framework for  defining the elements of the language. It defines a vocabulary for expressing  flat-XML, XML-flat, flat-flat, and XML-XML transformations in pipelines.  ServingXML supports reading content as XML files, flat files, SQL queries or  dynamically generated SAX events, transforming it with XSLT stylesheets and  custom SAX filters, and writing it as XML, HTML, PDF or mail attachments.  ServingXML is suited for converting flat file or database records to XML, with  its support for namespaces, variant record types, multi-valued fields, segments  and repeating groups, hierarchical grouping of records, and record-by-record  validation with XML Schema.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.talend.com/"&gt;Talend&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Talend Open Studio is  full-featured Data Integration OpenSource solution (ETL). Its graphical user  interface, based on Eclipse Rich Client Platform (RCP) includes numerous  components for business process modelling, as well as technical implementations  of extracting, transformation and mapping of data flows. Data related script and  underlying programs are generated in Perl and Java code.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://scriptella.javaforge.com/"&gt;Scriptella&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Scriptella is an ETL and  script execution tool. Its primary focus is simplicity. It doesn't require the  user to learn another complex XML-based language to use it, but allows the use  of SQL or another scripting language suitable for the data source to perform  required transformations.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.glassfishwiki.org/jbiwiki/Wiki.jsp?page=ETLSE"&gt;ETL  Integrator&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - ETL (a highly unimaginative  name) consists of 3 components. An ETL service engine that is a JBI compliant  service engine implementation which can be deployed in a JBI container. An ETL  Editor that is a design time netbeans module which allow users to design ETL  process in a graphical way. An ETL Project that is a design time netbeans module  which allows users to package ETL related artifacts in a jar file which could be  deployed onto the ETL service engine.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.jitterbit.com/"&gt;Jitterbit&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Jitterbit can act as a  powerful ETL tool. Operations are defined, configured, and monitored with a GUI.  The GUI can create document definitions, from simple flat file structures to  complex hierarchic files structures. Jitterbit includes drag-and-drop mapping  tool to transform data between your various system interfaces. Furthermore, one  can set schedules, create success and failure events and track the results for  your integration operations. Jitterbit supports Web Services, XML Files, HTTP/S,  FTP, ODBC, Flat and Hierarchic file structures and file shares.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.apatar.com/"&gt;Apatar&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Apatar integrates databases,  files and applications. Apatar includes a visual job designer for defining  mapping, joins, filtering, data validation and schedules. Connectors include  MySQL, PostgreSQL, Oracle, MS SQL, Sybase, FTP, HTTP, SalesForce.com, SugarCRM,  Compiere ERP, Goldmine CRM, XML, flat files, Webdav, Buzzsaw, LDAP, Amazon and  Flickr. No coding is required to accomplish even a complex integration. All  metadata is stored in XML.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://static.springframework.org/spring-batch/"&gt;Spring Batch&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Spring Batch is a lightweight,  comprehensive batch framework designed to enable the development of robust batch  applications. Spring Batch provides reusable functions that are essential in  processing large volumes of records, including logging/tracing, transaction  management, job processing statistics, job restart, skip, and resource  management. It also provides more advance technical services and features that  will enable extremely high-volume and high performance batch jobs though  optimization and partitioning techniques.  &lt;/li&gt;&lt;li&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.jaspersoft.com/JasperSoft_JasperETL.html"&gt;JasperETL&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - JasperETL was developed  through a technology partnership with Talend. JasperETL includes Eclipse based  user interfaces for process design, transformation mapping, debugging, process  viewing. The project includes over 30 connectors like flat files, xml,  databases, email, ftp and more. It includes wizards to help configure the  processing of complex file formats including positional, delimited, CSV, RegExp,  XML, and LDIF formatted data.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.pentaho.com/products/data_integration/"&gt;Pentaho Data  Integration&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Pentaho Data Integration  provides a declarative approach to ETL where you specify what to do rather than  how to do it. It includes a transformation library with over 70 mapping objects.  In includes data warehousing capability for slowly changing and junk Dimensions.  Includes support for multiple data sources including over 25 open source and  proprietary database platforms, flat files, Excel documents, and more. The  architecture is extensible with a plug-in mehcanism.  &lt;/li&gt;&lt;li&gt;&lt;span class="link-https"&gt;&lt;a href="https://mural.dev.java.net/"&gt;Mural&lt;/a&gt;&lt;/span&gt; - Mural is an open source  community with the purpose of developing an ecosystem of products that solve the  problems in Master Data Management (MDM). Projects include: Master Index Studio  which provides the supports the creation of a master index through the matching,  de-duplication, merging, and cleansing . Data Integrator which provides extract,  transform, load capability and a wide variety of data formats. Data Quality  which features matching, standardization, profiling,and cleansing capabilities.  Data Mashup Data Mashup which provides data mashup capability. Data Migrator  which supports the migration of database objects across database instances  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.smooks.org/"&gt;Smooks&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Smooks provides a wide range  of Data Transforms. Supports many different Source and Result types -  XML/CSV/EDI/Java/JSON to XML/CSV/EDI/Java/JSON. It supports binding of Java  Object Models from any data source. It is designed to process huge messages in  the GByte range.  &lt;/li&gt;&lt;li&gt;&lt;a href="http://northconcepts.com/"&gt;Data Pipeline&lt;img class="snap_preview_icon" id="snap_com_shot_link_icon" style="border: 0px none ; margin: 0px; padding: 1px 0px 0px; background-position: -1128px 0px; min-width: 0px; display: inline; font-weight: normal; min-height: 0px; left: auto; float: none; background-image: url(http://i.ixnp.com/images/v3.77/theme/silver/palette.gif); visibility: visible; max-width: 2000px; vertical-align: top; width: 14px; max-height: 2000px; line-height: normal; background-repeat: no-repeat; font-style: normal; font-family: 'trebuchet ms',arial,helvetica,sans-serif; position: static; top: auto; height: 12px; background-color: transparent; text-decoration: none;" src="http://i.ixnp.com/images/v3.77/t.gif" /&gt;&lt;/a&gt; - Data Pipeline provides data  conversion, data processing, and data transformation. The toolkit has readers  and writers for common file formats (CSV, Excel, Fixed-width, JDBC) along with  decorators that can be chained together to process and transform data (filter,  remove duplicates, lookups, validation).&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;a href="http://www.manageability.org/blog/stuff/open-source-etl/view"&gt;来源：http://www.manageability.org/blog/stuff/open-source-etl/view&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-2893295918597535364?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/2893295918597535364/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/open-source-etl-extraction-transform.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/2893295918597535364'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/2893295918597535364'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/open-source-etl-extraction-transform.html' title='Open Source ETL (Extraction, Transform, Load) Written in Java[收藏]'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-2579735551951888104</id><published>2009-04-18T20:53:00.002+08:00</published><updated>2009-04-18T21:01:12.750+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='EDA'/><title type='text'>EDA催生出cloudMQ</title><content type='html'>EDA和CEP火爆了，竟然有人搞出了个&lt;a href="http://www.cloudmq.com/"&gt;cloudMQ&lt;/a&gt; ，支持JMS, AMQP and Web Services 类似 Amazon SQS，炒出了Message Queuing as a Service (MaaS)的概念。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-2579735551951888104?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/2579735551951888104/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/edacloudmq.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/2579735551951888104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/2579735551951888104'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/edacloudmq.html' title='EDA催生出cloudMQ'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-1075331362743203043</id><published>2009-04-17T14:56:00.001+08:00</published><updated>2009-04-17T14:58:09.930+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='event processing'/><title type='text'>Trend Prediction in Network Monitoring Systems[收藏]</title><content type='html'>&lt;h2&gt;&lt;a href="http://www.thecepblog.com/2009/03/04/trend-prediction-in-network-monitoring-systems/" rel="bookmark" title="Trend Prediction in Network Monitoring Systems"&gt;Trend Prediction in Network Monitoring Systems&lt;/a&gt;&lt;/h2&gt; &lt;span class="postdate"&gt;March 4th, 2009&lt;/span&gt; by Tim Bass     &lt;br /&gt;&lt;p&gt;Following up on &lt;a title="Real-Time Predictive Analytics for Web Servers" rel="bookmark" href="http://www.thecepblog.com/2009/03/04/2009/03/02/real-time-predictive-analytics-for-web-servers/"&gt;Real-Time Predictive Analytics for Web Servers&lt;/a&gt; I thought we should “move up a level” and look at various open &lt;a href="http://en.wikipedia.org/wiki/Comparison_of_network_monitoring_systems" target="_blank"&gt;network monitoring platforms&lt;/a&gt; with trend prediction capabilities.&lt;/p&gt; &lt;p&gt;Our web server management team picked &lt;a href="http://www.zabbix.com/" target="_blank"&gt;Zabbix &lt;/a&gt;to monitor a busy production server and then we started to look into adding predictive analytics afterwards.   Alberto &lt;a href="http://www.thecepblog.com/2009/03/02/real-time-predictive-analytics-for-web-servers/#comment-25459" target="_blank"&gt;recommended&lt;/a&gt; we look into &lt;a href="http://www.r-project.org/" target="_blank"&gt;The R Project&lt;/a&gt; for open source predictive analytics, which was interesting because I was just about to blog on TIBCO’s integration of S-Plus with Spotfire.  Then, my research led me to an interesting &lt;a href="http://cran.r-project.org/doc/FAQ/R-FAQ.html#R-and-S" target="_blank"&gt;comparative analysis regarding S, S-Plus and R&lt;/a&gt; based on Aberto’s recommendation.  (&lt;em&gt;Thanks Alberto!&lt;/em&gt;)&lt;/p&gt; &lt;p&gt;Instead of writing on S, S-Plus and R today, I thought it might be good to take a look at potential trend prediction capabilities in network monitoring systems, especially the “open, free ones” under the GPL or similar license.  Based on &lt;a href="http://en.wikipedia.org/wiki/Comparison_of_network_monitoring_systems" target="_blank"&gt;this Wikipedia chart&lt;/a&gt;,&lt;span class="mw-headline"&gt; &lt;em&gt;A short comparison between the most common network monitoring systems&lt;/em&gt;,&lt;/span&gt; there are 3 out of 40 listed NMS platforms with trend prediction capabilities, &lt;a class="external text" title="http://www.groundworkopensource.com" rel="nofollow" href="http://www.groundworkopensource.com/"&gt;GroundWork Community&lt;/a&gt;, &lt;a class="external text" title="http://www.osmius.net" rel="nofollow" href="http://www.osmius.net/"&gt;Osmius&lt;/a&gt; and &lt;a title="Zenoss" href="http://en.wikipedia.org/wiki/Zenoss"&gt;Zenoss&lt;/a&gt;.  Unfortunately for us, &lt;a title="Zabbix" href="http://en.wikipedia.org/wiki/Zabbix"&gt;Zabbix&lt;/a&gt; does not yet have trend prediction capabilities; however, the Zabbix project leader says he plans to add this functionality “in the future,” which is not very encouraging, since we don’t know what “this future functionality” will be.&lt;/p&gt; &lt;p&gt;Osmius claims to be event-oriented software with a “realistic and practical platform” to apply research and investigative results including AI and event correlation processes.  Osmius aims reduce the volume of “final events” to process to identify the root cause of problems, including predicting problems before they occur. Osmius boasts off-line data mining capability with a pattern language to discover event occurrence patterns.    We need to look into Osmius more and see if there is any substance to the marketing claims.&lt;/p&gt; &lt;p&gt;Unfortunately, we could not find any concrete trend prediction capabilities in GroundWork, especially in the free and open community version of the software. This makes sense since GroundWork is based on Nagios, and Nagios does not have built-in forecasting and predictive analytics. Also, a preliminary look into Zenoss was not very encouraging, as we could not find solid evidence of predictive analytics and forecasting functionality.&lt;/p&gt; &lt;p&gt;As for next steps, I think we’ll look a bit deeper into a few of these software platforms and see if we can find out exactly what forecasting methods they use, if any, for outage prediction.  If anyone has any knowledge or experience in these NSM event processing platforms and their capabilities regarding predictive analytics and outage forecasting, please comment.  Thanks!&lt;/p&gt; &lt;p&gt;Also, I still have some blogging to do on TIBCO’s integration of Spotfire and Insightful’s S-Plus, both acquired by TIBCO last year, as I recall.   I am interested to see when and how TIBCO integrates off-line analytics (Spotfire, Insightful, S-Plus) with real-time event processing.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-1075331362743203043?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/1075331362743203043/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/trend-prediction-in-network-monitoring.html#comment-form' title='1 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/1075331362743203043'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/1075331362743203043'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/trend-prediction-in-network-monitoring.html' title='Trend Prediction in Network Monitoring Systems[收藏]'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-1503650254534188112</id><published>2009-04-14T14:11:00.004+08:00</published><updated>2009-04-14T14:24:52.960+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='anti-malware'/><title type='text'>目前90%的病毒不再自我复制</title><content type='html'>Kaspersky Lab的高级反病毒研究员Roel Schouwenberg近日在谈到过去5年malware的变化时表示：&lt;br /&gt;1、目前90%的病毒不再自我复制。&lt;br /&gt;&lt;blockquote&gt; Criminals generally don't want to draw any attention from anti-malware  companies and/or law enforcement. What also adds to this is that today about 90%  of the malware we see is not self-replicating.&lt;br /&gt;&lt;/blockquote&gt;2、malware数量迅速增长，2007年是前20年之和，2008年是2007年的10倍，目前每天发现的新威胁达4万种。&lt;br /&gt;&lt;blockquote&gt;In 2008 we saw ten times as much malware as in 2007. In 2007 we saw the same  amount of malware as in the whole twenty years before that combined. Right now  we see up to 40,000 new threats per day, even two years ago that would have been  very hard to imagine.&lt;br /&gt;&lt;/blockquote&gt;3.写malware者向盈利性目的转变&lt;br /&gt;&lt;blockquote&gt;There has also been a shift in how people are writing malware. In 2004 we were  already seeing the change from people writing malware for fun to writing malware  for profit. These days over 98% of all the malware we see is created with profit  in mind. So we're fighting professional cyber criminals rather than teenage kids  trying to prove themselves like five years ago.&lt;/blockquote&gt;http://www.net-security.org/article.php?id=1219&amp;amp;p=1&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-1503650254534188112?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/1503650254534188112/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/90.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/1503650254534188112'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/1503650254534188112'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/90.html' title='目前90%的病毒不再自我复制'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-2813592330605002300</id><published>2009-04-13T12:40:00.001+08:00</published><updated>2009-04-13T12:43:32.420+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='ntop'/><title type='text'>Debian/Ubuntu Linux Install ntop[转]</title><content type='html'>&lt;p&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Q.&lt;/span&gt; How do I track my network usage  (network usage monitoring) and protocol wise distribution of traffic under  Debian Linux? How do I get a complete picture of network activity?&lt;br /&gt;&lt;span id="more-1188"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;A.&lt;/span&gt; ntop is the  best tool to see network usage in a way similar to what top command does for  processes i.e. it is network traffic monitoring software. You can see network  status, protocol wise distribution of traffic for UDP, TCP, DNS, HTTP and other  protocols. &lt;/p&gt; &lt;p&gt;ntop is a hybrid layer 2 / layer 3 network monitor, that is by default it  uses the layer 2 Media Access Control (MAC) addresses AND the layer 3 tcp/ip  addresses. ntop is capable of associating the two, so that ip and non-ip traffic  (e.g. arp, rarp) are combined for a complete picture of network activity.&lt;/p&gt; &lt;p&gt;ntop is a network probe that showsIn interactive mode, it displays the  network status on the user's terminal. In Web mode, it acts as a Web server,  creating a HTML dump of the network status. It sports a NetFlow/sFlow  emitter/collector, a HTTP-based client interface for creating ntop-centric  monitoring applications, and RRD for persistently storing traffic  statistics.Network Load Statistics&lt;/p&gt;&lt;h2&gt;How do I install ntop under Debian / Ubuntu Linux?&lt;/h2&gt; &lt;p&gt;Type the following commands, enter:&lt;br /&gt;&lt;code&gt;$ sudo apt-get update&lt;br /&gt;$ sudo  apt-get install ntop&lt;/code&gt;&lt;/p&gt;&lt;h3&gt;Set ntop admin user password&lt;/h3&gt; &lt;p&gt;Type the following command to set password, enter:&lt;br /&gt;&lt;code&gt;# /usr/sbin/ntop  -A&lt;/code&gt;&lt;br /&gt;OR&lt;br /&gt;&lt;code&gt;$ sudo /usr/sbin/ntop -A&lt;/code&gt;&lt;/p&gt;&lt;h3&gt;Restart ntop service&lt;/h3&gt; &lt;p&gt;Type the following command, enter:&lt;br /&gt;&lt;code&gt;# /etc/init.d/ntop  restart&lt;/code&gt;&lt;br /&gt;Verify ntop is working, enter:&lt;br /&gt;&lt;code&gt;# netstat -tulpn |  grep :3000&lt;/code&gt;&lt;br /&gt;ntop by default use 3000 port to display network usage via  webbrowser.&lt;/p&gt;&lt;h3&gt;How do I view network usage stats?&lt;/h3&gt; &lt;p&gt;Type the  url:&lt;br /&gt;&lt;code&gt;http://localhost:3000/&lt;/code&gt;&lt;br /&gt;OR&lt;br /&gt;&lt;code&gt;http://server-ip:3000/&lt;/code&gt;&lt;/p&gt;&lt;h3&gt;Further readings:&lt;/h3&gt; &lt;ol&gt;&lt;li&gt;man ntop  &lt;/li&gt;&lt;li&gt;ntop configuration files located at /etc/ntop/ directory  &lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ntop.org/"&gt;ntop project&lt;/a&gt; &lt;/li&gt;&lt;/ol&gt;&lt;!-- &lt;rdf:rdf rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" dc="http://purl.org/dc/elements/1.1/" trackback="http://madskills.com/public/xml/rss/module/trackback/"&gt;    &lt;rdf:description about="http://www.cyberciti.biz/faq/debian-ubuntu-install-ntop-network-traffic-monitoring-software/" identifier="http://www.cyberciti.biz/faq/debian-ubuntu-install-ntop-network-traffic-monitoring-software/" title="Debian / Ubuntu Linux Install ntop To See Network Usage / Network Status" ping="http://www.cyberciti.biz/faq/debian-ubuntu-install-ntop-network-traffic-monitoring-software/trackback/"&gt; &lt;/rdf:RDF&gt; --&gt;&lt;p&gt;&lt;code&gt;&lt;span style="font-family: Georgia,serif;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;&lt;p&gt;&lt;code&gt;&lt;span style="font-family: Georgia,serif;"&gt;来源：&lt;/span&gt;http://www.cyberciti.biz/faq/debian-ubuntu-install-ntop-network-traffic-monitoring-software/&lt;br /&gt;&lt;/code&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-2813592330605002300?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/2813592330605002300/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/debianubuntu-linux-install-ntop.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/2813592330605002300'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/2813592330605002300'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/debianubuntu-linux-install-ntop.html' title='Debian/Ubuntu Linux Install ntop[转]'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-8475048572878799085</id><published>2009-04-11T23:10:00.000+08:00</published><updated>2009-04-11T23:11:39.985+08:00</updated><title type='text'>Ubuntu8.10安装中文输入法</title><content type='html'>安装中文输入法&lt;br /&gt;apt-get install scim-chinese&lt;br /&gt;在/etc/X11/Xsession.d/里新建一个名叫95xinput的文件，文件内容如下&lt;br /&gt;        /usr/bin/scim -d&lt;br /&gt;        XMODIFIERS="@im=SCIM"&lt;br /&gt;        export XMODIFIERS&lt;br /&gt;        export GTK_IM_MODULE=scim&lt;br /&gt;保存文件，确认内容无误后，退出X（建议退出X后运行exit命令重新login一次），再进入X的时候就可以用Ctrl+Space调出SCIM了！&lt;br /&gt;现在还不能在基于GTK的软件中调出SCIM，例如不能在leafpad里使用SCIM。解决办法很简单，只要安装scim-gtk2-immodule就可以了。&lt;br /&gt;apt-get install scim-gtk2-immodule&lt;br /&gt;这个命令会根据依赖关系自动安装 scim-server-socket, scim-frontend-socket, scim-config-socket，如果没有安装scim，也会自动安装。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-8475048572878799085?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/8475048572878799085/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/ubuntu810.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8475048572878799085'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8475048572878799085'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/ubuntu810.html' title='Ubuntu8.10安装中文输入法'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-2000127886954234290</id><published>2009-04-11T21:10:00.000+08:00</published><updated>2009-04-11T21:11:56.600+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='eclipse3.4'/><category scheme='http://www.blogger.com/atom/ns#' term='JDK1.6'/><category scheme='http://www.blogger.com/atom/ns#' term='tomcat5.5'/><category scheme='http://www.blogger.com/atom/ns#' term='Ubuntu'/><title type='text'>Ubuntu8.10安装JDK1.6,Tomcat5.5，eclipse3.4</title><content type='html'>安装JDK6&lt;br /&gt;下载jdk-6u4-linux-i586.bin&lt;br /&gt;#chmod +x jdk-6u4-linux-i586.bin&lt;br /&gt;#./jdk-6u11-linux-i586.bin&lt;br /&gt;#輸入yes開始安裝,之后会出现一个jdk1.6.0_11的目录&lt;br /&gt;将jdk1.6.0_11拷贝到 /usr/local/ 下&lt;br /&gt;#mv jdk1.6.0_11 /usr/local/&lt;br /&gt;打开.profile&lt;br /&gt;#vim ~/.profile&lt;br /&gt;将下述语句写在里面&lt;br /&gt;JAVA_HOME=/usr/local/jdk1.6.0_11&lt;br /&gt;JRE_HOME=$JAVA_HOME/jre&lt;br /&gt;PATH=$PATH:$JAVA_HOME/bin:$JRE_HOME/bin&lt;br /&gt;CLASSPATH=.:$JAVA_HOME/lib/tools.jar:$JAVA_HOME/lib/dt.jar&lt;br /&gt;export JAVA_HOME&lt;br /&gt;export PATH&lt;br /&gt;export CLASSPATH&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;安装Tomcat5.5&lt;br /&gt;下载tomcat 5.5 从http://jakarta.apache.org/site/downloads/&lt;br /&gt;#tar xvfz jakarta-tomcat-5.5.9.tar.gz&lt;br /&gt;将解压的文件夹拷贝到/usr/local/&lt;br /&gt;#gedit ~/.bashrc&lt;br /&gt;添加如下行&lt;br /&gt;export CLASSPATH=/usr/local/tomcat/common/lib/jsp-api.jar:/usr/local/tomcat/common/lib/servlet-api.jar&lt;br /&gt;&lt;br /&gt;也可以加在 ~/.profile中。&lt;br /&gt;&lt;br /&gt;修改端口在 usr/local/tomcat/conf/server.xml&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;运行&lt;br /&gt;sh /usr/local/tomcat/bin/startup.sh&lt;br /&gt;&lt;br /&gt;停止&lt;br /&gt;sh /usr/local/tomcat/bin/shutdown.sh&lt;br /&gt;&lt;br /&gt;参考：&lt;a href="http://ubuntuforums.org/showthread.php?p=226828"&gt;http://ubuntuforums.org/showthread.php?p=226828&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;安装Eclipse3.4&lt;br /&gt;&lt;br /&gt;我是从http://www.eclipse.org/downloads/上下载的eclipse-jee-ganymede-SR2-linux-gtk.tar.gz&lt;br /&gt;&lt;br /&gt;tar zxvf eclipse-jee-ganymede-SR2-linux-gtk.tar.gz&lt;br /&gt;进入目录双击就可以用了。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-2000127886954234290?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/2000127886954234290/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/ubuntu810jdk16tomcat55eclipse34.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/2000127886954234290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/2000127886954234290'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/ubuntu810jdk16tomcat55eclipse34.html' title='Ubuntu8.10安装JDK1.6,Tomcat5.5，eclipse3.4'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-131063551498324958</id><published>2009-04-11T20:25:00.002+08:00</published><updated>2009-04-11T20:49:36.319+08:00</updated><title type='text'>Ubuntu8.10中Eclipse SVN插件的unable to load default svn client问题</title><content type='html'>在Ubuntu8.10 Desktop，Eclipse 3.4，JDK1.6 的环境下，在Eclipse中按照下列地址安装的SVN：&lt;br /&gt;&lt;a href="http://subclipse.tigris.org/update_1.4.x"&gt;http://subclipse.tigris.org/update_1.4.x&lt;/a&gt;&lt;br /&gt;会报错“unable to load default svn client”，&lt;br /&gt;解决办法：&lt;br /&gt;将下面两行添加到 /usr/lib/eclipse/eclipse.ini 文件的 "-vmargs"下面&lt;br /&gt;&lt;br /&gt;-Djava.library.path=/usr/share/java/&lt;br /&gt;-Djava.library.path=/usr/lib/jni/&lt;br /&gt;&lt;br /&gt;另外最关键的是在安装时必须选择安装SVNKit，不装这个就会报错。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-131063551498324958?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/131063551498324958/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/ubuntu810eclipse-svnunable-to-load.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/131063551498324958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/131063551498324958'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/ubuntu810eclipse-svnunable-to-load.html' title='Ubuntu8.10中Eclipse SVN插件的unable to load default svn client问题'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-1702739163129609449</id><published>2009-04-11T07:42:00.001+08:00</published><updated>2009-04-11T23:14:53.122+08:00</updated><title type='text'>vista中不能创建的目录</title><content type='html'>偶然发现在vista操作系统中,不能创建名为aux的目录。将此事作为bug向微软社区一提，&lt;br /&gt;答复如下:&lt;br /&gt;这个并不是BUG，而是VISTA中新的命名规则也就是说该名字无法作为文件夹名，这类的词语还包括con, aux,  com1, com2, com3, com4, lpt1, lpt2, lpt3, prn 和  nul都是,主要是为了防止系统识别混淆。XP和SERVER中也是一样。&lt;br /&gt;&lt;br /&gt;我认为像con,aux这种名字用做文件夹名是很平常的事,Vista为什么要有如此不合情理的规则? 看来，至少在设计的合理性方面，windows和linux相比不止逊色一点点。不禁让人反思，为什么那么多人好端端的linux不用，而要花那么多钱买正版的vista，图个啥？&lt;br /&gt;&lt;br /&gt;有人提出可以用如下方式创建和删除：&lt;br /&gt;mkdir c:\aux\\&lt;br /&gt;rmdir c:\aux\\&lt;br /&gt;的确是可以创建和删除aux文件夹，但是这个文件夹创建后无法在里面创建文件，所以只是一种治标不治本的办法。&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-1702739163129609449?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/1702739163129609449/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/vista.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/1702739163129609449'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/1702739163129609449'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/vista.html' title='vista中不能创建的目录'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-4828675109371587072</id><published>2009-04-10T16:59:00.001+08:00</published><updated>2009-04-15T09:13:35.433+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='osmius'/><title type='text'>osmius安装试用</title><content type='html'>osmius是一个功能强大的开源分布式监控软件，用C++和JAVA实现。缺点是复杂，文档很少。&lt;br /&gt;&lt;br /&gt;特性：&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Open Source&lt;/strong&gt; : Osmius exhibits its quality difference.  &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Open Analysis&lt;/strong&gt; : Access to documentation generated during  the Analysis Phases as well as articles, architectural diagrams,...  &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Osmius leverages &lt;a title="ACE Web" href="http://www.cs.wustl.edu/%7Eschmidt/ACE.html"&gt;&lt;acronym title="ADAPTIVE Communication Environment"&gt;ACE&lt;/acronym&gt;&lt;/a&gt;&lt;/strong&gt; :  Reusability applied with this extraordinary framework with decades of knowledge  and very robust code.  &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Multi-Platform&lt;/strong&gt; : Hardware and operative system  independence.  &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Architecture Oriented&lt;/strong&gt; : Osmius is a solution to a set of  systems and problems, it is not just a product.  &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Market Oriented&lt;/strong&gt; : Osmius has a Business Plan and an Open  Source Business Model with Peopleware.es&lt;/li&gt;&lt;/ul&gt;技术架构组件：&lt;br /&gt;&lt;br /&gt;&lt;table border="1"&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Operative Systems: Osmius Central Server&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;Linux : Solaris : Windows (coming soon)&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Operative Systems: Master Agents&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;Windows : Linux : HP-UX : Solaris&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Used Frameworks: Engine&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;C++ → ADAPTIVE Communication Environment : MPC&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Used Frameworks: Java Console&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;Java → J2EE : Spring : Hibernate :&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Database&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;MySql 5.X initially&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Web Server &lt;/strong&gt;&lt;/td&gt; &lt;td&gt;TomCat 5.25.X&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Reporting&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;JasperReports&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Dataware House&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;Included&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Integrations&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;OpenView - Nagios - Scripts - SMS - email - etc&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;New agent development Framework&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;Osmius Framework : 1 agent per week&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Intrusive Agents&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;Yes : Mainly OSs and log files&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;NON-Intrusive Agents&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;Yes : SNMP, Oracle, &lt;acronym title="Hyper Text Transfer Protocol"&gt;HTTP&lt;/acronym&gt;, IP services, MySql,  Asterisk, VMWare, etc&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Web client&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;Firefox 2.X y 3.0.X&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Licencia&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;GPL2&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;&lt;a title="http://es.wikipedia.org/wiki/Information_Technology_Infrastructure_Library" href="http://es.wikipedia.org/wiki/Information_Technology_Infrastructure_Library"&gt;ITIL&lt;/a&gt;  Processes Support &lt;/strong&gt;&lt;/td&gt; &lt;td&gt;SLA achievement.&lt;br /&gt;Availability Management&lt;br /&gt;Capacity Planning&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt; &lt;td&gt;&lt;strong&gt;Benchmarking&lt;/strong&gt;&lt;/td&gt; &lt;td&gt;+ 1000 instances&lt;br /&gt;+ 1000 services&lt;br /&gt;&lt;strong&gt;1500 events per  second&lt;/strong&gt; with 1 CPU 2GHz&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;下载安装&lt;br /&gt;&lt;br /&gt;1.- Download from http://sourceforge.net/projects/osmius:&lt;br /&gt;   osmius_server_linux32_installer_X.YY.ZZ.bin&lt;br /&gt;&lt;br /&gt;   prompt &gt; chmod 755 osmius_server_linux32_installer_X.YY.ZZ.bin&lt;br /&gt;   prompt &gt; ./osmius_server_linux32_installer_X.YY.ZZ.bin&lt;br /&gt;&lt;br /&gt;2.- Follow the instructions.&lt;br /&gt;&lt;br /&gt;3.- Using FireFox 2.X or 3.X&lt;br /&gt;   http://&lt;osmius_server_ip&gt;:&lt;tomcat_port&gt;/osmius&lt;br /&gt;   user    : root&lt;br /&gt;   password: osmius&lt;br /&gt;&lt;br /&gt;4.- To start/stop everything (mysql, tomcat and osmius processes)&lt;br /&gt;&lt;osmius_intall_dir&gt;/ctlXXXXX.sh start&lt;br /&gt;&lt;osmius_intall_dir&gt;/ctlXXXXX.sh stop&lt;br /&gt;&lt;br /&gt;源码获取：&lt;br /&gt;svn co https://osmius.svn.sourceforge.net/svnroot/osmius osmius&lt;br /&gt;&lt;br /&gt;http://www.osmius.net&lt;br /&gt;&lt;br /&gt;&lt;/osmius_intall_dir&gt;&lt;/osmius_intall_dir&gt;&lt;/tomcat_port&gt;&lt;/osmius_server_ip&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-4828675109371587072?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/4828675109371587072/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/osmius.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/4828675109371587072'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/4828675109371587072'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/osmius.html' title='osmius安装试用'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-1597068746171604527</id><published>2009-04-09T17:49:00.001+08:00</published><updated>2009-04-15T09:12:36.271+08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='secservice.net、lenny、Jmasslogpro'/><title type='text'>最近在bbs.secservice.net发了很多帖子</title><content type='html'>最近在bbs.secservice.net发了很多帖子,主要是关于OSSIM的，JMassLogPro自发布v0.2以后，下一个里程碑的设计还没出来，进展比较缓慢。&lt;br /&gt;&lt;br /&gt;&lt;a class="topictitle" href="http://www.secservice.net/bbs/viewtopic.php?f=2&amp;amp;t=67"&gt;Lenny上出现Pango-CRITICAL问题&lt;/a&gt;&lt;br /&gt;&lt;a class="topictitle" href="http://www.secservice.net/bbs/viewtopic.php?f=2&amp;amp;t=60"&gt;OSSIM并非SIM而是SEM&lt;/a&gt;&lt;br /&gt;&lt;a class="topictitle" href="http://www.secservice.net/bbs/viewtopic.php?f=2&amp;amp;t=58"&gt;lenny使用中的问题&lt;/a&gt;&lt;br /&gt;&lt;a class="topictitle" href="http://www.secservice.net/bbs/viewtopic.php?f=2&amp;amp;t=68"&gt;ossim已经有lenny版iso了&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.secservice.net/bbs/viewforum.php?f=2"&gt;更多&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-1597068746171604527?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/1597068746171604527/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/bbssecservicenet.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/1597068746171604527'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/1597068746171604527'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/bbssecservicenet.html' title='最近在bbs.secservice.net发了很多帖子'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1884717530661375217.post-8718047356172801746</id><published>2009-04-09T17:46:00.000+08:00</published><updated>2009-04-09T17:47:25.151+08:00</updated><title type='text'>今天开始写blog</title><content type='html'>今天开始写blog.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1884717530661375217-8718047356172801746?l=colindoug.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://colindoug.blogspot.com/feeds/8718047356172801746/comments/default' title='帖子评论'/><link rel='replies' type='text/html' href='http://colindoug.blogspot.com/2009/04/blog.html#comment-form' title='0 条评论'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8718047356172801746'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1884717530661375217/posts/default/8718047356172801746'/><link rel='alternate' type='text/html' href='http://colindoug.blogspot.com/2009/04/blog.html' title='今天开始写blog'/><author><name>ColinDoug</name><uri>http://www.blogger.com/profile/08775866652417872705</uri><email>noreply@blogger.com</email><gd:extendedProperty xmlns:gd='http://schemas.google.com/g/2005' name='OpenSocialUserId' value='10660913895257300024'/></author><thr:total xmlns:thr='http://purl.org/syndication/thread/1.0'>0</thr:total></entry></feed>