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

<channel>
	<title>编译点滴 &#187; firefox</title>
	<atom:link href="http://www.lingcc.com/tag/firefox/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lingcc.com</link>
	<description>编译器、虚拟机、程序设计语言、体系结构、软件调试、操作系统等等</description>
	<lastBuildDate>Sat, 04 Feb 2012 06:56:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WebKit和Firefox的JavaScript性能对比</title>
		<link>http://www.lingcc.com/2010/01/22/10668/</link>
		<comments>http://www.lingcc.com/2010/01/22/10668/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 14:37:22 +0000</pubDate>
		<dc:creator>erlv</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[编译技术]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[elf]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[glibc]]></category>
		<category><![CDATA[intel]]></category>
		<category><![CDATA[JIT]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[MIPS]]></category>
		<category><![CDATA[nanojit]]></category>
		<category><![CDATA[spec]]></category>
		<category><![CDATA[TraceMonkey]]></category>
		<category><![CDATA[WebKit]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[x86]]></category>
		<category><![CDATA[开源]]></category>
		<category><![CDATA[性能]]></category>
		<category><![CDATA[运行时技术]]></category>
		<category><![CDATA[链接]]></category>
		<category><![CDATA[龙芯]]></category>

		<guid isPermaLink="false">http://www.lingcc.com/?p=10668</guid>
		<description><![CDATA[严格的说WebKit仅仅是个浏览器核心，采用该核心的浏览器很多，如国内的搜狗浏览器，遨游浏览器。其他的如google的chrome(Windows平台，linux平台下为chromium),epiphany(linux平台下，gnome2.28版本之后),苹果的Safari 都采用了webkit的内核。Firefox则是采用Gecko的内核，这是NetScape公司开发的内核，后来开源，mozilla继续开发。另外，现在还有另外两种常见的浏览器内核，Trident主要用在IE系列上，Presto主要用在Opera上。 这篇文章仅仅针对浏览器处理JavaScript的性能作比较，主要在X86平台和龙芯平台。先来解释一下JavaScript，JavaScript是互联网内较为常用的脚本语言，面向对象，主要在浏览器内解释执行，用于生成动态网页，因为很多语言特性受Java影响，所以叫JavaScript。通过JavaScript，浏览器可以运行服务器想要在访问者终端上运行的一些计算程序，以达到更好的浏览体验。 再说说浏览器内核和JavaScript的关系，其实JavaScrip脚本的执行仅仅是浏览器内核的一部分，其他的还有Html语言的解释执行，网页的呈现等等也是内核要做的。之所以这么关心浏览器核心对JavaScript脚本的处理情况，是因为现在的很多应用不再是简单的网页浏览，如gmail，google reader，gooe wave还有一些网页3D特效等等都需要在客户机上作计算，这就需要JavaScript大显身手了。而且越来越多的应用依赖JavaScript，所以现在浏览器对JavaScript的处理速度直接影响着用户体验。目前WebKit的JavaScript引擎SquirrelFish，JavaScript的引擎是SpiderMonkey 目前JavaScript在大多数平台上的处理是靠解释执行的，又因为是动态类型，面向对象。。。，决定了JavaScript执行效率低，所以就诞生了各种针对JavaScript的优化，也有了测试JavaScipt解释器性能的BenchMark，目前常用的是Sunspider和google V8，这篇文章中的对比针对Sunspider测试集。 另外还要说说JIT，Just In time，转换，将部分程序代码直接转换成机器码执行，这种技术在运行时优化中比较常用，JavaScript是解释器，所以JIT在解释器中也是很重要的优化手段。目前X86的webkit和Firefox默认就有JIT支持，但龙芯平台上还没有，本博也是最早对龙芯2F平台有JIT支持的Webkit和firefox  JavaScript引擎作对比的，目前这两个JIT都还没有进入官方的代码库中，感兴趣的朋友可以在下面的前两个链接中找到相关源码。其中webkit的补丁还要做些宏的修改，改动不大。这两个都是从官方源码库checkout出来并修改之后的。其中firefox的JIT部分是由ZSC大牛写出来的，详细的讨论贴和测试结果可以在龙芯论坛看到，见下面的第三个链接。 x86下epiphany(webkit内核)和firefox开了jit之后的性能，如下 webkit Total: 833.6ms +/- 2.1% firefox Total: 1774.4ms +/- 2.7% （测试环境是我的笔记本 intel Pentium t2390,开了频率调节，所以波动较大)、两个差距： TEST COMPARISON FROM TO DETAILS ============================================================================= ** TOTAL **: 2.13x as fast 1774.4ms +/- 2.7% 833.6ms +/- 2.1% significant ============================================================================= 3d: 2.96x as fast 257.2ms +/- 2.1% 87.0ms <a href='http://www.lingcc.com/2010/01/22/10668/'>[...]</a><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="webkit-龙小组成立" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F07%2F10%2F11060%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">webkit-龙小组成立</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/05/11067795.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="龙芯N32系统上的Squirrelfish性能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F06%2F28%2F10983%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">龙芯N32系统上的Squirrelfish性能</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="JIT Compiler and Virtual Machine SW Engineer for Web Browsers in Qualcomm" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2011%2F10%2F09%2F11773%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">JIT Compiler and Virtual Machine SW Engineer for Web Browsers in Qualcomm</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="擦亮眼睛 “百度Hi”用户协议有猫腻" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F06%2F9928%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115378.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">擦亮眼睛 “百度Hi”用户协议有猫腻</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>
<h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2009/12/24/10451/' rel='bookmark' title='拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)'>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</a></li>
<li><a href='http://www.lingcc.com/2009/12/29/10503/' rel='bookmark' title='GCC初窥'>GCC初窥</a></li>
<li><a href='http://www.lingcc.com/2010/01/05/10588/' rel='bookmark' title='用crossdev装龙芯的n32 gnu交叉工具链'>用crossdev装龙芯的n32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2010/01/07/10594/' rel='bookmark' title='使用crossdev安装龙芯的O32 gnu交叉工具链'>使用crossdev安装龙芯的O32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2009/12/31/10534/' rel='bookmark' title='Gentoo中的交叉编译利器&#8211;crossdev'>Gentoo中的交叉编译利器&#8211;crossdev</a></li>
<li><a href='http://www.lingcc.com/2010/06/28/10983/' rel='bookmark' title='龙芯N32系统上的Squirrelfish性能'>龙芯N32系统上的Squirrelfish性能</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>严格的说WebKit仅仅是个浏览器核心，采用该核心的浏览器很多，如国内的搜狗浏览器，遨游浏览器。其他的如google的chrome(Windows平台，linux平台下为chromium),epiphany(linux平台下，gnome2.28版本之后),苹果的Safari 都采用了webkit的内核。Firefox则是采用Gecko的内核，这是NetScape公司开发的内核，后来开源，mozilla继续开发。另外，现在还有另外两种常见的浏览器内核，Trident主要用在IE系列上，Presto主要用在Opera上。</p>
<p>这篇文章仅仅针对浏览器处理JavaScript的性能作比较，主要在X86平台和龙芯平台。先来解释一下JavaScript，JavaScript是互联网内较为常用的脚本语言，面向对象，主要在浏览器内解释执行，用于生成动态网页，因为很多语言特性受Java影响，所以叫JavaScript。通过JavaScript，浏览器可以运行服务器想要在访问者终端上运行的一些计算程序，以达到更好的浏览体验。<span id="more-10668"></span></p>
<p>再说说浏览器内核和JavaScript的关系，其实JavaScrip脚本的执行仅仅是浏览器内核的一部分，其他的还有Html语言的解释执行，网页的呈现等等也是内核要做的。之所以这么关心浏览器核心对JavaScript脚本的处理情况，是因为现在的很多应用不再是简单的网页浏览，如gmail，google reader，gooe wave还有一些网页3D特效等等都需要在客户机上作计算，这就需要JavaScript大显身手了。而且越来越多的应用依赖JavaScript，所以现在浏览器对JavaScript的处理速度直接影响着用户体验。目前WebKit的JavaScript引擎SquirrelFish，JavaScript的引擎是SpiderMonkey</p>
<p>目前JavaScript在大多数平台上的处理是靠解释执行的，又因为是动态类型，面向对象。。。，决定了JavaScript执行效率低，所以就诞生了各种针对JavaScript的优化，也有了测试JavaScipt解释器性能的BenchMark，目前常用的是Sunspider和google V8，这篇文章中的对比针对Sunspider测试集。</p>
<p>另外还要说说JIT，Just In time，转换，将部分程序代码直接转换成机器码执行，这种技术在运行时优化中比较常用，JavaScript是解释器，所以JIT在解释器中也是很重要的优化手段。目前X86的webkit和Firefox默认就有JIT支持，但龙芯平台上还没有，本博也是最早对龙芯2F平台有JIT支持的Webkit和firefox  JavaScript引擎作对比的，目前这两个JIT都还没有进入官方的代码库中，感兴趣的朋友可以在下面的前两个链接中找到相关源码。其中webkit的补丁还要做些宏的修改，改动不大。这两个都是从官方源码库checkout出来并修改之后的。其中firefox的JIT部分是由ZSC大牛写出来的，详细的讨论贴和测试结果可以在龙芯论坛看到，见下面的第三个链接。<br />
x86下epiphany(webkit内核)和firefox开了jit之后的性能，如下</p>
<pre id="comment_text_6">
webkit Total:                  833.6ms +/- 2.1%
firefox Total:                 1774.4ms +/- 2.7%</pre>
<p>（测试环境是我的笔记本 intel Pentium t2390,开了频率调节，所以波动较大)、两个差距：</p>
<pre id="console">TEST                   COMPARISON            FROM                 TO             DETAILS

=============================================================================

** TOTAL **:           2.13x as fast     1774.4ms +/- 2.7%   833.6ms +/- 2.1%     significant

=============================================================================

  3d:                  2.96x as fast      257.2ms +/- 2.1%    87.0ms +/- 1.0%     significant
    cube:              3.36x as fast       79.2ms +/- 1.7%    23.6ms +/- 2.9%     significant
    morph:             1.52x as fast       50.4ms +/- 1.4%    33.2ms +/- 3.1%     significant
    raytrace:          4.23x as fast      127.6ms +/- 3.0%    30.2ms +/- 3.4%     significant

  access:              3.26x as fast      237.0ms +/- 4.7%    72.8ms +/- 2.8%     significant
    binary-trees:      8.82x as fast       67.0ms +/- 4.4%     7.6ms +/- 9.0%     significant
    fannkuch:          3.48x as fast       98.2ms +/- 0.6%    28.2ms +/- 3.7%     significant
    nbody:             2.50x as fast       51.4ms +/- 10.3%    20.6ms +/- 3.3%     significant
    nsieve:            -                   20.4ms +/- 56.6%    16.4ms +/- 4.2% 

  bitops:              1.42x as fast       53.8ms +/- 1.9%    38.0ms +/- 0.0%     significant
    3bit-bits-in-byte: *3.10x as slow*      2.0ms +/- 0.0%     6.2ms +/- 9.0%     significant
    bits-in-byte:      -                   11.0ms +/- 8.0%    10.4ms +/- 6.5%
    bitwise-and:       *2.33x as slow*      3.0ms +/- 0.0%     7.0ms +/- 0.0%     significant
    nsieve-bits:       2.62x as fast       37.8ms +/- 1.5%    14.4ms +/- 4.7%     significant

  controlflow:         8.76x as fast       50.8ms +/- 2.0%     5.8ms +/- 9.6%     significant
    recursive:         8.76x as fast       50.8ms +/- 2.0%     5.8ms +/- 9.6%     significant

  crypto:              2.34x as fast       93.8ms +/- 1.7%    40.0ms +/- 2.2%     significant
    aes:               2.57x as fast       54.0ms +/- 3.6%    21.0ms +/- 4.2%     significant
    md5:               2.62x as fast       26.2ms +/- 2.1%    10.0ms +/- 0.0%     significant
    sha1:              1.51x as fast       13.6ms +/- 5.0%     9.0ms +/- 0.0%     significant

  date:                1.87x as fast      275.2ms +/- 2.0%   147.0ms +/- 1.0%     significant
    format-tofte:      2.75x as fast      149.0ms +/- 1.0%    54.2ms +/- 1.0%     significant
    format-xparb:      1.36x as fast      126.2ms +/- 4.0%    92.8ms +/- 1.7%     significant

  math:                1.12x as fast       89.8ms +/- 1.8%    80.2ms +/- 21.7%     significant
    cordic:            2.13x as fast       43.4ms +/- 3.3%    20.4ms +/- 9.2%     significant
    partial-sums:      *1.41x as slow*     34.4ms +/- 2.0%    48.6ms +/- 38.2%     significant
    spectral-norm:     1.07x as fast       12.0ms +/- 0.0%    11.2ms +/- 12.2%     significant

  regexp:              3.73x as fast      125.4ms +/- 15.5%    33.6ms +/- 2.0%     significant
    dna:               3.73x as fast      125.4ms +/- 15.5%    33.6ms +/- 2.0%     significant

  string:              1.80x as fast      591.4ms +/- 3.3%   329.2ms +/- 1.6%     significant
    base64:            *1.24x as slow*     28.4ms +/- 2.4%    35.2ms +/- 1.6%     significant
    fasta:             1.71x as fast      133.0ms +/- 2.3%    78.0ms +/- 4.6%     significant
    tagcloud:          2.81x as fast      169.4ms +/- 3.8%    60.2ms +/- 8.2%     significant
    unpack-code:       1.91x as fast      193.8ms +/- 4.4%   101.6ms +/- 2.7%     significant
    validate-input:    1.23x as fast       66.8ms +/- 5.8%    54.2ms +/- 6.4%     significant</pre>
<p>龙芯上的JIT具体对比数据不便透漏，可以从下面第三个链接中找到第一版发布时的测试数据。这里仅仅给出一个对比。webkit之所以with GUI是使用编译出的迷你小浏览器中测试结果，no GUI是使用测试脚本跑出来的结果。</p>
<pre id="comment_text_4"> Webkit with GUI Total:                  6723.4ms +/- 0.5%
        no GUI   Total:                  6355.8ms +/- 0.5%
 Firfox Total 7000 ms 左右。</pre>
<p>注： 龙芯中的JIT现在还不够成熟，其中Webkit的JIT仅是针对MIPS III做的，没有针对龙芯的特殊优化。</p>
<p>另外，X86中firefox的版本是3.5.7，龙芯中firefox的版本是3.7pre1.WebKit在X86中版本是epiphany的2.28中的版本，龙芯中为SVN中的2010-01-12 r53114。X86运行环境为Gentoo，Gcc4.4.2,Glibc2.11,龙芯运行环境是玲珑一体机，GCC4.3(龙梦修改版）,Glibc2.10。</p>
<p>对比结果可见：X86中WebKit浏览器的性能要明显优于Firefox，达到两倍之多。龙芯相比起来还有些差距，不过相信优化后龙芯的性能会更好。</p>
<p><strong>参考</strong></p>
<p>https://bugs.webkit.org/show_bug.cgi?id=30144</p>
<p>http://dev.lemote.com/code/firefox-3.7-loongson-jit</p>
<p>http://lemote.com/bbs/viewthread.php?tid=26687&#038;extra=page%3D1</p>
<p>http://en.wikipedia.org/wiki/Google_Chrome</p>
<p>http://ineolee.com/pc/several-browser-core-introduction/</p>
<div style=float:left><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share/" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END --></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="webkit-龙小组成立" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F07%2F10%2F11060%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">webkit-龙小组成立</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/05/11067795.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="龙芯N32系统上的Squirrelfish性能" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F06%2F28%2F10983%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">龙芯N32系统上的Squirrelfish性能</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="JIT Compiler and Virtual Machine SW Engineer for Web Browsers in Qualcomm" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2011%2F10%2F09%2F11773%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">JIT Compiler and Virtual Machine SW Engineer for Web Browsers in Qualcomm</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="擦亮眼睛 “百度Hi”用户协议有猫腻" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F06%2F9928%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F22%2F10668%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115378.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">擦亮眼睛 “百度Hi”用户协议有猫腻</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table><p><h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2009/12/24/10451/' rel='bookmark' title='拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)'>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</a></li>
<li><a href='http://www.lingcc.com/2009/12/29/10503/' rel='bookmark' title='GCC初窥'>GCC初窥</a></li>
<li><a href='http://www.lingcc.com/2010/01/05/10588/' rel='bookmark' title='用crossdev装龙芯的n32 gnu交叉工具链'>用crossdev装龙芯的n32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2010/01/07/10594/' rel='bookmark' title='使用crossdev安装龙芯的O32 gnu交叉工具链'>使用crossdev安装龙芯的O32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2009/12/31/10534/' rel='bookmark' title='Gentoo中的交叉编译利器&#8211;crossdev'>Gentoo中的交叉编译利器&#8211;crossdev</a></li>
<li><a href='http://www.lingcc.com/2010/06/28/10983/' rel='bookmark' title='龙芯N32系统上的Squirrelfish性能'>龙芯N32系统上的Squirrelfish性能</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.lingcc.com/2010/01/22/10668/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>十年改变我们的那些技术</title>
		<link>http://www.lingcc.com/2009/12/30/10517/</link>
		<comments>http://www.lingcc.com/2009/12/30/10517/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 13:25:46 +0000</pubDate>
		<dc:creator>erlv</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[IT生活]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[云计算]]></category>
		<category><![CDATA[开源]]></category>
		<category><![CDATA[摄影]]></category>

		<guid isPermaLink="false">http://www.lingcc.com/?p=10517</guid>
		<description><![CDATA[还有一周，公元记年的最后一位又要从0开始了。回首这十年，互联网技术的发展令人震惊。是时候总结以下这十年了，那些改变我们生活的技术和不怎么有用的技术们了。原作者通过邀请O‘Reilly内部的编辑，作者和朋友们，以及一些工业界的人士，连同一些评论和趋势，为我们总结了分别十种十年来最好和最坏的技术，这些技术没有特定的顺序。 AJAX&#8211;已经很难记起AJAX(Asynchronous JavaScript and XML)诞生之前的生活时什么样子了吧，没关系，我将带你回忆。那是非常枯燥的年代，Web 1.0包含了大量的静态网页，每次点击都需要在web服务器上处理一个轮回，若你需要更多内容，就必须在网页中嵌入JAVA工具，并在心中祈祷用户的浏览器支持它。没有AJAX，我们就不会走到Web2.0,GMail和很多基于云计算的web应用。Flash依然很流行，但是在HTML5将要到来的时候，以前需要Flash或者Silverlight才能运行的RIA(胖互联网应用，Rich Internet Application)现在都能使用AJAX完成了。 Twitter(咱们国内应该叫微博)&#8211;一开始的时候，博客(blog)就想它的名字一样，只是一个网页记录(web log).换句话说，就是一个作者自己办的网站杂志。如今，博客已经演化成胡言乱语，发表见解论文和所有作者想法的一个平台。这时候Twitter出现了。当然，人们想要知道某个名人晚饭吃了什么，最有用的微博是一个小的URL地址加上一小段评论，然后把这些信息实时的粗汉地出去，通知每个人关于现在发生的新闻，或者某个角落的餐馆里的奇闻轶事。这也是为什么Twitter容易成为该领域的引领者。 WIFI的普及&#8211;我想让你想想一下90年代中期你在路上的情景，你走进一个酒店，在房间里拿出笔记本电脑，然后找到你的RJ-11电缆，检测房间的电话是否支持音频拨号(通常不支持).然后，你查找本地的电话号码，找到当地ISP，在你的笔记本上拨号，于是，你有了一个能收发email的56k的网络。而现在，WIFI到处都是，你甚至不用付钱，就能随时随地的连接高速网络，从本地的麦当劳到你的宾馆房间到机场。当然，没有底层的支持是不可能的，自从不安全的WIFI接入点导致了很多头疼的安全问题，而且除非你的杀毒软件是最新的，否则开放的接入点也有头痛的安全问题，不管怎样，WIFI的普及已经能让我们的世界更加的互联。 电话更智能&#8211;在90年代默契，我们有了第一部数字移动电话，但是PDA和手机联姻得到的智能手机还是用了十年的时间才降生。Palm和Treos合作，生意越做越大，同时Windows Mobile系统也开始出现。RIM的黑莓将更多的商务功能装进手机，但是貌似现在iphone抢来了接力棒大步向前冲。你可能还不确定Android是不是比3GS和Pre更好，但是不可否认，IPhone凭借App Store的商业模式，做了智能手机的第一把交椅。现在看来下一个融合点是上网本，因为更多的上网本有了3G接入功能，接下来，VoIP Skype将到来并走向商业应用。 极客文化&#8211;DIY仿佛永远让人发烧。从Ham radio到摄影到铁路建模。这个十年仿佛将每个人的积极性调动了起来，最早是从无线电发烧友们开始的。Arduino使得每个人都能将控制功能嵌入任何设备，而业余PCB爱好者则更是将爱好从杂乱无章的厨房应用，到收购点击-上传设计，甚至一个能打印3D人物模型的打印机。工业界也对这些极客们束手无策。虽然电子产品越来越复杂使得大多数人改造他们越来越没有勇气，但实际上极客们已经能将一台电脑变成任何一种你能想象出的设备，然后重新编程完成更多的事情。不喜欢你数码相机上的软件？那就安装你自己的吧，只要把DVN安装到你的linux系统里。同时，Mythbusters和Maker Faire事件也说明，只要有巨大的市场，硬件hack也能吸引很多的眼球。 开源变成主流--你能快速说出5中开源软件吗？但是1999年，这可能很难做到。现在，Firefox已经很易用，Open Office,Chrome,Audacity,Eclipse(若你是个开发者)。Blender,VLC还有很多。很多上网本都是用linux作为默认系统。正如Gandhi所说：“他们先躲避你，接着嘲笑你，接着打击你，然后你就赢了”,当微软发布开源代码的时候，我们知道我们已经在从打击走向胜利的路上了。 更多的资源&#8211;56k的猫，20M硬盘，640K内存，2Mhz处理器。这些你都不需要走进博物馆作为艺术品看到。当然，你现在有了更好的体验。摩尔定律已经引领技术创新很多年，现在貌似存储和带宽变成了平静。我的Iphone的硬盘是我第一台电脑的3200倍，我Mac电脑上的显存是我第一台电脑的16000倍。我们现在都能使用我们的手机作比十年前在我们的PC上还要惊艳的事情。 最坏的几种技术没有翻译，窃以为和我们关系不大。 原稿来自O‘Relly： http://radar.oreilly.com/2009/12/the-best-and-the-worst-tech-of.html 相关文章： WebKit和Firefox的JavaScript性能对比 如果SourceForge.net沦为政治工具？ 暴力了一把 用crossdev装龙芯的n32 gnu交叉工具链 Ebuild and emerge 拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F08%2F27%2F9982%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">zz Linux下的段错误的原因及调试</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F11%2F10639%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">令人振奋的第六感技术</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F10%2F10625%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">小议并行计算</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F05%2F07%2F10916%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">期待未来-一张趣图</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2009%2F04%2F19%2F9986%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">并行计算前景-引言</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>
<h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2010/01/26/10671/' rel='bookmark' title='如果SourceForge.net沦为政治工具？'>如果SourceForge.net沦为政治工具？</a></li>
<li><a href='http://www.lingcc.com/2010/01/12/10645/' rel='bookmark' title='暴力了一把'>暴力了一把</a></li>
<li><a href='http://www.lingcc.com/2010/01/05/10588/' rel='bookmark' title='用crossdev装龙芯的n32 gnu交叉工具链'>用crossdev装龙芯的n32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2010/01/02/10570/' rel='bookmark' title='Ebuild and emerge'>Ebuild and emerge</a></li>
<li><a href='http://www.lingcc.com/2009/12/24/10451/' rel='bookmark' title='拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)'>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>还有一周，公元记年的最后一位又要从0开始了。回首这十年，互联网技术的发展令人震惊。是时候总结以下这十年了，那些改变我们生活的技术和不怎么有用的技术们了。原作者通过邀请O‘Reilly内部的编辑，作者和朋友们，以及一些工业界的人士，连同一些评论和趋势，为我们总结了分别十种十年来最好和最坏的技术，这些技术没有特定的顺序。</p>
<ul>
<li><strong>AJAX</strong>&#8211;已经很难记起AJAX(Asynchronous JavaScript and XML)诞生之前的生活时什么样子了吧，没关系，我将带你回忆。那是非常枯燥的年代，Web 1.0包含了大量的静态网页，每次点击都需要在web服务器上处理一个轮回，若你需要更多内容，就必须在网页中嵌入JAVA工具，并在心中祈祷用户的浏览器支持它。没有AJAX，我们就不会走到Web2.0,GMail和很多基于云计算的web应用。Flash依然很流行，但是在HTML5将要到来的时候，以前需要Flash或者Silverlight才能运行的RIA(胖互联网应用，Rich Internet Application)现在都能使用AJAX完成了。<span id="more-10517"></span></li>
<li><strong>Twitter</strong>(咱们国内应该叫微博)&#8211;一开始的时候，博客(blog)就想它的名字一样，只是一个网页记录(web log).换句话说，就是一个作者自己办的网站杂志。如今，博客已经演化成胡言乱语，发表见解论文和所有作者想法的一个平台。这时候Twitter出现了。当然，人们想要知道某个名人晚饭吃了什么，最有用的微博是一个小的URL地址加上一小段评论，然后把这些信息实时的粗汉地出去，通知每个人关于现在发生的新闻，或者某个角落的餐馆里的奇闻轶事。这也是为什么Twitter容易成为该领域的引领者。</li>
<li><strong>WIFI的普及</strong>&#8211;我想让你想想一下90年代中期你在路上的情景，你走进一个酒店，在房间里拿出笔记本电脑，然后找到你的RJ-11电缆，检测房间的电话是否支持音频拨号(通常不支持).然后，你查找本地的电话号码，找到当地ISP，在你的笔记本上拨号，于是，你有了一个能收发email的56k的网络。而现在，WIFI到处都是，你甚至不用付钱，就能随时随地的连接高速网络，从本地的麦当劳到你的宾馆房间到机场。当然，没有底层的支持是不可能的，自从不安全的WIFI接入点导致了很多头疼的安全问题，而且除非你的杀毒软件是最新的，否则开放的接入点也有头痛的安全问题，不管怎样，WIFI的普及已经能让我们的世界更加的互联。</li>
<li><strong>电话更智能</strong>&#8211;在90年代默契，我们有了第一部数字移动电话，但是PDA和手机联姻得到的智能手机还是用了十年的时间才降生。Palm和Treos合作，生意越做越大，同时Windows Mobile系统也开始出现。RIM的黑莓将更多的商务功能装进手机，但是貌似现在iphone抢来了接力棒大步向前冲。你可能还不确定Android是不是比3GS和Pre更好，但是不可否认，IPhone凭借App Store的商业模式，做了智能手机的第一把交椅。现在看来下一个融合点是上网本，因为更多的上网本有了3G接入功能，接下来，VoIP Skype将到来并走向商业应用。</li>
<li><strong>极客文化</strong>&#8211;DIY仿佛永远让人发烧。从Ham radio到摄影到铁路建模。这个十年仿佛将每个人的积极性调动了起来，最早是从无线电发烧友们开始的。Arduino使得每个人都能将控制功能嵌入任何设备，而业余PCB爱好者则更是将爱好从杂乱无章的厨房应用，到收购点击-上传设计，甚至一个能打印3D人物模型的打印机。工业界也对这些极客们束手无策。虽然电子产品越来越复杂使得大多数人改造他们越来越没有勇气，但实际上极客们已经能将一台电脑变成任何一种你能想象出的设备，然后重新编程完成更多的事情。不喜欢你数码相机上的软件？那就安装你自己的吧，只要把DVN安装到你的linux系统里。同时，Mythbusters和Maker Faire事件也说明，只要有巨大的市场，硬件hack也能吸引很多的眼球。</li>
<li><strong>开源变成主流-</strong>-你能快速说出5中开源软件吗？但是1999年，这可能很难做到。现在，Firefox已经很易用，Open Office,Chrome,Audacity,Eclipse(若你是个开发者)。Blender,VLC还有很多。很多上网本都是用linux作为默认系统。正如Gandhi所说：“他们先躲避你，接着嘲笑你，接着打击你，然后你就赢了”,当微软发布开源代码的时候，我们知道我们已经在从打击走向胜利的路上了。</li>
<li><strong>更多的资源</strong>&#8211;56k的猫，20M硬盘，640K内存，2Mhz处理器。这些你都不需要走进博物馆作为艺术品看到。当然，你现在有了更好的体验。摩尔定律已经引领技术创新很多年，现在貌似存储和带宽变成了平静。我的Iphone的硬盘是我第一台电脑的3200倍，我Mac电脑上的显存是我第一台电脑的16000倍。我们现在都能使用我们的手机作比十年前在我们的PC上还要惊艳的事情。</li>
</ul>
<p>最坏的几种技术没有翻译，窃以为和我们关系不大。</p>
<p>原稿来自O‘Relly： http://radar.oreilly.com/2009/12/the-best-and-the-worst-tech-of.html</p>
<div style=float:left><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share/" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END --></div><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F08%2F27%2F9982%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">zz Linux下的段错误的原因及调试</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F11%2F10639%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">令人振奋的第六感技术</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F10%2F10625%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">小议并行计算</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F05%2F07%2F10916%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">期待未来-一张趣图</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2009%2F04%2F19%2F9986%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F30%2F10517%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">并行计算前景-引言</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table><p><h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2010/01/26/10671/' rel='bookmark' title='如果SourceForge.net沦为政治工具？'>如果SourceForge.net沦为政治工具？</a></li>
<li><a href='http://www.lingcc.com/2010/01/12/10645/' rel='bookmark' title='暴力了一把'>暴力了一把</a></li>
<li><a href='http://www.lingcc.com/2010/01/05/10588/' rel='bookmark' title='用crossdev装龙芯的n32 gnu交叉工具链'>用crossdev装龙芯的n32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2010/01/02/10570/' rel='bookmark' title='Ebuild and emerge'>Ebuild and emerge</a></li>
<li><a href='http://www.lingcc.com/2009/12/24/10451/' rel='bookmark' title='拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)'>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.lingcc.com/2009/12/30/10517/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</title>
		<link>http://www.lingcc.com/2009/12/24/10451/</link>
		<comments>http://www.lingcc.com/2009/12/24/10451/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 02:44:43 +0000</pubDate>
		<dc:creator>erlv</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gcc]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[JIT]]></category>
		<category><![CDATA[MIPS]]></category>
		<category><![CDATA[N32]]></category>
		<category><![CDATA[nanojit]]></category>
		<category><![CDATA[O32]]></category>
		<category><![CDATA[spec]]></category>
		<category><![CDATA[TraceMonkey]]></category>
		<category><![CDATA[后端]]></category>
		<category><![CDATA[开源]]></category>
		<category><![CDATA[性能]]></category>
		<category><![CDATA[龙芯]]></category>

		<guid isPermaLink="false">http://www.lingcc.com/?p=10451</guid>
		<description><![CDATA[	啥是nanojit？

Javascript的JIT后端，原先firefox直接使用javascript解释器，效率比较低。nanojit可以...<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F08%2F15%2F11127%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">关于龙芯公司的小道消息</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F06%2F28%2F10983%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">龙芯N32系统上的Squirrelfish性能</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F17%2F9957%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">胡伟武：龙芯5年内改变全球CPU格局</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F01%2F23%2F9890%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">zzzz龙芯之火，可以燎原（下）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F09%2F19%2F11208%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">GCC即将支持龙芯3A</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>
<h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2010/01/05/10588/' rel='bookmark' title='用crossdev装龙芯的n32 gnu交叉工具链'>用crossdev装龙芯的n32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2010/01/07/10594/' rel='bookmark' title='使用crossdev安装龙芯的O32 gnu交叉工具链'>使用crossdev安装龙芯的O32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2009/12/29/10503/' rel='bookmark' title='GCC初窥'>GCC初窥</a></li>
<li><a href='http://www.lingcc.com/2010/04/30/10822/' rel='bookmark' title='前瞻-LLVM大事记(2004-2010)'>前瞻-LLVM大事记(2004-2010)</a></li>
<li><a href='http://www.lingcc.com/2010/03/25/10717/' rel='bookmark' title='为龙芯电脑安装操作系统常见问题'>为龙芯电脑安装操作系统常见问题</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<ul>
<li><strong>啥是nanojit？</strong></li>
</ul>
<p>Javascript的JIT后端，原先firefox直接使用javascript解释器，效率比较低。nanojit可以将频繁执行的javascript代码直接翻译为机器码执行，效率更高，性能更好。详细的介绍可以参看这篇文章：<a title="Permanent Link to &quot;an overview of TraceMonkey&quot;" rel="bookmark" href="http://hacks.mozilla.org/2009/07/tracemonkey-overview/" target="_blank">an overview of TraceMonkey</a>，  (<a href="http://www.mijia.org/blog/?p=233" target="_blank">我是中国人，我要看中文</a> ).本博还有一篇英文介绍，自己的蹩脚英语拙作。确实闲着无聊可以猛击<a title="TraceMonkey in SpiderMonkey" rel="nofollow" href="http://www.lingcc.com/2009/11/29/10161/">这里</a>。</p>
<ul>
<li><strong>咋又蹦出来个tracemonkey？</strong></li>
</ul>
<p>这得先从spidermonkey说起，spidermonkey是firefox里的Javascprit解释器。因为增加了Nanojit，这种通过跟踪(trace)热JAVAscript代码的JIT。所以改名叫tracemonkey。</p>
<ul>
<li><strong>我只关心这个firefox！</strong></li>
</ul>
<p>那就从这个地址下载吧，<a href="http://www.lingcc.com/upload-files/firefox_release.mips1-1_mipsel.deb">firefox_release.mips1-1_mipsel.deb</a>. 下载之后切换到root帐号或者直接执行。注意目前Nanojit只测试了O32的龙芯，龙芯默认的操作系统和其他Debian衍生系统都能使用(目前测试了debian-en和Rays,没有问题).目前2E和2F的机器都能使用。N32的gentoo系统还不支持。<span id="more-10451"></span><br />
<code><br />
sudo dpkg -i firefox_release.mips1-1_mipsel.deb</code></p>
<p>然后执行firefox命令就行了(若su 切换到root安装且遇到No display specified 错，你可能需要先退出root账户).</p>
<p>安装的这个firefox是基于mozilla-central中最新的3.7a1pre修改而来，虽然在测试中，没发现firefox本身很多bug，但不排除这种可能性。所以用之前您得心里有底 : )</p>
<p>注意，两个不同版本的firefox不能同时运行。你如果想测试性能的话，需要先关掉，再启动另一个。</p>
<ul>
<li><strong>这个命令都在我可爱的龙芯电脑上做了啥？</strong></li>
</ul>
<p>呵呵，别紧张，它只是在/usr/local下安装了支持Nanojit的firefox，修改的文件夹有share，bin ，lib和include。你原来的firefix还在。安装了之后默认会启动新安装的这个firefox。如果你仍然想换回原来的，可以修改PATH中的搜索次序。</p>
<ul>
<li><strong>给我个理由先，为啥要装它</strong></li>
</ul>
<p>一句话概括，执行javascript时貌似有点快，貌似？！对，因为目前优化还少，大部分工作在做后端的移植和调试工作。以后将会有优化和提升。所以不排除你的某些应用无法得到很高的加速。但是它毕竟有点快，使用Sun spider测试集，加速比1.73.我运行了gmail，速度还行，呵呵.详细的讨论见龙芯论坛的讨论贴<a href="http://www.lemote.com/bbs/viewthread.php?tid=26687&amp;extra=page%3D1&amp;page=1">loongson上firefox的nanojit支持</a></p>
<ul>
<li><strong>博主真絮叨，能做出这么牛的东西？</strong></li>
</ul>
<p>问的好！呵呵，不是我做的。是某牛人 zsc做的。我只是猥琐的趁机将其拿来为我的小博赚点流量。不过若你有什么问题，可以在<a href="http://www.lingcc.com/2009/12/24/10451/">lingcc.com</a>，或者到上面的龙芯论坛的帖子中讨论:)</p>
<ul>
<li><strong>最近更新2010-01-14</strong></li>
</ul>
<p>改进正则表达式处理，nanojit加速比由1.73上升到2.18.<strong>增加Thundbird中的nanojit支持，</strong><br />
<strong>下载最新<a href="http://dev.lemote.com/cgit/firefox-3.7-loongson-jit.git/tree/mozilla_1-1_mipsel.deb">mozilla_1-1_mipsel.deb</a>（有龙芯Nanojit支持的firfox,2010年1月14日)</strong><br />
<strong>下载最新</strong><a href="http://dev.lemote.com/cgit/firefox-3.7-loongson-jit.git/tree/thunderbird3-ls_1-1_mipsel.deb">thunderbird3-ls_1-1_mipsel.deb</a>(有龙芯Nanojit支持的Thunderbird，2010年1月14日）<br />
你也可以从这里找到详细的源码下载和编译指导：<a href="http://dev.lemote.com/code/firefox-3.7-loongson-jit/">http://dev.lemote.com/code/firefox-3.7-loongson-jit/</a></p>
<p>为支持龙芯的开源爱好者们，加油！</p>
<p>Enjot it !</p>
<div style=float:left><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share/" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END --></div><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F08%2F15%2F11127%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">关于龙芯公司的小道消息</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F06%2F28%2F10983%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">龙芯N32系统上的Squirrelfish性能</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F17%2F9957%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">胡伟武：龙芯5年内改变全球CPU格局</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F01%2F23%2F9890%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">zzzz龙芯之火，可以燎原（下）</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F09%2F19%2F11208%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F24%2F10451%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">GCC即将支持龙芯3A</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table><p><h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2010/01/05/10588/' rel='bookmark' title='用crossdev装龙芯的n32 gnu交叉工具链'>用crossdev装龙芯的n32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2010/01/07/10594/' rel='bookmark' title='使用crossdev安装龙芯的O32 gnu交叉工具链'>使用crossdev安装龙芯的O32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2009/12/29/10503/' rel='bookmark' title='GCC初窥'>GCC初窥</a></li>
<li><a href='http://www.lingcc.com/2010/04/30/10822/' rel='bookmark' title='前瞻-LLVM大事记(2004-2010)'>前瞻-LLVM大事记(2004-2010)</a></li>
<li><a href='http://www.lingcc.com/2010/03/25/10717/' rel='bookmark' title='为龙芯电脑安装操作系统常见问题'>为龙芯电脑安装操作系统常见问题</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.lingcc.com/2009/12/24/10451/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>TraceMonkey in SpiderMonkey</title>
		<link>http://www.lingcc.com/2009/11/29/10161/</link>
		<comments>http://www.lingcc.com/2009/11/29/10161/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 03:27:04 +0000</pubDate>
		<dc:creator>erlv</dc:creator>
				<category><![CDATA[编译技术]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[JIT]]></category>
		<category><![CDATA[ld]]></category>
		<category><![CDATA[mit]]></category>
		<category><![CDATA[MPI]]></category>
		<category><![CDATA[nanojit]]></category>
		<category><![CDATA[spec]]></category>
		<category><![CDATA[SSA]]></category>
		<category><![CDATA[sse]]></category>
		<category><![CDATA[TraceMonkey]]></category>
		<category><![CDATA[USE]]></category>

		<guid isPermaLink="false">http://lingcc.net/?p=10161</guid>
		<description><![CDATA[SpiderMonkey is the JavaScript VM embedded in Mozilla firefox . TraceMonkey is a  scheme in SpiderM...<table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F27%2F9962%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">The importance of being updated</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10163%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">GoDaddy 优惠码</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F02%2F10570%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Ebuild and emerge</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">gentoo的相关配置-make.conf</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>
<h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2009/12/24/10451/' rel='bookmark' title='拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)'>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</a></li>
<li><a href='http://www.lingcc.com/2010/05/03/10884/' rel='bookmark' title='安装LLVM2.7 step by step'>安装LLVM2.7 step by step</a></li>
<li><a href='http://www.lingcc.com/2009/12/28/10469/' rel='bookmark' title='Open64课程-结语'>Open64课程-结语</a></li>
<li><a href='http://www.lingcc.com/2009/12/29/10503/' rel='bookmark' title='GCC初窥'>GCC初窥</a></li>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2009/12/21/10379/' rel='bookmark' title='Open64课程-循环嵌套优化(LNO)'>Open64课程-循环嵌套优化(LNO)</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>SpiderMonkey is the JavaScript VM embedded in Mozilla firefox . TraceMonkey is a  scheme in SpiderMonkey to turn some JavaScript hot code to native instructions in order to make it run fast. It was been developed by Andreas Gal etc in mozilla and the paper about it was published on PLDI,2009. The paper was named :Trace-based Just-in-Time Type Specialization for Dynamic Languages.</p>
<p>TraceMonkey simply identifies loop back edges and do the optimization only on loops.  every loop back edge is a potential trace point.The loop becomes hot on its second iteration,so TraceMonkey records the code along the trace in a low-level compiler intermediate representation LIR(In Nanojit, <strong>LIR</strong> is the source language for compilation to machine code. LIR stands for <em>low-level intermediate representation</em>.) .TraceMonkey stops recording when execution returns to the loop header or exits the loop.After recording is finished,TraceMonkey compiles the trace to native code using the recorded type information for optimization.These code can be entered if the interpreter PC and the types of values match those observed when trace recording was started.<span id="more-10161"></span></p>
<p>When Tacemonkey detects a loop header and when the loop header has been executed 2 times, It starts a tree to record the trace and type map and mark the trace as the root of a tree.</p>
<p>Then the backend of TraceMonkey-Nanojit comes up ,It will turn the traced LIR to native code .nanojit is part of the tracemonkey,which will translate the recorded trace to an optimized machine code tree.</p>
<p>Traces are in SSA form and have no join points or phi-nodes.And the optimizaions of nanojit must run quickly.Every time the trace recorder emits a LIR instruction,the instruction is immediately passed to pipeline filters which will do optimizations.</p>
<p>There are two types of filters: forward filters and backward filters. The forward filters will do some constant subexpression elimination,expression simplification,then the trace will be recorded. When the recording is completed,nanojit runs the backward optimization filters.nanojit reads one LIR instruction ata a time,and pass it through the pipeline. backward filters do dead data-stack store elimination ,dead call-stack store elimination and dead code elimination optimizations. After a LIR instruction is successfully read from the backward filter pipeline,nanojit&#8217;s code generator emit native machine instructions for it.</p>
<p>Register allocation in nanojit is a simple greedy algorithm.It makes a single backward paass over the trace and use a class heuristic that selects the “oldest” register carried values.</p>
<p>So,How does TraceMonkey coorperate with firefox?</p>
<p>Compiled traces are stored in a trace cache,indexed by interpreter PC and type map,The intepreter must hit a loop edge and enter the monitor in order to call a native trace for the first time.To execute a trace, the monitor must build a trace activation record containing imported local and global variables, temporary stack space, and space for arguments to native calls.The local and global values are then copied from the interpreter state to the trace activation record,then the trace is called like a normal C function pointer.<br />
When a trace call returns.the monitor first checks the reason for the trace exit,then it pops or synthesizes interpreter JavaScript call stack frames as needed, finally it copies the impored variables back from the trace activation record to the interpreter state.</p>
<div style=float:left><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share/" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END --></div><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F27%2F9962%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">The importance of being updated</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10163%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">GoDaddy 优惠码</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F02%2F10570%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Ebuild and emerge</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">gentoo的相关配置-make.conf</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table><p><h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2009/12/24/10451/' rel='bookmark' title='拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)'>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</a></li>
<li><a href='http://www.lingcc.com/2010/05/03/10884/' rel='bookmark' title='安装LLVM2.7 step by step'>安装LLVM2.7 step by step</a></li>
<li><a href='http://www.lingcc.com/2009/12/28/10469/' rel='bookmark' title='Open64课程-结语'>Open64课程-结语</a></li>
<li><a href='http://www.lingcc.com/2009/12/29/10503/' rel='bookmark' title='GCC初窥'>GCC初窥</a></li>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2009/12/21/10379/' rel='bookmark' title='Open64课程-循环嵌套优化(LNO)'>Open64课程-循环嵌套优化(LNO)</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.lingcc.com/2009/11/29/10161/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</title>
		<link>http://www.lingcc.com/2008/03/31/9966/</link>
		<comments>http://www.lingcc.com/2008/03/31/9966/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 16:00:00 +0000</pubDate>
		<dc:creator>erlv</dc:creator>
				<category><![CDATA[编译技术]]></category>
		<category><![CDATA[Adobe AIR]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ld]]></category>
		<category><![CDATA[字体]]></category>

		<guid isPermaLink="false">http://lingcc.net/blog/?p=9966</guid>
		<description><![CDATA[ugmbbc发布于 2008-03-31 12:09:10&#124; 3356 次阅读 字体：大 小 打印预览 在现场报道Firefox 4的产品规划后,我访问了Mozilla实验室副总Chris Beard.他正在进行Firefox 3没有的东西,但如果一切顺利,这些东西都会在Firefox 4实现. Beard的哲学是:浏览器需要进化.他认为浏览器的概念在过去10年没有基本上的改变,它还是一个孤立的软件.Mozilla Lab的工作是模糊浏览器的界线,让它更紧密地与使用者的电脑整合,且更能紧扣网络服务.如此扩张之後,浏览器将成为各种应用软件更有力且更普遍的平台. Mozilla目前有两个不同计划推动这个目标:Prism和Weave. Prism是Mozilla让Firefox浏览器的应用大增的计划.其中一部份是提供浏览核心给应用程序开发者,让他们制作如Zimbra Desktop等本质上是网络应用软件,但看起来不像的东西. 最终的梦想,是能够把任何网站或网络应用程序,变成可以直接在桌面执行的软件.这个方案有一大部分是让网站/应用程序在离线的情况下使用,HTML 5(下一版的网站加密基本标准)包含对区域、离线资源的详尽支持. Mozilla高层表示,HTML 5和Prism将使得Google Gears变得毫无用处.更别提其他正在制作中的重要、专有的网络应用平台,如Adobe AIR和微软Silverlight. Weave 则是往另一个方向扩张Firefox浏览器:不是朝向桌面,而是更深入互联网.Mozilla要让个人的浏览经验跟随他们到任何机器上,也就是将书签、首 页、我的最爱和密码等同步存放在一个线上服务,使用者无论何时启动浏览器,都能带着这些东西.随着更多人每天使用不同的浏览设备上网(笔记本电脑、手机, 或不同的PC),这一点变得更重要. Firefox 3已经为此打下基础,设有一个存储使用者偏好与最爱的交换资料库.不过,这在第三版还无法作到跨浏览器同步.Beard希望在Firefox 4能实现这项扩张. 但Firefox 3使用者可体验到某些在线服务投入他们的浏览器内.例如,Mozilla每隔30分钟就会检查所有执行中的浏览器,驱赶自动下载的恶意软件和钓鱼骗局. Beard 希望新的在线/离线、浏览器/服务,对使用者而言是更聪明的.初期的展现包括Firefox 3的新&#8220;地址列&#8221;,能在使用者根据之前的浏览记录或网页搜索输入网址时,提供安全的URL建议.Beard希望将此扩张为一个&#8220;语言使用者界面&#8221;,让他们 在地址列中输入简单的英语指令.他说Quicksilver和Enso是他参考这项功能的产品. Beard说Mozilla实验室也在进行其他&#8220;疯狂的构想&#8221;,但Prism和Weave等技术已经准备好在下一版的Firefox推出,他说:&#8220;希望能赶在12月.&#8221; 作者:Rafe Needleman CNET消息 相关文章： 经验之谈:做好预防措施,保护好自己的电脑的13个Tips 拥有Nanojit龙芯后端的firefox发布(10年1月14日更新) WebKit和Firefox的JavaScript性能对比 TraceMonkey in SpiderMonkey gentoo的相关配置-make.conf GCC中的pie和fpie选项<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="经验之谈:做好预防措施,保护好自己的电脑的13个Tips" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115636.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">经验之谈:做好预防措施,保护好自己的电脑的13个Tips</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="七日谈・七日独白：重画起跑线是一种悲壮的抗争[2008-11]" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">七日谈・七日独白：重画起跑线是一种悲壮的抗争[2008-11]</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Adobe AIR是什么？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F13%2F10285%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Adobe AIR是什么？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="TraceMonkey in SpiderMonkey" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">TraceMonkey in SpiderMonkey</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="百度IM内测版界面曝光" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F29%2F9908%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115680.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">百度IM内测版界面曝光</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>
<h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2008/02/19/9897/' rel='bookmark' title='经验之谈:做好预防措施,保护好自己的电脑的13个Tips'>经验之谈:做好预防措施,保护好自己的电脑的13个Tips</a></li>
<li><a href='http://www.lingcc.com/2009/12/24/10451/' rel='bookmark' title='拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)'>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</a></li>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2009/11/29/10161/' rel='bookmark' title='TraceMonkey in SpiderMonkey'>TraceMonkey in SpiderMonkey</a></li>
<li><a href='http://www.lingcc.com/2008/02/27/9904/' rel='bookmark' title='gentoo的相关配置-make.conf'>gentoo的相关配置-make.conf</a></li>
<li><a href='http://www.lingcc.com/2010/01/08/10609/' rel='bookmark' title='GCC中的pie和fpie选项'>GCC中的pie和fpie选项</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><span>ugmbbc发布于 2008-03-31 12:09:10|</p>
<p>3356  次阅读 字体：大 小 <a target="_blank" href="http://m.cnbeta.com/print.php?sid=52403">打印预览</a></span></p>
<p><a href="http://www.cnbeta.com/topic.php?topicid=163"><img align="right" name="sign" alt="Mozilla FireFox" src="http://www.cnbeta.com/images/topics/firefox_logo.gif" /></a></p>
<p><span style="font-weight: bold;">在现场报道Firefox 4的产品规划后,我访问了Mozilla实验室副总Chris Beard.他正在进行Firefox 3没有的东西,但如果一切顺利,这些东西都会在Firefox 4实现.</span><br />
Beard的哲学是:浏览器需要进化.他认为浏览器的概念在过去10年没有基本上的改变,它还是一个孤立的软件.Mozilla Lab的工作是模糊浏览器的界线,让它更紧密地与使用者的电脑整合,且更能紧扣网络服务.如此扩张之後,浏览器将成为各种应用软件更有力且更普遍的平台.</p>
<p>Mozilla目前有两个不同计划推动这个目标:Prism和Weave.</p>
<p>Prism是Mozilla让Firefox浏览器的应用大增的计划.其中一部份是提供浏览核心给应用程序开发者,让他们制作如Zimbra Desktop等本质上是网络应用软件,但看起来不像的东西.</p>
<p>最终的梦想,是能够把任何网站或网络应用程序,变成可以直接在桌面执行的软件.这个方案有一大部分是让网站/应用程序在离线的情况下使用,HTML 5(下一版的网站加密基本标准)包含对区域、离线资源的详尽支持.</p>
<p>Mozilla高层表示,HTML 5和Prism将使得Google Gears变得毫无用处.更别提其他正在制作中的重要、专有的网络应用平台,如Adobe AIR和微软Silverlight.</p>
<p>Weave 则是往另一个方向扩张Firefox浏览器:不是朝向桌面,而是更深入互联网.Mozilla要让个人的浏览经验跟随他们到任何机器上,也就是将书签、首 页、我的最爱和密码等同步存放在一个线上服务,使用者无论何时启动浏览器,都能带着这些东西.随着更多人每天使用不同的浏览设备上网(笔记本电脑、手机, 或不同的PC),这一点变得更重要.</p>
<p>Firefox 3已经为此打下基础,设有一个存储使用者偏好与最爱的交换资料库.不过,这在第三版还无法作到跨浏览器同步.Beard希望在Firefox 4能实现这项扩张.</p>
<p>但Firefox 3使用者可体验到某些在线服务投入他们的浏览器内.例如,Mozilla每隔30分钟就会检查所有执行中的浏览器,驱赶自动下载的恶意软件和钓鱼骗局.</p>
<p>Beard 希望新的在线/离线、浏览器/服务,对使用者而言是更聪明的.初期的展现包括Firefox 3的新&ldquo;地址列&rdquo;,能在使用者根据之前的浏览记录或网页搜索输入网址时,提供安全的URL建议.Beard希望将此扩张为一个&ldquo;语言使用者界面&rdquo;,让他们 在地址列中输入简单的英语指令.他说Quicksilver和Enso是他参考这项功能的产品.</p>
<p>Beard说Mozilla实验室也在进行其他&ldquo;疯狂的构想&rdquo;,但Prism和Weave等技术已经准备好在下一版的Firefox推出,他说:&ldquo;希望能赶在12月.&rdquo;</p>
<p><span style="font-weight: bold;">作者:Rafe Needleman</span><br style="font-weight: bold;" /><br />
<span style="font-weight: bold;">CNET消息</span></p>
<div style=float:left><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share/" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END --></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="经验之谈:做好预防措施,保护好自己的电脑的13个Tips" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115636.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">经验之谈:做好预防措施,保护好自己的电脑的13个Tips</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="七日谈・七日独白：重画起跑线是一种悲壮的抗争[2008-11]" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">七日谈・七日独白：重画起跑线是一种悲壮的抗争[2008-11]</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Adobe AIR是什么？" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2009%2F12%2F13%2F10285%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Adobe AIR是什么？</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="TraceMonkey in SpiderMonkey" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2009%2F11%2F29%2F10161%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">TraceMonkey in SpiderMonkey</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="百度IM内测版界面曝光" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F29%2F9908%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115680.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">百度IM内测版界面曝光</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table><p><h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2008/02/19/9897/' rel='bookmark' title='经验之谈:做好预防措施,保护好自己的电脑的13个Tips'>经验之谈:做好预防措施,保护好自己的电脑的13个Tips</a></li>
<li><a href='http://www.lingcc.com/2009/12/24/10451/' rel='bookmark' title='拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)'>拥有Nanojit龙芯后端的firefox发布(10年1月14日更新)</a></li>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2009/11/29/10161/' rel='bookmark' title='TraceMonkey in SpiderMonkey'>TraceMonkey in SpiderMonkey</a></li>
<li><a href='http://www.lingcc.com/2008/02/27/9904/' rel='bookmark' title='gentoo的相关配置-make.conf'>gentoo的相关配置-make.conf</a></li>
<li><a href='http://www.lingcc.com/2010/01/08/10609/' rel='bookmark' title='GCC中的pie和fpie选项'>GCC中的pie和fpie选项</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.lingcc.com/2008/03/31/9966/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>七日谈・七日独白：重画起跑线是一种悲壮的抗争[2008-11]</title>
		<link>http://www.lingcc.com/2008/03/10/9936/</link>
		<comments>http://www.lingcc.com/2008/03/10/9936/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 16:00:00 +0000</pubDate>
		<dc:creator>erlv</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ld]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[腾讯]]></category>

		<guid isPermaLink="false">http://lingcc.net/blog/?p=9936</guid>
		<description><![CDATA[文\LonelyJames 一张嫩黄色的笑脸让整个世界的Web开发者大吃了一惊。IE8 Beta1顺利通过Acid2测试， 这在我看来，是一个足以影响以致改变互联网走向的事件。IE再一次把自己和其他竞争对手拉到同一起跑线上，凭借肌肉发达的钢筋铁骨，和运载火箭一般的速 度，为新一轮的浏览器赛跑热身。IE以前之所以优势不明显，就是因为Web标准这个起跑线上的落后，拖了一下它的后腿，现在其它浏览器内核再也没有可以依 仗的理由让用户为了兼容而放弃预装在电脑里的浏览器了。 我们总是念念不忘标准。标准是多种多样的，标准的存在是为了世界更美好，而不 是更热闹，要想来刺激的还是去找凉宫同学吧。然而标准牵扯到利益问题，就完全没有了兼济天下的胸怀，分帮结派，各种手法都用得上，当然也包括现在浏览器市 场的标准，我们不能排除其他竞争对手联合起来用标准制约微软的可能。但是他们没办法战胜Windows附带的浏览器，使用习惯业已形成，品牌惯性已经根深 蒂固。如果还是把浏览器大战比作赛跑，倒不如这样说：其它浏览器商量，另外划了一道起跑线，它们联合起来宣布，按照新的起跑线，微软其实是落后于我们的。 但是来看总的跑步历程的话，微软还是遥遥领先。 话说回来，任何浏览器在中国的竞争都是很有中国特色的，和国外的景象大异其趣。但是乱 象丛生的中国浏览器市场之所以能生发出那么多不合情理的现象，比如推介小广告泛滥，内核与外壳不分，恶意捆绑劫持，枪稿满天飞等等，我们都不能忘记一个重 要的中国国情：那就是中国绝大多数的网民，都还没有充分积累必要的常识，就被卷进了网络的浪潮中。 他们只知道聊天和摆弄空间，不明白 新锐的网络概念和功能有什么用，是否符合标准这个重要的判别浏览器优劣的指标，在中国等于无效。所以我觉得微软至少应该感谢腾讯，如果腾讯说Qzone只 能用Firefox看，那IE一下子就难堪了。网民再不习惯也得习惯，因为什么浏览器都得上空间，能上空间的浏览器就是好浏览器。另一个典型的事例，微软 自己更新IE7，都是强制更新的，居然在中国还有那么多IE6坚挺的活着，关你标准P事？同理，居然有那么多能够相信小广告，点击小广告，装上以后还纳闷&#8220;为什么那个网站还提醒浏览器不安全&#8221;的网民，这也应该被算作是中国国情。不知简体中文取代日文成为双字节的基准语言，是不是微软的一份薄礼回赠呢？ 所 以微软在中国赛段，可以形容为，它不是用自己的双脚跑完全程的，它是被千千万万击打着脑残体找流行mp3更新空间泡劲舞的主力中国网民抬起来的，自己根本 就没用力。而其它浏览器呢，力量当然是不能省的，画线也当然是要画的，Firefox同学尤其悲惨，它一边跑，一边画，一边还要高举着广告牌，上面贴满了 &#8220;永不中毒&#8221;的小广告&#8212;&#8212;当然这也是一群Fx粉丝赠送的，不好意思扔吧？ 我曾经阐述过我对于标准的理解。标准不是最好的，不是最合适 的，而永远是用的人最多的才叫标准。认清了这个，才叫讲民主。微软原本可以选择不予理睬，它不理睬标准，照样拥有最广大的用户，但是今次支持了W3C标 准，给全世界的Web开发者们，卸下了双重标准兼容的沉重包袱，极大的提升了Web设计的效率和生产力，绝对应该算作是有能力改变Web发展格局的重大事 件。 所以，微软纵身一跳，跳到了竞争对手们刚刚画好的新起跑线上，还是和原来一样身手矫健，运步如飞。这次改进，用户是受益的，开发 人员是受益的，唯独损害最深的，只有那些辛苦扶持起标准的浏览器们。这份悲壮的抗争，没有取得任何效果，还是打平了，而在其他的方面它们依然在落后着。虽 然我看到这个沉重的打击正在上演，但我相信大家和我一样，都不希望&#8220;帮助IE改进&#8221;成为非IE存活的唯一意义。希望它们能振作起来，继续参与竞争。 2008/3/9, 0:28 相关文章： 擦亮眼睛 “百度Hi”用户协议有猫腻 百度Hi策略的猜想 十年改变我们的那些技术 zz Linux下的段错误的原因及调试 开始――运行――部分常用命令 2008年3月17日至3月23日计算机病毒预报<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="百度Hi策略的猜想" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9937%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/31/20239408.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">百度Hi策略的猜想</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="擦亮眼睛 “百度Hi”用户协议有猫腻" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F06%2F9928%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115378.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">擦亮眼睛 “百度Hi”用户协议有猫腻</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="经验之谈:做好预防措施,保护好自己的电脑的13个Tips" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115636.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">经验之谈:做好预防措施,保护好自己的电脑的13个Tips</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/05/11067795.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="领带的11种打法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F29%2F9965%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/07/7840031.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">领带的11种打法</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>
<h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2008/03/06/9928/' rel='bookmark' title='擦亮眼睛 “百度Hi”用户协议有猫腻'>擦亮眼睛 “百度Hi”用户协议有猫腻</a></li>
<li><a href='http://www.lingcc.com/2008/03/10/9937/' rel='bookmark' title='百度Hi策略的猜想'>百度Hi策略的猜想</a></li>
<li><a href='http://www.lingcc.com/2009/12/30/10517/' rel='bookmark' title='十年改变我们的那些技术'>十年改变我们的那些技术</a></li>
<li><a href='http://www.lingcc.com/2008/08/27/9982/' rel='bookmark' title='zz Linux下的段错误的原因及调试'>zz Linux下的段错误的原因及调试</a></li>
<li><a href='http://www.lingcc.com/2008/04/29/9972/' rel='bookmark' title='开始――运行――部分常用命令'>开始――运行――部分常用命令</a></li>
<li><a href='http://www.lingcc.com/2008/03/15/9954/' rel='bookmark' title='2008年3月17日至3月23日计算机病毒预报'>2008年3月17日至3月23日计算机病毒预报</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><strong>文\LonelyJames</strong><br />
一张嫩黄色的笑脸让整个世界的Web开发者大吃了一惊。<a href="http://www.cnbeta.com/articles/45524.htm" target="_blank">IE8 Beta1顺利通过Acid2测试</a>， 这在我看来，是一个足以影响以致改变互联网走向的事件。IE再一次把自己和其他竞争对手拉到同一起跑线上，凭借肌肉发达的钢筋铁骨，和运载火箭一般的速 度，为新一轮的浏览器赛跑热身。IE以前之所以优势不明显，就是因为Web标准这个起跑线上的落后，拖了一下它的后腿，现在其它浏览器内核再也没有可以依 仗的理由让用户为了兼容而放弃预装在电脑里的浏览器了。 </p>
<p>我们总是念念不忘标准。标准是多种多样的，标准的存在是为了世界更美好，而不 是更热闹，要想来刺激的还是去找凉宫同学吧。然而标准牵扯到利益问题，就完全没有了兼济天下的胸怀，分帮结派，各种手法都用得上，当然也包括现在浏览器市 场的标准，我们不能排除其他竞争对手联合起来用标准制约微软的可能。但是他们没办法战胜Windows附带的浏览器，使用习惯业已形成，品牌惯性已经根深 蒂固。如果还是把浏览器大战比作赛跑，倒不如这样说：其它浏览器商量，另外划了一道起跑线，它们联合起来宣布，按照新的起跑线，微软其实是落后于我们的。 但是来看总的跑步历程的话，微软还是遥遥领先。 </p>
<p>话说回来，任何浏览器在中国的竞争都是很有中国特色的，和国外的景象大异其趣。但是乱 象丛生的中国浏览器市场之所以能生发出那么多不合情理的现象，比如推介小广告泛滥，内核与外壳不分，恶意捆绑劫持，枪稿满天飞等等，我们都不能忘记一个重 要的中国国情：那就是中国绝大多数的网民，都还没有充分积累必要的常识，就被卷进了网络的浪潮中。 </p>
<p>他们只知道聊天和摆弄空间，不明白 新锐的网络概念和功能有什么用，是否符合标准这个重要的判别浏览器优劣的指标，在中国等于无效。所以我觉得微软至少应该感谢腾讯，如果腾讯说Qzone只 能用Firefox看，那IE一下子就难堪了。网民再不习惯也得习惯，因为什么浏览器都得上空间，能上空间的浏览器就是好浏览器。另一个典型的事例，微软 自己更新IE7，都是强制更新的，居然在中国<a href="http://www.cnbeta.com/articles/49817.htm" target="_blank">还有那么多IE6坚挺的活着</a>，关你标准P事？同理，居然有那么多能够相信小广告，点击小广告，装上以后还纳闷&ldquo;为什么那个网站还提醒浏览器不安全&rdquo;的网民，这也应该被算作是中国国情。不知简体中文取代日文成为双字节的基准语言，是不是微软的一份薄礼回赠呢？ </p>
<p>所 以微软在中国赛段，可以形容为，它不是用自己的双脚跑完全程的，它是被千千万万击打着脑残体找流行mp3更新空间泡劲舞的主力中国网民抬起来的，自己根本 就没用力。而其它浏览器呢，力量当然是不能省的，画线也当然是要画的，Firefox同学尤其悲惨，它一边跑，一边画，一边还要高举着广告牌，上面贴满了 &ldquo;永不中毒&rdquo;的小广告&mdash;&mdash;当然这也是一群Fx粉丝赠送的，不好意思扔吧？ </p>
<p>我曾经阐述过我对于标准的理解。标准不是最好的，不是最合适 的，而永远是用的人最多的才叫标准。认清了这个，才叫讲民主。微软原本可以选择不予理睬，它不理睬标准，照样拥有最广大的用户，但是今次支持了W3C标 准，给全世界的Web开发者们，卸下了双重标准兼容的沉重包袱，极大的提升了Web设计的效率和生产力，绝对应该算作是有能力改变Web发展格局的重大事 件。 </p>
<p>所以，微软纵身一跳，跳到了竞争对手们刚刚画好的新起跑线上，还是和原来一样身手矫健，运步如飞。这次改进，用户是受益的，开发 人员是受益的，唯独损害最深的，只有那些辛苦扶持起标准的浏览器们。这份悲壮的抗争，没有取得任何效果，还是打平了，而在其他的方面它们依然在落后着。虽 然我看到这个沉重的打击正在上演，但我相信大家和我一样，都不希望&ldquo;帮助IE改进&rdquo;成为非IE存活的唯一意义。希望它们能振作起来，继续参与竞争。 </p>
<p>2008/3/9, 0:28</p>
<div style=float:left><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share/" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END --></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="百度Hi策略的猜想" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9937%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/31/20239408.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">百度Hi策略的猜想</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="擦亮眼睛 “百度Hi”用户协议有猫腻" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F06%2F9928%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115378.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">擦亮眼睛 “百度Hi”用户协议有猫腻</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="经验之谈:做好预防措施,保护好自己的电脑的13个Tips" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/30/7115636.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">经验之谈:做好预防措施,保护好自己的电脑的13个Tips</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/05/11067795.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="领带的11种打法" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F29%2F9965%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9936%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/05/07/7840031.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">领带的11种打法</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table><p><h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2008/03/06/9928/' rel='bookmark' title='擦亮眼睛 “百度Hi”用户协议有猫腻'>擦亮眼睛 “百度Hi”用户协议有猫腻</a></li>
<li><a href='http://www.lingcc.com/2008/03/10/9937/' rel='bookmark' title='百度Hi策略的猜想'>百度Hi策略的猜想</a></li>
<li><a href='http://www.lingcc.com/2009/12/30/10517/' rel='bookmark' title='十年改变我们的那些技术'>十年改变我们的那些技术</a></li>
<li><a href='http://www.lingcc.com/2008/08/27/9982/' rel='bookmark' title='zz Linux下的段错误的原因及调试'>zz Linux下的段错误的原因及调试</a></li>
<li><a href='http://www.lingcc.com/2008/04/29/9972/' rel='bookmark' title='开始――运行――部分常用命令'>开始――运行――部分常用命令</a></li>
<li><a href='http://www.lingcc.com/2008/03/15/9954/' rel='bookmark' title='2008年3月17日至3月23日计算机病毒预报'>2008年3月17日至3月23日计算机病毒预报</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.lingcc.com/2008/03/10/9936/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gentoo的相关配置-make.conf</title>
		<link>http://www.lingcc.com/2008/02/27/9904/</link>
		<comments>http://www.lingcc.com/2008/02/27/9904/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 16:00:00 +0000</pubDate>
		<dc:creator>erlv</dc:creator>
				<category><![CDATA[Linux系统]]></category>
		<category><![CDATA[3dnow]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[ld]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[make.conf]]></category>
		<category><![CDATA[mit]]></category>
		<category><![CDATA[portage]]></category>
		<category><![CDATA[USE]]></category>
		<category><![CDATA[x86]]></category>
		<category><![CDATA[zh_CN]]></category>

		<guid isPermaLink="false">http://lingcc.net/blog/?p=9904</guid>
		<description><![CDATA[桌面环境 gnome ，因为自己还是新手，求稳和相对的易用性，没用太刺激的~x86，只是在几个包上使用了keywords，比如fcitx。希望能帮助需要的人。 另外，新装的gentoo系统忌上来就用一堆的use， $cat /etc/make.conf # These settings were set by the catalyst build script that automatically # built this stage. # Please consult /etc/make.conf.example for a more detailed example. CFLAGS=”-O2 -march=athlon-xp   -pipe -fomit-frame-pointer ” CXXFLAGS=”${CFLAGS}” # This should not be changed unless you know exactly what you are doing. You # should probably <a href='http://www.lingcc.com/2008/02/27/9904/'>[...]</a><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F28%2F9963%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">gentoo如何处理被屏蔽(masked)的包   by 杨珂 转自linuxsir</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F04%2F09%2F10732%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Gentoo上安装Texlive2009</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F03%2F07%2F10707%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Gentoo 沙盘简介</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F08%2F27%2F9982%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">zz Linux下的段错误的原因及调试</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F02%2F10570%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Ebuild and emerge</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>
<h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2010/01/05/10588/' rel='bookmark' title='用crossdev装龙芯的n32 gnu交叉工具链'>用crossdev装龙芯的n32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2009/12/31/10534/' rel='bookmark' title='Gentoo中的交叉编译利器&#8211;crossdev'>Gentoo中的交叉编译利器&#8211;crossdev</a></li>
<li><a href='http://www.lingcc.com/2010/01/02/10570/' rel='bookmark' title='Ebuild and emerge'>Ebuild and emerge</a></li>
<li><a href='http://www.lingcc.com/2010/01/07/10594/' rel='bookmark' title='使用crossdev安装龙芯的O32 gnu交叉工具链'>使用crossdev安装龙芯的O32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2008/03/28/9963/' rel='bookmark' title='gentoo如何处理被屏蔽(masked)的包   by 杨珂 转自linuxsir'>gentoo如何处理被屏蔽(masked)的包   by 杨珂 转自linuxsir</a></li>
<li><a href='http://www.lingcc.com/2008/01/23/9891/' rel='bookmark' title='我的xorg.conf'>我的xorg.conf</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p>桌面环境 gnome ，因为自己还是新手，求稳和相对的易用性，没用太刺激的~x86，只是在几个包上使用了keywords，比如fcitx。希望能帮助需要的人。<br />
另外，新装的gentoo系统忌上来就用一堆的use，</p>
<p>$cat /etc/make.conf<br />
# These settings were set by the catalyst build script that automatically<br />
# built this stage.<br />
# Please consult /etc/make.conf.example for a more detailed example.<br />
CFLAGS=”-O2 -march=athlon-xp    -pipe -fomit-frame-pointer ”<br />
CXXFLAGS=”${CFLAGS}”<br />
# This should not be changed unless you know exactly what you are doing.  You<br />
# should probably be using a different stage, instead.<br />
CHOST=”i686-pc-linux-gnu”<br />
CCACHE_SIZE=”1G”<br />
ACCEPT_KEYWORDS=”x86&#8243;</p>
<p>#############################################################3<br />
MAKEOPTS=”-j2&#8243;</p>
<p>#############################################################<br />
GENTOO_MIRRORS=”ftp://gentoo.anheng.com.cn/gentoo http://mirror.averse.net/pub/gentoo/”<br />
SYNC=”rsync://mirror.averse.net/gentoo-portage”</p>
<p>############################################<br />
INPUT_DEVICES=”keyboard mouse”<br />
VIDEO_CARDS=”fglrx”<br />
#VIDEO_CARDS=”radeon”<br />
LINGUAS=”zh_CN”<br />
USE=”nptl nptlonly -ipv6 -fortran unicode svg hal dbus -kde -qt3 -qt4 -arts -eds -esd gnome gstreamer -dlloader  gtk firefox  X avahi alsa png 3dnow ssl threads jpeg truetype wma mp3 opengl mpeg pdf gif mad -selinux en zh_CN gdm cups bash-completion ldap samba xinetd tetex”</p>
<p>source /usr/portage/local/layman/make.conf</p>
<p>下面说说自己认为设置gentoo use 注意事项吧<br />
1,忌一下狂添加use。在安装新系统时，只要按照说明添加就行。遇到要添加的软件可以先使用“gentoo 软件名”搜索一下看，有没有wiki或者是别人的建议什么的。这样可以避免系统臃肿和block等错误（我承认我有系统洁癖）</p>
<p>2.。快速安装gentoo的网址 <a href="http://www.gentoo.org/doc/zh_cn/gentoo-x86-quickinstall.xml" target="_blank">http://www.gentoo.org/doc/zh_cn/gentoo-x86-quickinstall.xml</a> 我就是按照这个说明安装的，简单易行，想要先安装再学习gentoo的朋友可以试试，免去看gentoo手册的痛苦<br />
比较全的gentoo use 说明（英文）<a href="http://www.gentoo.org/dyn/use-index.xml?style=printable" target="_blank">http://www.gentoo.org/dyn/use-index.xml </a><br />
可以参照这里的描述来设置use。<br />
3.gentoo常用操作  zh.gentoo-wiki.com/Gentoo_Quick_Guide<br />
介绍一些gentoo常用的命令</p>
<p>有了以上的三步  你就能先使用gentoo 享受gentoo了 。</p>
<div style=float:left><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share/" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END --></div><table class="wumii-related-items" cellspacing="0" cellpadding="2" border="0" width="100%" style="clear: both;">
    
    <tr>
        <td ><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F28%2F9963%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">gentoo如何处理被屏蔽(masked)的包   by 杨珂 转自linuxsir</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F04%2F09%2F10732%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Gentoo上安装Texlive2009</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F03%2F07%2F10707%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Gentoo 沙盘简介</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F08%2F27%2F9982%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">zz Linux下的段错误的原因及调试</font>
                    </a>
                </td>
            </tr>
            <tr>
                <td style="margin: 0 !important; padding: 0 !important; line-height: 20px !important;">
                    <img border="0" src="http://static.wumii.com/images/widget/widget_solidPoint.gif">
                    <a target="_blank" style="text-decoration: none !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F01%2F02%2F10570%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F27%2F9904%2F">
                        <font size="-1" color="#333333" style="line-height: 1.65em; font-size: 12px !important;">Ebuild and emerge</font>
                    </a>
                </td>
            </tr>
    
    <tr>
        <td  align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table><p><h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2010/01/05/10588/' rel='bookmark' title='用crossdev装龙芯的n32 gnu交叉工具链'>用crossdev装龙芯的n32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2009/12/31/10534/' rel='bookmark' title='Gentoo中的交叉编译利器&#8211;crossdev'>Gentoo中的交叉编译利器&#8211;crossdev</a></li>
<li><a href='http://www.lingcc.com/2010/01/02/10570/' rel='bookmark' title='Ebuild and emerge'>Ebuild and emerge</a></li>
<li><a href='http://www.lingcc.com/2010/01/07/10594/' rel='bookmark' title='使用crossdev安装龙芯的O32 gnu交叉工具链'>使用crossdev安装龙芯的O32 gnu交叉工具链</a></li>
<li><a href='http://www.lingcc.com/2008/03/28/9963/' rel='bookmark' title='gentoo如何处理被屏蔽(masked)的包   by 杨珂 转自linuxsir'>gentoo如何处理被屏蔽(masked)的包   by 杨珂 转自linuxsir</a></li>
<li><a href='http://www.lingcc.com/2008/01/23/9891/' rel='bookmark' title='我的xorg.conf'>我的xorg.conf</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.lingcc.com/2008/02/27/9904/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>经验之谈:做好预防措施,保护好自己的电脑的13个Tips</title>
		<link>http://www.lingcc.com/2008/02/19/9897/</link>
		<comments>http://www.lingcc.com/2008/02/19/9897/#comments</comments>
		<pubDate>Mon, 29 Nov 1999 16:00:00 +0000</pubDate>
		<dc:creator>erlv</dc:creator>
				<category><![CDATA[编译技术]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ld]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[链接]]></category>

		<guid isPermaLink="false">http://lingcc.net/blog/?p=9897</guid>
		<description><![CDATA[感谢June Zhao的投递 前 几天我朋友的电脑中了毒，病毒感染了很多EXE文件，修复难度很大，无奈只好格式化掉，损失惨重。我的电脑很少中毒，至少在我知道的情况下我的电脑没用中 过毒。消灭病毒的难度是很大的，但做好预防工作却是非常容易的。下面是我的一些做法，个人认为做好下面的措施，电脑中毒机会的就会是微乎其微，这些措施只 针对Windows操作系统。 1、必须安装防火墙和杀毒软件 不管你是怎样的高手，这两种软件还是需要安装的。虽然在面对新病毒时，杀毒软件会变得手足无措，倒不如自己上网找杀毒办法。但有一个杀毒软件就是多了一道屏障，不管这道屏障有多高或多矮，始终是利大于弊的。 防火墙也是必须要安装的，同时最好还安装一些监测网络进程的程序，时刻监视有无恶意程序在进行非法操作。 另外，一些流氓软件专杀也是非常有用的，比如360安全卫士。 2、为Administrator用户降权 在Windows操作系统里，Administrator是最高级的用户，在正常的登陆模式是无法看到的，因此很容易忽略由Administrator用户带来的安全问题。 Administrator用户的初始密码是空的，如果没用安装防火墙，黑客很容易通过Administrator帐户进入你的电脑。这时做什么都已经为时已晚了。 事实上，这并不是降权，是创建一个伪造的，无实际权利的Administrator用户。 具 体操作如下，先以一个非Administrator的管理员帐户登陆windows，然后打开：控制面板-管理工具-计算机管理-本地用户和组 -用户，删除Administrator用户，再创建一个新的Administrator用户，右击设置密码，密码有多复杂就多复杂，让其隶属于最低级别 的用户组，并在属性里勾选帐户已停用。 这样，即使别人破解了你的Administrator帐户，进入后也发现只是一个没用实权的帐户。 3、禁止所有磁盘自动运行 如今U盘病毒盛行，稍不小心就会导致&#8220;格盘&#8221;。U盘病毒一般的运行机制是通过双击盘符自动运行，因此，禁用所有磁盘的自动运行是一种相当有效的预防手段。 具体的操作过程是：运行输入gpedit.msc&#8211;&#62;用户配置&#8211;&#62;管理模板&#8211;&#62;系统，双击右侧列表里的【关闭自动播放】，选择&#8220;所有驱动器&#8221;，然后选择&#8220;已启动&#8221;。确定退出。 4、不双击U盘 如果你没用禁止所有磁盘自动运行，又或者你在别人的计算机上使用U盘，最好不要双击U盘。这很容易触发U盘病毒，最好的方法是先用杀毒软件扫描。 U盘里的病毒一般清除方法是，通过资源管理器进去看看U盘里有无autorun文件，通常是隐藏的。删除auturun.inf文件以及它所指向的程序，然后重新拔插U盘。 5、经常检查开机启动项 经常在运行里输入msconfig查看启动项，发现有异常的马上在网上找资料，看看是不是病毒。当然，你不一定要用msconfig，超级兔子等软件也是非常不错的。 6、经常备份重要数据 一些重要的数据，必须经常备份，例如重要的图片、个人信息等等。我大概一个月会刻录一次重要的资料，以防万一。 7、使用Ghost 经常使用Ghost备份操作系统盘，遇到严重问题时直接恢复整个系统盘，这是懒人的做法，懒得找病毒的隐藏地，但同时也是高效快捷的方法。问题是你必须经常使用Ghost进行备份，不然你恢复系统盘也会有所损失，至少损失了最近安装的程序（的注册信息）。 8、隐私文件要加密 使用一些加密程序加密那些你认为不能暴露于公众的文件，网上有很多这样的免费软件。不要以为隐藏了文件就行，隐藏只是一种自欺欺人的方式，加密了，即使你有类似&#8220;陈冠希&#8221;的照片也不会太危险。 9、使用Google 之所以推荐使用Google不是因为我对Google的偏爱，而是Google搜索里提供的网站安全信息提示。当搜索结果的某网页里含有病毒或木马时，Google会给出提示。 10、使用Firefox Firefox不是万能的，但总比IE好，相比其IE，使用FX能有效地降低中毒几率。 11、使用复杂的密码 这是老生常谈的话题了，但还有很多人使用简单的数字密码，例如生日、身份证号等等，这是极容易被猜测的。&#8220;放心，我的生日只有我的朋友知道&#8221;，谁说你的朋友一定不会窥看你的隐私？ 12、不要告诉任何人你的密码 在聊天工具里告诉别人你的密码你将面临4种风险： A、你的电脑可能被挂马，密码被窃取了。 B、聊天工具提供商也有可能窃取你的密码。 C、聊天对方有可能利用你对他的信任去做不诚实的行为。 D、聊天对方的电脑中毒了，你的密码被窃取。 13、不要随便接收文件 尤其是在QQ里，别人发来文件，不要二话不说就接收，这是很危险的。一定要问清楚别人发的是什么东西，是不是他主动发的。接收后也不要马上运行，先用杀毒软件扫描一遍。 同样地，朋友发来的链接也不要随便点击，这个问题在《在中国上网，你应该注意这些&#8230;》里已经详细说明。 最好以上的预防措施，电脑的中毒几率将会降低不少，只要平时多加留心，病毒并不是很可怕的东西。 除非注明，本博客文章均为原创，转载请以链接形式标明本文地址 本文地址：http://www.kenengba.com/post/379.html 相关文章： 认识静态链接库 WebKit和Firefox的JavaScript性能对比 GCC初窥 <a href='http://www.lingcc.com/2008/02/19/9897/'>[...]</a><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="百度Hi策略的猜想" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9937%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/31/20239408.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">百度Hi策略的猜想</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="认识静态链接库" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F05%2F25%2F10951%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">认识静态链接库</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="软链接和硬链接" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F10%2F11%2F11300%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">软链接和硬链接</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="GNU工具链学习笔记" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F03%2F08%2F10709%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">GNU工具链学习笔记</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/05/11067795.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>
<h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2010/05/25/10951/' rel='bookmark' title='认识静态链接库'>认识静态链接库</a></li>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2009/12/29/10503/' rel='bookmark' title='GCC初窥'>GCC初窥</a></li>
<li><a href='http://www.lingcc.com/2008/03/10/9937/' rel='bookmark' title='百度Hi策略的猜想'>百度Hi策略的猜想</a></li>
<li><a href='http://www.lingcc.com/2008/01/23/9890/' rel='bookmark' title='zzzz龙芯之火，可以燎原（下）'>zzzz龙芯之火，可以燎原（下）</a></li>
<li><a href='http://www.lingcc.com/2010/01/08/10609/' rel='bookmark' title='GCC中的pie和fpie选项'>GCC中的pie和fpie选项</a></li>
</ul>]]></description>
			<content:encoded><![CDATA[<p><strong>感谢June Zhao的投递</strong><br />
前 几天我朋友的电脑中了毒，病毒感染了很多EXE文件，修复难度很大，无奈只好格式化掉，损失惨重。我的电脑很少中毒，至少在我知道的情况下我的电脑没用中 过毒。消灭病毒的难度是很大的，但做好预防工作却是非常容易的。下面是我的一些做法，个人认为做好下面的措施，电脑中毒机会的就会是微乎其微，这些措施只 针对Windows操作系统。</p>
<p><strong>1、必须安装防火墙和杀毒软件</strong></p>
<p><strong><a href="http://www.kenengba.com/post/379.html"><img border="2" src="http://www.panoramio.com/photos/original/7891180.jpg" alt="做好防护措施,保护好自己的电脑" /></a></strong></p>
<p>不管你是怎样的高手，这两种软件还是需要安装的。虽然在面对新病毒时，杀毒软件会变得手足无措，倒不如自己上网找杀毒办法。但有一个杀毒软件就是多了一道屏障，不管这道屏障有多高或多矮，始终是利大于弊的。</p>
<p>防火墙也是必须要安装的，同时最好还安装一些监测网络进程的程序，时刻监视有无恶意程序在进行非法操作。</p>
<p>另外，一些流氓软件专杀也是非常有用的，比如360安全卫士。</p>
<p><strong>2、为Administrator用户降权</strong></p>
<p>在Windows操作系统里，Administrator是最高级的用户，在正常的登陆模式是无法看到的，因此很容易忽略由Administrator用户带来的安全问题。</p>
<p>Administrator用户的初始密码是空的，如果没用安装防火墙，黑客很容易通过Administrator帐户进入你的电脑。这时做什么都已经为时已晚了。</p>
<p>事实上，这并不是降权，是创建一个伪造的，无实际权利的Administrator用户。</p>
<p>具 体操作如下，先以一个非Administrator的管理员帐户登陆windows，然后打开：控制面板-管理工具-计算机管理-本地用户和组 -用户，删除Administrator用户，再创建一个新的Administrator用户，右击设置密码，密码有多复杂就多复杂，让其隶属于最低级别 的用户组，并在属性里勾选帐户已停用。</p>
<p><a href="http://www.kenengba.com/post/379.html"><img src="http://www.panoramio.com/photos/original/7891186.jpg" bordersrc="http://www.panoramio.com/photos/original/7891186.jpg" alt="做好防护措施,保护好自己的电脑" /></a></p>
<p>这样，即使别人破解了你的Administrator帐户，进入后也发现只是一个没用实权的帐户。</p>
<p><strong>3、禁止所有磁盘自动运行</strong></p>
<p>如今U盘病毒盛行，稍不小心就会导致&ldquo;格盘&rdquo;。U盘病毒一般的运行机制是通过双击盘符自动运行，因此，禁用所有磁盘的自动运行是一种相当有效的预防手段。</p>
<p><a href="http://www.kenengba.com/post/379.html"><img src="http://www.panoramio.com/photos/original/7891188.jpg" bordersrc="http://www.panoramio.com/photos/original/7891188.jpg" alt="做好防护措施,保护好自己的电脑" /></a></p>
<p>具体的操作过程是：运行输入gpedit.msc&#8211;&gt;用户配置&#8211;&gt;管理模板&#8211;&gt;系统，双击右侧列表里的【关闭自动播放】，选择&ldquo;所有驱动器&rdquo;，然后选择&ldquo;已启动&rdquo;。确定退出。</p>
<p><strong>4、不双击U盘</strong></p>
<p>如果你没用禁止所有磁盘自动运行，又或者你在别人的计算机上使用U盘，最好不要双击U盘。这很容易触发U盘病毒，最好的方法是先用杀毒软件扫描。</p>
<p><a href="http://www.kenengba.com/"><img src="http://www.panoramio.com/photos/original/7891185.jpg" bordersrc="http://www.panoramio.com/photos/original/7891185.jpg" alt="做好防护措施,保护好自己的电脑" /></a></p>
<p>U盘里的病毒一般清除方法是，通过资源管理器进去看看U盘里有无autorun文件，通常是隐藏的。删除auturun.inf文件以及它所指向的程序，然后重新拔插U盘。</p>
<p><strong>5、经常检查开机启动项</strong></p>
<p>经常在运行里输入msconfig查看启动项，发现有异常的马上在网上找资料，看看是不是病毒。当然，你不一定要用msconfig，超级兔子等软件也是非常不错的。</p>
<p><a href="http://www.kenengba.com/"><img src="http://www.panoramio.com/photos/original/7891195.jpg" bordersrc="http://www.panoramio.com/photos/original/7891195.jpg" alt="做好防护措施,保护好自己的电脑" /></a></p>
<p><strong>6、经常备份重要数据</strong></p>
<p>一些重要的数据，必须经常备份，例如重要的图片、个人信息等等。我大概一个月会刻录一次重要的资料，以防万一。</p>
<p><strong>7、使用Ghost</strong></p>
<p>经常使用Ghost备份操作系统盘，遇到严重问题时直接恢复整个系统盘，这是懒人的做法，懒得找病毒的隐藏地，但同时也是高效快捷的方法。问题是你必须经常使用Ghost进行备份，不然你恢复系统盘也会有所损失，至少损失了最近安装的程序（的注册信息）。</p>
<p><strong>8、隐私文件要加密</strong></p>
<p>使用一些加密程序加密那些你认为不能暴露于公众的文件，网上有很多这样的免费软件。不要以为隐藏了文件就行，隐藏只是一种自欺欺人的方式，加密了，即使你有类似&ldquo;陈冠希&rdquo;的照片也不会太危险。</p>
<p><strong>9、使用Google</strong></p>
<p>之所以推荐使用<a href="http://www.google.com/">Google</a>不是因为我对Google的偏爱，而是Google搜索里提供的网站安全信息提示。当搜索结果的某网页里含有病毒或木马时，Google会给出提示。</p>
<p><a href="http://www.kenengba.com/"><img src="http://www.panoramio.com/photos/original/6576156.jpg" bordersrc="http://www.panoramio.com/photos/original/6576156.jpg" alt="做好防护措施,保护好自己的电脑" /></a></p>
<p><strong>10、使用Firefox</strong></p>
<p><a href="http://www.kenengba.com/firefox">Firefox</a>不是万能的，但总比IE好，相比其IE，使用FX能有效地降低中毒几率。</p>
<p><strong>11、使用复杂的密码</strong></p>
<p>这是老生常谈的话题了，但还有很多人使用简单的数字密码，例如生日、身份证号等等，这是极容易被猜测的。&ldquo;放心，我的生日只有我的朋友知道&rdquo;，谁说你的朋友一定不会窥看你的隐私？</p>
<p><strong>12、不要告诉任何人你的密码</strong></p>
<p>在聊天工具里告诉别人你的密码你将面临4种风险：</p>
<p>A、你的电脑可能被挂马，密码被窃取了。</p>
<p>B、聊天工具提供商也有可能窃取你的密码。</p>
<p>C、聊天对方有可能利用你对他的信任去做不诚实的行为。</p>
<p>D、聊天对方的电脑中毒了，你的密码被窃取。</p>
<p><strong>13、不要随便接收文件</strong></p>
<p>尤其是在QQ里，别人发来文件，不要二话不说就接收，这是很危险的。一定要问清楚别人发的是什么东西，是不是他主动发的。接收后也不要马上运行，先用杀毒软件扫描一遍。</p>
<p>同样地，朋友发来的链接也不要随便点击，这个问题在《<a href="http://www.kenengba.com/post/332.html">在中国上网，你应该注意这些&#8230;</a>》里已经详细说明。</p>
<p>最好以上的预防措施，电脑的中毒几率将会降低不少，只要平时多加留心，病毒并不是很可怕的东西。</p>
<p><strong>除非注明，本博客文章均为原创，转载请以链接形式标明本文地址</strong><br />
本文地址：<a href="http://www.kenengba.com/post/379.html">http://www.kenengba.com/post/379.html</a></p>
<div style=float:left><!-- JiaThis Button BEGIN -->
<div id="jiathis_style_32x32">
	<a class="jiathis_button_qzone"></a>
	<a class="jiathis_button_tsina"></a>
	<a class="jiathis_button_tqq"></a>
	<a class="jiathis_button_renren"></a>
	<a class="jiathis_button_kaixin001"></a>
	<a href="http://www.jiathis.com/share/" class="jiathis jiathis_txt jtico jtico_jiathis" target="_blank"></a>
	<a class="jiathis_counter_style"></a>
</div>
<script type="text/javascript" src="http://v2.jiathis.com/code/jia.js" charset="utf-8"></script>
<!-- JiaThis Button END --></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="百度Hi策略的猜想" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F10%2F9937%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/31/20239408.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">百度Hi策略的猜想</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="认识静态链接库" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F05%2F25%2F10951%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">认识静态链接库</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="软链接和硬链接" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F10%2F11%2F11300%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">软链接和硬链接</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="GNU工具链学习笔记" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2010%2F03%2F08%2F10709%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/images/blogWidget/wordpress_default.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">GNU工具链学习笔记</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.lingcc.com%2F2008%2F03%2F31%2F9966%2F&from=http%3A%2F%2Fwww.lingcc.com%2F2008%2F02%2F19%2F9897%2F">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/06/05/11067795.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">zzMozilla的疯狂构想 Firefox 4将开拓浏览器新疆界</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table><p><h3>相关文章：</h3><ul>
<li><a href='http://www.lingcc.com/2010/05/25/10951/' rel='bookmark' title='认识静态链接库'>认识静态链接库</a></li>
<li><a href='http://www.lingcc.com/2010/01/22/10668/' rel='bookmark' title='WebKit和Firefox的JavaScript性能对比'>WebKit和Firefox的JavaScript性能对比</a></li>
<li><a href='http://www.lingcc.com/2009/12/29/10503/' rel='bookmark' title='GCC初窥'>GCC初窥</a></li>
<li><a href='http://www.lingcc.com/2008/03/10/9937/' rel='bookmark' title='百度Hi策略的猜想'>百度Hi策略的猜想</a></li>
<li><a href='http://www.lingcc.com/2008/01/23/9890/' rel='bookmark' title='zzzz龙芯之火，可以燎原（下）'>zzzz龙芯之火，可以燎原（下）</a></li>
<li><a href='http://www.lingcc.com/2010/01/08/10609/' rel='bookmark' title='GCC中的pie和fpie选项'>GCC中的pie和fpie选项</a></li>
</ul></p>]]></content:encoded>
			<wfw:commentRss>http://www.lingcc.com/2008/02/19/9897/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

