﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>IT博客-system-net</title><link>http://www.cnitblog.com/system-net/</link><description>anything about system and net</description><language>zh-cn</language><lastBuildDate>Thu, 05 Mar 2026 23:48:32 GMT</lastBuildDate><pubDate>Thu, 05 Mar 2026 23:48:32 GMT</pubDate><ttl>60</ttl><item><title>SQL字符串函数</title><link>http://www.cnitblog.com/system-net/archive/2006/09/18/16997.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Mon, 18 Sep 2006 08:18:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2006/09/18/16997.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/16997.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2006/09/18/16997.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/16997.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/16997.html</trackback:ping><description><![CDATA[字符串函数对二进制数据、字符串和表达式执行不同的运算。此类函数作用于CHAR、VARCHAR、 BINARY、 和VARBINARY 数据类型以及可以隐式转换为CHAR 或VARCHAR的数据类型。可以在SELECT 语句的SELECT 和WHERE 子句以及表达式中使用字符串函数。常用的字符串函数有：<br /><br /><b>一、字符转换函数</b><br />1、ASCII()<br />返回字符表达式最左端字符的ASCII 码值。在ASCII（）函数中，纯数字的字符串可不用‘’括起来，但含其它字符的字符串必须用‘’括起来使用，否则会出错。<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/22_134815_db_strfunc1.jpg" target="_blank"><img alt="uploads/200508/22_134815_db_strfunc1.jpg" src="http://www.34do.net/blog/uploads/200508/22_134815_db_strfunc1.jpg" /></a></div><br /><br />2、CHAR()<br />将ASCII 码转换为字符。如果没有输入0 ~ 255 之间的ASCII 码值，CHAR（） 返回NULL 。<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/22_135234_db_strfunc2.jpg" target="_blank"><img alt="uploads/200508/22_135234_db_strfunc2.jpg" src="http://www.34do.net/blog/uploads/200508/22_135234_db_strfunc2.jpg" /></a></div><br /><br />3、LOWER()和UPPER()<br />LOWER()将字符串全部转为小写；UPPER()将字符串全部转为大写。<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/22_135839_db_strfunc3.jpg" target="_blank"><img alt="uploads/200508/22_135839_db_strfunc3.jpg" src="http://www.34do.net/blog/uploads/200508/22_135839_db_strfunc3.jpg" /></a></div><br /><br />4、STR()<br />把数值型数据转换为字符型数据。<br />STR (&lt;float_expression&gt;[，length[， &lt;decimal&gt;]])<br />length 指定返回的字符串的长度，decimal 指定返回的小数位数。如果没有指定长度，缺省的length 值为10， decimal 缺省值为0。<br />当length 或者decimal 为负值时，返回NULL；<br />当length 小于小数点左边（包括符号位）的位数时，返回length 个*；<br />先服从length ，再取decimal ；<br />当返回的字符串位数小于length ，左边补足空格。<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/22_142907_db_strfunc4.jpg" target="_blank"><img alt="uploads/200508/22_142907_db_strfunc4.jpg" src="http://www.34do.net/blog/uploads/200508/22_142907_db_strfunc4.jpg" /></a></div><br /><br /><b>二、去空格函数</b><br />1、LTRIM() 把字符串头部的空格去掉。<br /><br />2、RTRIM() 把字符串尾部的空格去掉。<br /><br /><b>三、取子串函数</b><br />1、left() <br />LEFT (&lt;character_expression&gt;， &lt;integer_expression&gt;)<br />返回character_expression 左起 integer_expression 个字符。<br /><br />2、RIGHT() <br />RIGHT (&lt;character_expression&gt;， &lt;integer_expression&gt;)<br />返回character_expression 右起 integer_expression 个字符。<br /><br />3、SUBSTRING()<br />SUBSTRING (&lt;expression&gt;， &lt;starting_ position&gt;， length)<br />返回从字符串左边第starting_ position 个字符起length个字符的部分。<br /><br /><b>四、字符串比较函数</b><br />1、CHARINDEX()<br />返回字符串中某个指定的子串出现的开始位置。<br />CHARINDEX (&lt;’substring_expression’&gt;， &lt;expression&gt;)<br />其中substring _expression 是所要查找的字符表达式，expression 可为字符串也可为列名表达式。如果没有发现子串，则返回0 值。<br />此函数不能用于TEXT 和IMAGE 数据类型。<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/22_144853_db_strfunc5.gif" target="_blank"><img alt="uploads/200508/22_144853_db_strfunc5.gif" src="http://www.34do.net/blog/uploads/200508/22_144853_db_strfunc5.gif" /></a></div><br /><br />2、PATINDEX()<br />返回字符串中某个指定的子串出现的开始位置。<br />PATINDEX (&lt;’%substring _expression%’&gt;， &lt;column_ name&gt;)其中子串表达式前后必须有百分号“%”否则返回值为0。<br />与CHARINDEX 函数不同的是，PATINDEX函数的子串中可以使用通配符，且此函数可用于CHAR、 VARCHAR 和TEXT 数据类型。<br /><br /><b>五、字符串操作函数</b><br />1、QUOTENAME()<br />返回被特定字符括起来的字符串。<br />QUOTENAME (&lt;’character_expression’&gt;[， quote_ character]) 其中quote_ character 标明括字符串所用的字符，缺省值为“[]”。<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/22_145542_db_strfunc6.gif" target="_blank"><img alt="uploads/200508/22_145542_db_strfunc6.gif" src="http://www.34do.net/blog/uploads/200508/22_145542_db_strfunc6.gif" /></a></div><br /><br />2、REPLICATE()<br />返回一个重复character_expression 指定次数的字符串。<br />REPLICATE (character_expression integer_expression) 如果integer_expression 值为负值，则返回NULL 。<br /><br />3、REVERSE()<br />将指定的字符串的字符排列顺序颠倒。<br />REVERSE (&lt;character_expression&gt;) 其中character_expression 可以是字符串、常数或一个列的值。<br /><br />4、REPLACE()<br />返回被替换了指定子串的字符串。<br />REPLACE (&lt;string_expression1&gt;， &lt;string_expression2&gt;， &lt;string_expression3&gt;) 用string_expression3 替换在string_expression1 中的子串string_expression2。<br /><br />4、SPACE()<br />返回一个有指定长度的空白字符串。<br />SPACE (&lt;integer_expression&gt;) 如果integer_expression 值为负值，则返回NULL 。<br /><br />5、STUFF()<br />用另一子串替换字符串指定位置、长度的子串。<br />STUFF (&lt;character_expression1&gt;， &lt;start_ position&gt;， &lt;length&gt;，&lt;character_expression2&gt;)<br />如果起始位置为负或长度值为负，或者起始位置大于character_expression1 的长度，则返回NULL 值。<br />如果length 长度大于character_expression1 中 start_ position 以右的长度，则character_expression1 只保留首字符。<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/22_150938_db_strfunc7.gif" target="_blank"><img alt="uploads/200508/22_150938_db_strfunc7.gif" src="http://www.34do.net/blog/uploads/200508/22_150938_db_strfunc7.gif" /></a></div><br /><br /><b>六、数据类型转换函数</b><br />1、CAST()<br />CAST (&lt;expression&gt; AS &lt;data_ type&gt;[ length ])<br /><br />2、CONVERT()<br />CONVERT (&lt;data_ type&gt;[ length ]， &lt;expression&gt; [， style])<br /><br />1）data_type为SQL Server系统定义的数据类型，用户自定义的数据类型不能在此使用。<br />2）length用于指定数据的长度，缺省值为30。<br />3）把CHAR或VARCHAR类型转换为诸如INT或SAMLLINT这样的INTEGER类型、结果必须是带正号或负号的数值。<br />4）TEXT类型到CHAR或VARCHAR类型转换最多为8000个字符，即CHAR或VARCHAR数据类型是最大长度。<br />5）IMAGE类型存储的数据转换到BINARY或VARBINARY类型，最多为8000个字符。<br />6）把整数值转换为MONEY或SMALLMONEY类型，按定义的国家的货币单位来处理，如人民币、美元、英镑等。<br />7）BIT类型的转换把非零值转换为1，并仍以BIT类型存储。<br />8）试图转换到不同长度的数据类型，会截短转换值并在转换值后显示“+”，以标识发生了这种截断。<br />9）用CONVERT（） 函数的style 选项能以不同的格式显示日期和时间。style 是将DATATIME 和SMALLDATETIME 数据转换为字符串时所选用的由SQL Server 系统提供的转换样式编号，不同的样式编号有不同的输出格式。<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/24_171531_convert_type.gif" target="_blank"><img alt="uploads/200508/24_171531_convert_type.gif" src="http://www.34do.net/blog/uploads/200508/24_171531_convert_type.gif" /></a></div><br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/24_170616_db_strfunc8.gif" target="_blank"><img alt="uploads/200508/24_170616_db_strfunc8.gif" src="http://www.34do.net/blog/uploads/200508/24_170616_db_strfunc8.gif" /></a></div><br /><br /><b>七、日期函数</b><br />1、day(date_expression) <br />返回date_expression中的日期值<br /><br />2、month(date_expression)<br />返回date_expression中的月份值<br /><br />3、year(date_expression)<br />返回date_expression中的年份值<br /><br />4、DATEADD()<br />DATEADD (&lt;datepart&gt;， &lt;number&gt;， &lt;date&gt;)<br />返回指定日期date 加上指定的额外日期间隔number 产生的新日期。参数“datepart” 取值如下：<br /><br /><div style="OVERFLOW-X: auto; WIDTH: 100%"><a href="http://www.34do.net/blog/uploads/200508/24_172028_dateadd_style.gif" target="_blank"><img alt="uploads/200508/24_172028_dateadd_style.gif" src="http://www.34do.net/blog/uploads/200508/24_172028_dateadd_style.gif" /></a></div><br /><br />5、DATEDIFF()<br />DATEDIFF (&lt;datepart&gt;， &lt;date1&gt;， &lt;date2&gt;)<br />返回两个指定日期在datepart 方面的不同之处，即date2 超过date1的差距值，其结果值是一个带有正负号的整数值。<br /><br />6、DATENAME()<br />DATENAME (&lt;datepart&gt;， &lt;date&gt;)<br />以字符串的形式返回日期的指定部分此部分。由datepart 来指定。<br /><br />7、DATEPART()<br />DATEPART (&lt;datepart&gt;， &lt;date&gt;)<br />以整数值的形式返回日期的指定部分。此部分由datepart 来指定。<br />DATEPART (dd， date) 等同于DAY (date)<br />DATEPART (mm， date) 等同于MONTH (date)<br />DATEPART (yy， date) 等同于YEAR (date)<br /><br />8、GETDATE()<br />以DATETIME 的缺省格式返回系统当前的日期和时间 <img src ="http://www.cnitblog.com/system-net/aggbug/16997.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2006-09-18 16:18 <a href="http://www.cnitblog.com/system-net/archive/2006/09/18/16997.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>计算电脑消耗功率的权威方法</title><link>http://www.cnitblog.com/system-net/archive/2006/04/25/9629.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Tue, 25 Apr 2006 00:19:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2006/04/25/9629.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/9629.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2006/04/25/9629.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/9629.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/9629.html</trackback:ping><description><![CDATA[
		<p class="MsoNormal" style="TEXT-INDENT: 21.75pt">
				<font size="2">AMD在2002年5月出版的《Builders Guide for Desktop/Tower Systems》中推荐了电源供应的计算方法，这个计算方法比较接近我们通常使用的方法，只是更加明确。</font>
		</p>
		<p class="MsoNormal" style="TEXT-INDENT: 21.75pt">
				<font size="2">规范说：“为了可靠运行，电源输出必须比系统配置所具有联合输出功率更大。在标准的单用户桌面塔式系统中，显然使用的最大功率比所有组件的最大联合输出功率小。最大功率小的原因是几乎不可能所有的组件同时达到最大值。因此，必须采用电源适用因素（power-usage factor）。”</font>
		</p>
		<p class="MsoNormal" style="TEXT-INDENT: 21.75pt">
				<font size="2">“AMD建议计算电源需求最小输出能力，即通过桌面或塔式系统其他组件的总功率的80%加上处理器的功耗。这个80%的值并不是一个硬性的数值。系统建立者的实际测试可能改变电源适用因素。”</font>
		</p>
		<p class="MsoNormal" style="TEXT-INDENT: 21.75pt">
				<font size="2">“另外，用户还要考虑+5V和+3.3V的输出功率的和不能大于电源+5V和+3.3V联合输出功率的限制。”</font>
		</p>
		<p class="MsoNormal" style="TEXT-INDENT: 21.75pt">
				<font size="2">“处理器消耗：第一步是计算处理器的电源需求。对此，你需要了解所有电压值。”</font>
		</p>
		<p class="MsoNormal" style="MARGIN-LEFT: 39.75pt; TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1; tab-stops: list 39.75pt">
				<font size="2">1、 在相应的空格中输入所有组件总的电流值；</font>
		</p>
		<p class="MsoNormal" style="MARGIN-LEFT: 39.75pt; TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1; tab-stops: list 39.75pt">
				<font size="2">2、 总的电流乘以电压得到功率；</font>
		</p>
		<p class="MsoNormal" style="MARGIN-LEFT: 39.75pt; TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1; tab-stops: list 39.75pt">
				<font size="2">3、 将每个组件的功率累加，再乘以0.8，再加上处理器的功耗就得到需要的最小功率；</font>
		</p>
		<p class="MsoNormal" style="MARGIN-LEFT: 39.75pt; TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1; tab-stops: list 39.75pt">
				<font size="2">4、 验证+5V和+3.3V的输出功率的和不能大于电源+5V和+3.3V联合输出功率的限制。</font>
		</p>
		<p class="MsoNormal" style="MARGIN-LEFT: 39.75pt; TEXT-INDENT: -18pt; mso-list: l0 level1 lfo1; tab-stops: list 39.75pt">
				<font size="2">
						<span lang="EN-US"> </span>
						<b>
								<span style="FONT-FAMILY: 宋体; mso-bidi-font-size: 12.0pt; mso-ascii-font-family: Times New Roman; mso-hansi-font-family: Times New Roman">我们来举例说明：</span>
						</b>
				</font>
		</p>
		<table width="450" border="1">
				<tbody>
						<tr>
								<td align="middle" width="122" rowspan="2">
										<span lang="EN-US">
												<font size="2">Component</font>
										</span>
								</td>
								<td align="middle" width="43" rowspan="2">
										<span lang="EN-US">
												<font size="2">Qty</font>
										</span>
								</td>
								<td align="middle" width="363" colspan="6">
										<p align="center">
												<span lang="EN-US">
														<font size="2">Maximum Current at Each Voltage Level</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td align="middle" width="58">
										<p class="MsoNormal" style="TEXT-ALIGN: center" align="center">
												<span lang="EN-US">
														<font size="2">+3.3V</font>
												</span>
										</p>
								</td>
								<td align="middle" width="50">
										<p class="MsoNormal" style="TEXT-ALIGN: center" align="center">
												<span lang="EN-US">
														<font size="2">+5V</font>
												</span>
										</p>
								</td>
								<td align="middle" width="56">
										<p class="MsoNormal" style="TEXT-ALIGN: center" align="center">
												<span lang="EN-US">
														<font size="2">+12V</font>
												</span>
										</p>
								</td>
								<td align="middle" width="50">
										<p class="MsoNormal" style="TEXT-ALIGN: center" align="center">
												<span lang="EN-US">
														<font size="2">-12V</font>
												</span>
										</p>
								</td>
								<td align="middle" width="57">
										<p class="MsoNormal" style="TEXT-ALIGN: center" align="center">
												<span lang="EN-US">
														<font size="2">5VSB</font>
												</span>
										</p>
								</td>
								<td align="middle" width="62">
										<p class="MsoNormal" style="TEXT-ALIGN: center" align="center">
												<span lang="EN-US">
														<font size="2">Power</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td align="middle" width="122">
										<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
												<font size="2">主板及板载设备</font>
										</span>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">3.00</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">2.00</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.30</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><?XML:NAMESPACE PREFIX = O /?><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">2.00</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">23.5</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">系统风扇</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.25</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">3</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">处理器风扇</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.25</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">3</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">内存模块</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">3</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">2</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">30</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">显卡</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">3.00</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">9.9</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<font size="2">
														<span lang="EN-US">PCI MODEM</span>
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">卡</span>
												</font>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.50</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">2.5</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">声卡</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.50</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.50</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">4.15</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">网卡</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.40</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.40</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">3.32</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td align="middle" width="122">
										<font size="2">
												<span lang="EN-US">SCSI</span>
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">卡</span>
										</font>
								</td>
								<td align="middle" width="43">　</td>
								<td align="middle" width="58">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="56">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="57">　</td>
								<td align="middle" width="62">　</td>
						</tr>
						<tr>
								<td align="middle" width="122">
										<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
												<font size="2">其他总线设备</font>
										</span>
								</td>
								<td align="middle" width="43">　</td>
								<td align="middle" width="58">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="56">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="57">　</td>
								<td align="middle" width="62">　</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">IDE</font>
												</span>
												<font size="2">
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">硬盘</span>
												</font>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">2</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.8</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">2</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">56</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<font size="2">
														<span lang="EN-US">SATA</span>
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">硬盘</span>
												</font>
										</p>
								</td>
								<td align="middle" width="43">　</td>
								<td align="middle" width="58">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="56">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="57">　</td>
								<td align="middle" width="62">　</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">SCSI</font>
												</span>
												<font size="2">
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">硬盘</span>
												</font>
										</p>
								</td>
								<td align="middle" width="43">　</td>
								<td align="middle" width="58">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="56">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="57">　</td>
								<td align="middle" width="62">　</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">CD-ROM</font>
												</span>
										</p>
								</td>
								<td align="middle" width="43">　</td>
								<td align="middle" width="58">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="56">　</td>
								<td align="middle" width="50">　</td>
								<td align="middle" width="57">　</td>
								<td align="middle" width="62">　</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">CD-RW</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1.20</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.80</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">15.6</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">DVD-ROM</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1.20</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1.10</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">19.20</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">软驱</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.8</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">4</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">磁带机</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">ZIP</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">USB</font>
												</span>
												<font size="2">
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">设备</span>
												</font>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">2</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.5</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">5.00</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<font size="2">
														<span lang="EN-US">1394</span>
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">设备</span>
												</font>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1.6</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">8.00</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">键盘</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.25</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1.25</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">鼠标</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">0.25</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">1.25</font>
												</span>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
														<font size="2">其它</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<b>
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
																<font size="2">设备总电流</font>
														</span>
														<font size="2">
																<span lang="EN-US">
																		<o:p>
																		</o:p>
																</span>
														</font>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <b><span lang="EN-US"><o:p></o:p></span></b></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<b>
														<span lang="EN-US">
																<font size="2">6.9<o:p></o:p></font>
														</span>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<b>
														<span lang="EN-US">
																<font size="2">17.30<o:p></o:p></font>
														</span>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<b>
														<span lang="EN-US">
																<font size="2">6.70<o:p></o:p></font>
														</span>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <b><span lang="EN-US"><o:p></o:p></span></b></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<b>
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
																<font size="2">——</font>
														</span>
														<font size="2">
																<span lang="EN-US">
																		<o:p>
																		</o:p>
																</span>
														</font>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<b>
														<span lang="EN-US">
																<font size="2">189.67<o:p></o:p></font>
														</span>
												</b>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<b>
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
																<font size="2">处理器</font>
														</span>
														<font size="2">
																<span lang="EN-US">
																		<o:p>
																		</o:p>
																</span>
														</font>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <b><span lang="EN-US"><o:p></o:p></span></b></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<b>
														<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">
																<font size="2">——</font>
														</span>
														<font size="2">
																<span lang="EN-US">
																		<o:p>
																		</o:p>
																</span>
														</font>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <b><span lang="EN-US"><o:p></o:p></span></b></font>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<b>
														<span lang="EN-US">
																<font size="2">7.49<o:p></o:p></font>
														</span>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<b>
														<font size="2">
																<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">——</span>
																<span lang="EN-US">
																		<o:p>
																		</o:p>
																</span>
														</font>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<b>
														<font size="2">
																<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">——</span>
																<span lang="EN-US">
																		<o:p>
																		</o:p>
																</span>
														</font>
												</b>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<b>
														<span lang="EN-US">
																<font size="2">89.91<o:p></o:p></font>
														</span>
												</b>
										</p>
								</td>
						</tr>
						<tr>
								<td valign="top" align="middle" width="122">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">GRAND TOTAL</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="43">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="58">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">6.90</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">17.30</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="56">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">14.19</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="50">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
								<td valign="top" align="middle" width="57">
										<p class="MsoNormal">
												<span lang="EN-US">
														<font size="2">*</font>
												</span>
										</p>
								</td>
								<td valign="top" align="middle" width="62">
										<p class="MsoNormal">
												<font size="2"> <span lang="EN-US"><o:p></o:p></span></font>
										</p>
								</td>
						</tr>
						<tr>
								<td align="middle" width="540" colspan="8">
										<font size="2">
												<span lang="EN-US">+5VSB</span>
												<span style="FONT-FAMILY: 宋体; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">仅用于挂起模式。因此，不包含在总功率中。</span>
										</font>
								</td>
						</tr>
				</tbody>
		</table>
		<p class="MsoNormal" style="TEXT-INDENT: 21.75pt">
				<font size="2">设备总功率*0.8+处理器总功率=189.67*0.8+89.91=241.9W。+5V和+3.3V联合输出功率为109.27W。</font>
		</p>
<img src ="http://www.cnitblog.com/system-net/aggbug/9629.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2006-04-25 08:19 <a href="http://www.cnitblog.com/system-net/archive/2006/04/25/9629.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>经典教程汇集</title><link>http://www.cnitblog.com/system-net/archive/2005/12/09/5271.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Fri, 09 Dec 2005 15:48:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2005/12/09/5271.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/5271.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2005/12/09/5271.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/5271.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/5271.html</trackback:ping><description><![CDATA[1.图解Web服务器和FTP服务器安全配置<BR><A href="http://www.bizing.cn/it/2005/1-27/23422269532.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/23422269532.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">2.服务之器——服务器购买指南<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22193665595.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22193665595.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">3.服务器中“U”的含义是什么？<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22203234680.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22203234680.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">4.改变数据中心的构建<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22231388253.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22231388253.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">5.Web服务器是这样选型的<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22281052966.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22281052966.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">6.Web服务器的选购注意事项<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22303325722.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22303325722.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">7.双机热备知多少？<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22314457847.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22314457847.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">8.如何有效地远程管理局域网计算机的磁盘空间<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/2237295414.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/2237295414.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">9.IT服务工作应如何开展<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22392611707.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22392611707.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">10.邮件服务器发展趋势<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22401982900.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22401982900.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">11.服务器上共享宽带双网卡<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22411745056.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22411745056.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">12.如何建立一个FTP服务器<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22441917642.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22441917642.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">13.六问虚拟服务器应用<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22480457450.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22480457450.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">14.关于服务器升级的几点看法<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22490750230.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22490750230.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">15.服务器性能评估的实战技巧<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22495550441.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22495550441.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">16.专用服务器的安全设计<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22525320152.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22525320152.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">17.谈金融行业服务器整合<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22533312321.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22533312321.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">18.如何从SAN启动存储服务器<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22542082418.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22542082418.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">19.化整为“零”　轻松管理<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/22583358557.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/22583358557.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">20.Windows 网络管理技巧<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23012593887.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23012593887.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">21.Windows Server 2003 实现服务器的流量分担<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23024793583.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23024793583.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">22.如何改进Web站点的整体性能<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23034284699.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23034284699.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">23.架设DNS服务器要谨慎<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23042211235.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23042211235.html</FONT></A><BR><BR><BR><FONT face="times new roman,times,serif">24.建立开放的高性能集群<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23050888609.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23050888609.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">25.为DHCP服务器减负<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23064545262.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23064545262.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">26.用好二级代理服务器<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23073043275.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23073043275.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">27.让升级服务器随心所欲<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23102643559.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23102643559.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">28.中小企业构建存储面临“三少”难题<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23232949177.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23232949177.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">29.让主机不再遥不可及<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23200064381.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23200064381.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">30.管理刀片服务器<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23210115684.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23210115684.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">31.提升服务器的安全性<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23223070619.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23223070619.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">32.预演服务器应用<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23241591599.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23241591599.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">33.刀片服务器成功应用足迹<BR></FONT><A href="http://www.bizing.cn/it/2005/1-28/23181994021.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-28/23181994021.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">1.企业网络营销六计<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/18114649093.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/18114649093.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">2.网络营销的利与弊<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/18172972889.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/18172972889.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">3.GOOGLE搜索引擎排名实战案例<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/22043313492.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/22043313492.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">4.GOOGLE排名不是单一的网页标签优化<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/22090635568.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/22090635568.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">5.GOOGLE排名技巧经验谈<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/22122114140.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/22122114140.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">6.robots.txt和Robots META标签<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/22145264878.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/22145264878.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">7.揭穿Google关键词广告服务的暴利内幕<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/22211044372.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/22211044372.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">8.在搜索引擎上排名前位——“桥”页之道！<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/22233749145.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/22233749145.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">9.三个方面提高网站链接广泛度<BR></FONT><A href="http://www.bizing.cn/it/2005/1-15/22293221211.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-15/22293221211.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">10.GOOGLE左侧排名实战演习<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/11145183100.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/11145183100.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">11.基本搜索技巧十条<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/11160197114.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/11160197114.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">12.如何做好GOOGLE排名<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/11170331557.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/11170331557.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">13.搜索信息的三套方案<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/11175315718.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/11175315718.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">14.大型网站的Google排名策略<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/11191032162.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/11191032162.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">15.搜索引擎及其优化的新趋势<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/11203556680.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/11203556680.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">16.搜索引擎排名算法新趋势<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/11220234128.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/11220234128.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">17.如何在搜索引擎中使您的排名靠前？<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12050392461.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12050392461.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">18.网络搜索与信息收集路路通<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12061415804.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12061415804.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">19.搜索引擎排名影响因素<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12083511647.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12083511647.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">20.面向搜索引擎的关键字广告<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12101998073.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12101998073.html</FONT></A><BR><FONT face="times new roman,times,serif">21.Google续写网络经济新篇章<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12112639200.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12112639200.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">22.创建Google关键词广告的12高招<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12152589274.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12152589274.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">23.Google左侧排名攻略<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12174951390.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12174951390.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">24.网站登陆Google的关键：网站外部链接<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12240835890.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12240835890.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">25.搜索引擎的十大秘密<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12245838215.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12245838215.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">26.网站排名基本原则<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12265495467.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12265495467.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">27.了解搜索引擎网络时代<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12121818008.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12121818008.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">28.Google的左手——近距离观察SEO<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12303453353.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12303453353.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">29.搜索引擎：网络营销新利器<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12332668882.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12332668882.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">30.提高网站在Google中的排名（一）<BR></FONT><A href="http://www.bizing.cn/it/2005/1-16/12365337323.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-16/12365337323.html</FONT></A><BR><FONT face="times new roman,times,serif">1.局域网分类详解<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/19085015498.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/19085015498.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">2.机房布线经验谈<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/19111757954.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/19111757954.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">3.带你认识无线局域网<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/19135045916.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/19135045916.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">4.全面图解路由器接口及连接（图）<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/19223045948.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/19223045948.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">5.交换机专业术语<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/19410621922.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/19410621922.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">6.二，三，四层交换机的区别<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/19433342421.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/19433342421.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">7.路由器故障逐个数<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/19465653082.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/19465653082.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">8.怎样有效进行网络布线<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/23065453798.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/23065453798.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">9.在局域网中组建自己WEB站点<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/23075555192.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/23075555192.html</FONT></A><BR><BR><FONT face="times new roman,times,serif">10.无线局域网的基本常识<BR></FONT><A href="http://www.bizing.cn/it/2005/1-27/2309233310.html" target=_blank><FONT face="times new roman,times,serif" color=#000000>http://www.bizing.cn/it/2005/1-27/2309233310.html</FONT></A> <img src ="http://www.cnitblog.com/system-net/aggbug/5271.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2005-12-09 23:48 <a href="http://www.cnitblog.com/system-net/archive/2005/12/09/5271.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>计算机专业术语</title><link>http://www.cnitblog.com/system-net/archive/2005/12/09/5260.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Fri, 09 Dec 2005 12:26:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2005/12/09/5260.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/5260.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2005/12/09/5260.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/5260.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/5260.html</trackback:ping><description><![CDATA[<P>1、CPU <BR>3DNow!（3D no waiting） <BR>ALU（Arithmetic Logic Unit，算术逻辑单元） <BR>AGU（Address Generation Units，地址产成单元） <BR>BGA（Ball Grid Array，球状矩阵排列） <BR>BHT（branch prediction table，分支预测表） <BR>BPU（Branch Processing Unit，分支处理单元） <BR>Brach Pediction（分支预测） <BR>CMOS: Complementary Metal Oxide Semiconductor，互补金属氧化物半导体 <BR>CISC（Complex Instruction Set Computing，复杂指令集计算机） <BR>CLK（Clock Cycle，时钟周期） <BR>COB（Cache on board，板上集成缓存） <BR>COD（Cache on Die，芯片内集成缓存） <BR>CPGA（Ceramic Pin Grid Array，陶瓷针型栅格阵列） <BR>CPU（Center Processing Unit，中央处理器） <BR>Data Forwarding（数据前送） <BR>Decode（指令解码） <BR>DIB（Dual Independent Bus，双独立总线） <BR>EC（Embedded Controller，嵌入式控制器） <BR>Embedded Chips（嵌入式） <BR>EPIC（explicitly parallel instruction code，并行指令代码） <BR>FADD（Floationg Point Addition，浮点加） <BR>FCPGA（Flip Chip Pin Grid Array，反转芯片针脚栅格阵列） <BR>FDIV（Floationg Point Divide，浮点除） <BR>FEMMS：Fast Entry/Exit Multimedia State，快速进入/退出多媒体状态 <BR>FFT（fast Fourier transform，快速热欧姆转换） <BR>FID（FID：Frequency identify，频率鉴别号码） <BR>FIFO（First Input First Output，先入先出队列） <BR>flip-chip（芯片反转） <BR>FLOP（Floating Point Operations Per Second，浮点操作/秒） <BR>FMUL（Floationg Point Multiplication，浮点乘） <BR>FPU（Float Point Unit，浮点运算单元） <BR>FSUB（Floationg Point Subtraction，浮点减） <BR>GVPP（Generic Visual Perception Processor，常规视觉处理器） <BR>HL-PBGA: 表面黏著,高耐热、轻薄型塑胶球状矩阵封装 <BR>IA（Intel Architecture，英特尔架构） <BR>ICU（Instruction Control Unit，指令控制单元） <BR>ID：identify，鉴别号码 <BR>IDF（Intel Developer Forum，英特尔开发者论坛） <BR>IEU（Integer Execution Units，整数执行单元） <BR>IMM: Intel Mobile Module, 英特尔移动模块 <BR>Instructions Cache，指令缓存 <BR>Instruction Coloring（指令分类） <BR>IPC（Instructions Per Clock Cycle，指令/时钟周期） <BR>ISA（instruction set architecture，指令集架构） <BR>KNI（Katmai New Instructions，Katmai新指令集，即SSE） <BR>Latency（潜伏期） <BR>LDT（Lightning Data Transport，闪电数据传输总线） <BR>Local Interconnect（局域互连） <BR>MESI（Modified, Exclusive, Shared, Invalid：修改、排除、共享、废弃） <BR>MMX（MultiMedia Extensions，多媒体扩展指令集） <BR>MMU（Multimedia Unit，多媒体单元） <BR>MFLOPS（Million Floationg Point/Second，每秒百万个浮点操作） <BR>MHz（Million Hertz，兆赫兹） <BR>MP（Multi-Processing，多重处理器架构） <BR>MPS（MultiProcessor Specification，多重处理器规范） <BR>MSRs（Model-Specific Registers，特别模块寄存器） <BR>NAOC（no-account OverClock，无效超频） <BR>NI：Non－Intel，非英特尔 <BR>OLGA（Organic Land Grid Array，基板栅格阵列） <BR>OoO（Out of Order，乱序执行） <BR>PGA: Pin-Grid Array（引脚网格阵列）,耗电大 <BR>Post-RISC <BR>PR（Performance Rate，性能比率） <BR>PSN（Processor Serial numbers，处理器序列号） <BR>PIB（Processor In a Box，盒装处理器） <BR>PPGA（Plastic Pin Grid Array，塑胶针状矩阵封装） <BR>PQFP（Plastic Quad Flat Package，塑料方块平面封装） <BR>RAW（Read after Write，写后读） <BR>Register Contention（抢占寄存器） <BR>Register Pressure（寄存器不足） <BR>Register Renaming（寄存器重命名） <BR>Remark（芯片频率重标识） <BR>Resource contention（资源冲突） <BR>Retirement（指令引退） <BR>RISC（Reduced Instruction Set Computing，精简指令集计算机） <BR>SEC: Single Edge Connector，单边连接器 <BR>Shallow-trench isolation（浅槽隔离） <BR>SIMD（Single Instruction Multiple Data，单指令多数据流） <BR>SiO2F（Fluorided Silicon Oxide，二氧氟化硅） <BR>SMI（System Management Interrupt，系统管理中断） <BR>SMM（System Management Mode，系统管理模式） <BR>SMP（Symmetric Multi-Processing，对称式多重处理架构） <BR>SOI: Silicon-on-insulator，绝缘体硅片 <BR>SONC（System on a chip,系统集成芯片） <BR>SPEC（System Performance Evaluation Corporation，系统性能评估测试） <BR>SQRT（Square Root Calculations，平方根计算） <BR>SSE（Streaming SIMD Extensions，单一指令多数据流扩展） <BR>Superscalar（超标量体系结构） <BR>TCP: Tape Carrier Package（薄膜封装）,发热小 <BR>Throughput（吞吐量） <BR>TLB（Translate Look side Buffers，翻译旁视缓冲器） <BR>USWC（Uncacheabled Speculative Write Combination，无缓冲随机联合写操作） <BR>VALU（Vector Arithmetic Logic Unit，向量算术逻辑单元） <BR>VLIW（Very Long Instruction Word，超长指令字） <BR>VPU（Vector Permutate Unit，向量排列单元） <BR>VPU（vector processing units，向量处理单元，即处理MMX、SSE等SIMD指令的地方） <BR><BR>2、主板 <BR>ADIMM（advanced Dual In-line Memory Modules，高级双重内嵌式内存模块） <BR>AMR（Audio／Modem Riser；音效／调制解调器主机板附加直立插卡） <BR>AHA（Accelerated Hub Architecture，加速中心架构） <BR>ASK IR（Amplitude Shift Keyed Infra-Red，长波形可移动输入红外线） <BR>ATX: AT Extend（扩展型AT） <BR>BIOS（Basic Input/Output System，基本输入/输出系统） <BR>CSE（Configuration Space Enable，可分配空间） <BR>DB: Device Bay，设备插架 <BR>DMI（Desktop Management Interface，桌面管理接口） <BR>EB（Expansion Bus，扩展总线） <BR>EISA（Enhanced Industry Standard Architecture，增强形工业标准架构） <BR>EMI（Electromagnetic Interference，电磁干扰） <BR>ESCD（Extended System Configuration Data，可扩展系统配置数据） <BR>FBC（Frame Buffer Cache，帧缓冲缓存） <BR>FireWire（火线，即IEEE1394标准） <BR>FSB: Front Side Bus，前置总线，即外部总线 <BR>FWH（ Firmware Hub，固件中心） <BR>GMCH（Graphics &amp; Memory Controller Hub，图形和内存控制中心） <BR>GPIs（General Purpose Inputs，普通操作输入） <BR>ICH（Input/Output Controller Hub，输入/输出控制中心） <BR>IR（infrared ray，红外线） <BR>IrDA（infrared ray，红外线通信接口可进行局域网存取和文件共享） <BR>ISA: Industry Standard Architecture，工业标准架构 <BR>ISA（instruction set architecture，工业设置架构） <BR>MDC（Mobile Daughter Card，移动式子卡） <BR>MRH-R（Memory Repeater Hub，内存数据处理中心） <BR>MRH-S（SDRAM Repeater Hub，SDRAM数据处理中心） <BR>MTH（Memory Transfer Hub，内存转换中心） <BR>NGIO（Next Generation Input/Output，新一代输入/输出标准） <BR>P64H（64-bit PCI Controller Hub，64位PCI控制中心） <BR>PCB（printed circuit board，印刷电路板） <BR>PCBA（Printed Circuit Board Assembly，印刷电路板装配） <BR>PCI: Peripheral Component Interconnect，互连外围设备 <BR>PCI SIG（Peripheral Component Interconnect Special Interest Group，互连外围设备专业组） <BR>POST（Power On Self Test,加电自测试） <BR>RNG（Random number Generator，随机数字发生器） <BR>RTC: Real Time Clock（实时时钟） <BR>KBC（KeyBroad Control，键盘控制器） <BR>SAP（Sideband Address Port，边带寻址端口） <BR>SBA（Side Band Addressing，边带寻址） <BR>SMA: Share Memory Architecture，共享内存结构 <BR>STD（Suspend To Disk，磁盘唤醒） <BR>STR（Suspend To RAM，内存唤醒） <BR>SVR: Switching Voltage Regulator（交换式电压调节） <BR>USB（Universal Serial Bus，通用串行总线） <BR>USDM（Unified System Diagnostic Manager，统一系统监测管理器） <BR>VID（Voltage Identification Definition，电压识别认证） <BR>VRM （Voltage Regulator Module，电压调整模块） <BR>ZIF: Zero Insertion Force, 零插力 <BR>主板技术 <BR>Gigabyte <BR>ACOPS: Automatic CPU OverHeat Prevention System（CPU过热预防系统） <BR>SIV: System Information Viewer（系统信息观察） <BR>磐英 <BR>ESDJ（Easy Setting Dual Jumper，简化CPU双重跳线法） <BR>浩鑫 <BR>UPT（USB、PANEL、LINK、TV-OUT四重接口） <BR>芯片组 <BR>ACPI（Advanced Configuration and Power Interface，先进设置和电源管理） <BR>AGP（Accelerated Graphics Port，图形加速接口） <BR>I/O（Input/Output，输入/输出） <BR>MIOC: Memory and I/O Bridge Controller，内存和I/O桥控制器 <BR>NBC: North Bridge Chip（北桥芯片） <BR>PIIX: PCI ISA/IDE Accelerator（加速器） <BR>PSE36: Page Size Extension 36－bit，36位页面尺寸扩展模式 <BR>PXB: PCI Expander Bridge，PCI增强桥 <BR>RCG: RAS/CAS Generator，RAS/CAS发生器 <BR>SBC: South Bridge Chip（南桥芯片） <BR>SMB: System Management Bus（全系统管理总线） <BR>SPD（Serial Presence Detect，内存内部序号检测装置） <BR>SSB: Super South Bridge，超级南桥芯片 <BR>TDP: Triton Data Path（数据路径） <BR>TSC: Triton System Controller（系统控制器） <BR>QPA: Quad Port Acceleration（四接口加速） <BR><BR>3、显示设备 <BR>ASIC: Application Specific Integrated Circuit（特殊应用积体电路） <BR>ASC（Auto-Sizing and Centering，自动调效屏幕尺寸和中心位置） <BR>ASC（Anti Static Coatings，防静电涂层） <BR>AGAS（Anti Glare Anti Static Coatings，防强光、防静电涂层） <BR>BLA: Bearn Landing Area（电子束落区） <BR>BMC（Black Matrix Screen，超黑矩阵屏幕） <BR>CRC: Cyclical Redundancy Check（循环冗余检查） <BR>CRT（Cathode Ray Tube，阴极射线管） <BR>DDC：Display Data Channel，显示数据通道 <BR>DEC（Direct Etching Coatings，表面蚀刻涂层） <BR>DFL（Dynamic Focus Lens，动态聚焦） <BR>DFS（Digital Flex Scan，数字伸缩扫描） <BR>DIC: Digital Image Control（数字图像控制） <BR>Digital Multiscan II（数字式智能多频追踪） <BR>DLP（digital Light Processing，数字光处理） <BR>DOSD: Digital On Screen Display（同屏数字化显示） <BR>DPMS（Display Power Management Signalling，显示能源管理信号） <BR>Dot Pitch（点距） <BR>DQL（Dynamic Quadrapole Lens，动态四极镜） <BR>DSP（Digital Signal Processing，数字信号处理） <BR>EFEAL（Extended Field Elliptical Aperture Lens，可扩展扫描椭圆孔镜头） <BR>FRC: Frame Rate Control（帧比率控制） <BR>HVD（High Voltage Differential，高分差动） <BR>LCD（liquid crystal display，液晶显示屏） <BR>LCOS: Liquid Crystal On Silicon（硅上液晶） <BR>LED（light emitting diode，光学二级管） <BR>L-SAGIC（Low Power-Small Aperture G1 wiht Impregnated Cathode，低电压光圈阴极管） <BR>LVD（Low Voltage Differential，低分差动） <BR>LVDS: Low Voltage Differential Signal（低电压差动信号） <BR>MALS（Multi Astigmatism Lens System，多重散光聚焦系统） <BR>MDA（Monochrome Adapter，单色设备） <BR>MS: Magnetic Sensors（磁场感应器） <BR>Porous Tungsten（活性钨） <BR>RSDS: Reduced Swing Differential Signal（小幅度摆动差动信号） <BR>SC（Screen Coatings，屏幕涂层） <BR>Single Ended（单终结） <BR>Shadow Mask（阴罩式） <BR>TDT（Timeing Detection Table，数据测定表） <BR>TICRG: Tungsten Impregnated Cathode Ray Gun（钨传输阴级射线枪） <BR>TFT（thin film transistor，薄膜晶体管） <BR>UCC（Ultra Clear Coatings，超清晰涂层） <BR>VAGP: Variable Aperature Grille Pitch（可变间距光栅） <BR>VBI: Vertical Blanking Interval（垂直空白间隙） <BR>VDT（Video Display Terminals，视频显示终端） <BR>VRR: Vertical Refresh Rate（垂直扫描频率） <BR><BR>4、视频 <BR>3D：Three Dimensional，三维 <BR>3DS（3D SubSystem，三维子系统） <BR>AE（Atmospheric Effects，雾化效果） <BR>AFR（Alternate Frame Rendering，交替渲染技术） <BR>Anisotropic Filtering（各向异性过滤） <BR>APPE（Advanced Packet Parsing Engine，增强形帧解析引擎） <BR>AV（Analog Video，模拟视频） <BR>Back Buffer，后置缓冲 <BR>Backface culling（隐面消除） <BR>Battle for Eyeballs（眼球大战，各3D图形芯片公司为了争夺用户而作的竞争） <BR>Bilinear Filtering（双线性过滤） <BR>CEM（cube environment mapping，立方环境映射） <BR>CG（Computer Graphics，计算机生成图像） <BR>Clipping（剪贴纹理） <BR>Clock Synthesizer，时钟合成器 <BR>compressed textures（压缩纹理） <BR>Concurrent Command Engine，协作命令引擎 <BR>Center Processing Unit Utilization，中央处理器占用率 <BR>DAC（Digital to Analog Converter，数模传换器） <BR>Decal（印花法，用于生成一些半透明效果，如：鲜血飞溅的场面） <BR>DFP（Digital Flat Panel，数字式平面显示器） <BR>DFS: Dynamic Flat Shading（动态平面描影）,可用作加速 <BR>Dithering（抖动） <BR>Directional Light，方向性光源 <BR>DME: Direct Memory Execute（直接内存执行） <BR>DOF（Depth of Field，多重境深） <BR>dot texture blending（点型纹理混和） <BR>Double Buffering（双缓冲区） <BR>DIR（Direct Rendering Infrastructure，基层直接渲染） <BR>DVI（Digital Video Interface，数字视频接口） <BR>DxR: DynamicXTended Resolution（动态可扩展分辨率） <BR>DXTC（Direct X Texture Compress，DirectX纹理压缩，以S3TC为基础） <BR>Dynamic Z-buffering（动态Z轴缓冲区）,显示物体远近,可用作远景 <BR>E-DDC（Enhanced Display Data Channel，增强形视频数据通道协议，定义了显示输出与主系统之间的通讯通道，能提高显示输出的画面质量） <BR>Edge Anti－aliasing，边缘抗锯齿失真 <BR>E-EDID（Enhanced Extended Identification Data，增强形扩充身份辨识数据，定义了电脑通讯视频主系统的数据格式） <BR>Execute Buffers，执行缓冲区 <BR>environment mapped bump mapping（环境凹凸映射） <BR>Extended Burst Transactions，增强式突发处理 <BR>Front Buffer，前置缓冲 <BR>Flat（平面描影） <BR>Frames rate is King（帧数为王） <BR>FSAA（Full Scene Anti－aliasing，全景抗锯齿） <BR>Fog（雾化效果） <BR>flip double buffered（反转双缓存） <BR>fog table quality（雾化表画质） <BR>GART（Graphic Address Remappng Table，图形地址重绘表） <BR>Gouraud Shading，高洛德描影，也称为内插法均匀涂色 <BR>GPU（Graphics Processing Unit，图形处理器） <BR>GTF（Generalized Timing Formula，一般程序时间，定义了产生画面所需要的时间，包括了诸如画面刷新率等） <BR>HAL（Hardware Abstraction Layer，硬件抽像化层） <BR>hardware motion compensation（硬件运动补偿） <BR>HDTV（high definition television，高清晰度电视） <BR>HEL: Hardware Emulation Layer（硬件模拟层） <BR>high triangle count（复杂三角形计数） <BR>ICD（Installable Client Driver，可安装客户端驱动程序） <BR>IDCT（Inverse Discrete Cosine Transform，非连续反余弦变换，GeForce的DVD硬件强化技术） <BR>Immediate Mode，直接模式 <BR>IPPR: Image Processing and Pattern Recognition（图像处理和模式识别） <BR>large textures（大型纹理） <BR>LF（Linear Filtering，线性过滤，即双线性过滤） <BR>lighting（光源） <BR>lightmap（光线映射） <BR>Local Peripheral Bus（局域边缘总线） <BR>mipmapping（MIP映射） <BR>Modulate（调制混合） <BR>Motion Compensation，动态补偿 <BR>motion blur（模糊移动） <BR>MPPS：Million Pixels Per Second，百万个像素/秒 <BR>Multi-Resolution Mesh，多重分辨率组合 <BR>Multi Threaded Bus Master，多重主控 <BR>Multitexture（多重纹理） <BR>nerest Mipmap（邻近MIP映射，又叫点采样技术） <BR>Overdraw（透支，全景渲染造成的浪费） <BR>partial texture downloads（并行纹理传输） <BR>Parallel Processing Perspective Engine（平行透视处理器） <BR>PC（Perspective Correction，透视纠正） <BR>PGC（Parallel Graphics Configuration，并行图像设置） <BR>pixel（Picture element，图像元素，又称P像素，屏幕上的像素点） <BR>point light（一般点光源） <BR>point sampling（点采样技术，又叫邻近MIP映射） <BR>Precise Pixel Interpolation，精确像素插值 <BR>Procedural textures（可编程纹理） <BR>RAMDAC（Random Access Memory Digital to Analog Converter，随机存储器数/模转换器） <BR>Reflection mapping（反射贴图） <BR>render（着色或渲染） <BR>S端子（Seperate） <BR>S3（Sight、Sound、Speed，视频、音频、速度） <BR>S3TC（S3 Texture Compress，S3纹理压缩，仅支持S3显卡） <BR>S3TL（S3 Transformation &amp; Lighting，S3多边形转换和光源处理） <BR>Screen Buffer（屏幕缓冲） <BR>SDTV（Standard Definition Television，标准清晰度电视） <BR>SEM（spherical environment mapping，球形环境映射） <BR>Shading，描影 <BR>Single Pass Multi-Texturing，单通道多纹理 <BR>SLI（Scanline Interleave，扫描线间插，3Dfx的双Voodoo 2配合技术） <BR>Smart Filter（智能过滤） <BR>soft shadows（柔和阴影） <BR>soft reflections（柔和反射） <BR>spot light（小型点光源） <BR>SRA（Symmetric Rendering Architecture，对称渲染架构） <BR>Stencil Buffers（模板缓冲） <BR>Stream Processor（流线处理） <BR>SuperScaler Rendering，超标量渲染 <BR>TBFB（Tile Based Frame Buffer，碎片纹理帧缓存） <BR>texel（T像素，纹理上的像素点） <BR>Texture Fidelity（纹理真实性） <BR>texture swapping（纹理交换） <BR>T&amp;L（Transform and Lighting，多边形转换与光源处理） <BR>T-Buffer（T缓冲，3dfx Voodoo4的特效，包括全景反锯齿Full-scene Anti-Aliasing、动态模糊Motion Blur、焦点模糊Depth of Field Blur、柔和阴影Soft Shadows、柔和反射Soft Reflections） <BR>TCA（Twin Cache Architecture，双缓存结构） <BR>Transparency（透明状效果） <BR>Transformation（三角形转换） <BR>Trilinear Filtering（三线性过滤） <BR>Texture Modes，材质模式 <BR>TMIPM: Trilinear MIP Mapping（三次线性MIP材质贴图） <BR>UMA（Unified Memory Architecture，统一内存架构） <BR>Visualize Geometry Engine，可视化几何引擎 <BR>Vertex Lighting（顶点光源） <BR>Vertical Interpolation（垂直调变） <BR>VIP（Video Interface Port，视频接口） <BR>ViRGE: Video and Rendering Graphics Engine（视频描写图形引擎） <BR>Voxel（Volume pixels，立体像素，Novalogic的技术） <BR>VQTC（Vector-Quantization Texture Compression，向量纹理压缩） <BR>VSIS（Video Signal Standard，视频信号标准） <BR>v-sync（同步刷新） <BR>Z Buffer（Z缓存） <BR><BR>5、音频 <BR>3DPA（3D Positional Audio，3D定位音频） <BR>AC（Audio Codec，音频多媒体数字信号编解码器） <BR>Auxiliary Input（辅助输入接口） <BR>CS（Channel Separation，声道分离） <BR>DS3D（DirectSound 3D Streams） <BR>DSD（Direct Stream Digital，直接数字信号流） <BR>DSL（Down Loadable Sample，可下载的取样音色） <BR>DLS-2（Downloadable Sounds Level 2，第二代可下载音色） <BR>EAX（Environmental Audio Extensions，环境音效扩展技术） <BR>Extended Stereo（扩展式立体声） <BR>FM（Frequency Modulation，频率调制） <BR>FIR（finite impulse response，有限推进响应） <BR>FR（Frequence Response，频率响应） <BR>FSE（Frequency Shifter Effect，频率转换效果） <BR>HRTF（Head Related Transfer Function，头部关联传输功能） <BR>IID（Interaural Intensity Difference，两侧声音强度差别） <BR>IIR（infinite impulse response，无限推进响应） <BR>Interactive Around-Sound（交互式环绕声） <BR>Interactive 3D Audio（交互式3D音效） <BR>ITD（Interaural Time Difference，两侧声音时间延迟差别） <BR>MIDI: Musical Instrument Digital Interface（乐器数字接口） <BR>NDA: non-DWORD-aligned ，非DWORD排列 <BR>Raw PCM: Raw Pulse Code Modulated（元脉码调制） <BR>RMA: RealMedia Architecture（实媒体架构） <BR>RTSP: Real Time Streaming Protocol（实时流协议） <BR>SACD（Super Audio CD，超级音乐CD） <BR>SNR（Signal to Noise Ratio，信噪比） <BR>S/PDIF（Sony/Phillips Digital Interface，索尼/飞利普数字接口） <BR>SRS: Sound Retrieval System（声音修复系统） <BR>Surround Sound（环绕立体声） <BR>Super Intelligent Sound ASIC（超级智能音频集成电路） <BR>THD+N（Total Harmonic Distortion plus Noise，总谐波失真加噪音） <BR>QEM（Qsound Environmental Modeling，Qsound环境建模扬声器组） <BR>WG（Wave Guide，波导合成） <BR>WT（Wave Table，波表合成） <BR><BR>6、RAM &amp; ROM <BR>ABP: Address Bit Permuting，地址位序列改变 <BR>ATC（Access Time from Clock，时钟存取时间） <BR>BSRAM（Burst pipelined synchronous static RAM，突发式管道同步静态存储器） <BR>CAS（Column Address Strobe，列地址控制器） <BR>CCT（Clock Cycle Time，时钟周期） <BR>DB: Deep Buffer（深度缓冲） <BR>DDR SDRAM（Double Date Rate，双数据率SDRAM） <BR>DIL（dual-in-line） <BR>DIMM（Dual In-line Memory Modules，双重内嵌式内存模块） <BR>DRAM（Dynamic Random Access Memory，动态随机存储器） <BR>DRDRAM（Direct RAMbus DRAM，直接RAMbus内存） <BR>ECC（Error Checking and Correction，错误检查修正） <BR>EEPROM（Electrically Erasable Programmable ROM,电擦写可编程只读存储器） <BR>FM: Flash Memory（快闪存储器） <BR>FMD ROM （Fluorescent Material Read Only Memory，荧光质只读存储器） <BR>PIROM：Processor Information ROM，处理器信息ROM <BR>PLEDM: Phase-state Low Electron（hole）-number Drive Memory <BR>QBM（Quad Band Memory，四倍边带内存） <BR>RAC（Rambus Asic Cell，Rambus集成电路单元） <BR>RAS（Row Address Strobe，行地址控制器） <BR>RDRAM（Rambus Direct RAM，直接型RambusRAM） <BR>RIMM（RAMBUS In-line Memory Modules，RAMBUS内嵌式内存模块） <BR>SDR SDRAM（Single Date Rate，单数据率SDRAM） <BR>SGRAM（synchronous graphics RAM，同步图形随机储存器） <BR>SO-DIMM（Small Outline Dual In-line Memory Modules，小型双重内嵌式内存模块） <BR>SPD（Serial Presence Detect，串行存在检查） <BR>SRAM（Static Random Access Memory，静态随机存储器） <BR>SSTL-2（Stub Series Terminated Logic-2） <BR>TSOPs（thin small outline packages，超小型封装） <BR>USWV（Uncacheable, Speculative, Write-Combining非缓冲随机混合写入） <BR>VCMA（Virtual Channel Memory architecture，虚拟通道内存结构） <BR><BR>7、磁盘 <BR>AAT（Average access time，平均存取时间） <BR>ABS（Auto Balance System，自动平衡系统） <BR>ASMO（Advanced Storage Magneto-Optical，增强形光学存储器） <BR>AST（Average Seek time，平均寻道时间） <BR>ATA（AT Attachment，AT扩展型） <BR>ATOMM（Advanced super Thin-layer and high-Output Metal Media，增强形超薄高速金属媒体） <BR>bps（bit per second，位/秒） <BR>CAM（Common Access Model，公共存取模型） <BR>CSS（Common Command Set，通用指令集） <BR>DMA（Direct Memory Access，直接内存存取） <BR>DVD（Digital Video Disk，数字视频光盘） <BR>EIDE（enhanced Integrated Drive Electronics，增强形电子集成驱动器） <BR>FAT（File Allocation Tables，文件分配表） <BR>FDBM（Fluid dynamic bearing motors，液态轴承马达） <BR>FDC（Floppy Disk Controller，软盘驱动器控制装置） <BR>FDD（Floppy Disk Driver，软盘驱动器） <BR>GMR（giant magnetoresistive，巨型磁阻） <BR>HDA（head disk assembly，磁头集合） <BR>HiFD（high-capacity floppy disk，高容量软盘） <BR>IDE（Integrated Drive Electronics，电子集成驱动器） <BR>LBA（Logical Block Addressing，逻辑块寻址） <BR>MBR（Master Boot Record，主引导记录） <BR>MTBF（Mean Time Before Failure，平均故障时间） <BR>PIO（Programmed Input Output，可编程输入输出模式） <BR>PRML（Partial Response Maximum Likelihood，最大可能部分反应，用于提高磁盘读写传输率） <BR>RPM（Rotation Per Minute，转/分） <BR>RSD: Removable Storage Device（移动式存储设备） <BR>SCSI（Small Computer System Interface，小型计算机系统接口） <BR>SCMA：SCSI Configured Auto Magically，SCSI自动配置 <BR>S.M.A.R.T.（Self-Monitoring, Analysis and Reporting Technology，自动监测、分析和报告技术） <BR>SPS（Shock Protection System，抗震保护系统） <BR>STA（SCSI Trade Association，SCSI同业公会） <BR>Ultra DMA（Ultra Direct Memory Access，超高速直接内存存取） <BR>LVD（Low Voltage Differential） <BR>Seagate硬盘技术 <BR>DiscWizard（磁盘控制软件） <BR>DST（Drive Self Test，磁盘自检程序） <BR>SeaShield（防静电防撞击外壳） <BR><BR>8、光驱 <BR>ATAPI（AT Attachment Packet Interface） <BR>BCF（Boot Catalog File，启动目录文件） <BR>BIF（Boot Image File，启动映像文件） <BR>CDR（CD Recordable，可记录光盘） <BR>CD-ROM/XA（CD－ROM eXtended Architecture，唯读光盘增强形架构） <BR>CDRW（CD-Rewritable，可重复刻录光盘） <BR>CLV（Constant Linear Velocity，恒定线速度） <BR>DAE（digital Audio Extraction，数据音频抓取） <BR>DDSS（Double Dynamic Suspension System，双悬浮动态减震系统） <BR>DDSS II（Double Dynamic Suspension System II，第二代双层动力悬吊系统） <BR>PCAV（Part Constant Angular Velocity，部分恒定角速度） <BR>VCD（Video CD，视频CD） <BR><BR>9、打印机 <BR>AAS（Automatic Area Seagment?） <BR>dpi（dot per inch，每英寸的打印像素） <BR>ECP（Extended Capabilities Port，延长能力端口） <BR>EPP（Enhanced Parallel Port，增强形平行接口） <BR>IPP（Internet Printing Protocol，因特网打印协议） <BR>ppm（paper per minute，页/分） <BR>SPP（Standard Parallel Port，标准并行口） <BR>TET（Text Enhanced Technology，文本增强技术） <BR>USBDCDPD（Universal Serial Bus Device Class Definition for Printing Devices，打印设备的通用串行总线级标准） <BR>VD（Variable Dot，变点式列印） <BR><BR>10、扫描仪 <BR>TWAIN（Toolkit Without An Interesting Name）协议 <BR><BR>11、计算机公司 <BR>Ali: Acer Lab（宏棋实验室） <BR>ASF: Applied Science Fiction <BR>AMD: Advanced Micro Device（超微半导体） <BR>AMI: American Megatrends Incorporated <BR>EAR（Extreme Audio Reality） <BR>HP: Hewlett-Packard，美国惠普公司 <BR>IBM: International Business Machine，国际商业机器 <BR>IDG（International Data Group，国际数据集团） <BR>IMS: International Meta System <BR>MLE：Microsoft Learning and Entertainment，微软教学与娱乐公司 <BR>MS（Microsoft，微软） <BR>NAI: Network Associates Incorporation，前身为McAfee。 <BR>NS（National Semiconductor，国家半导体） <BR>PMI: Pacific Magtron International <BR>SCE（sony computer entertainment，索尼计算机娱乐部） <BR>SGI：Silicon Graphics <BR>SiS: Silicon Integrated Systems，硅片综合系统公司 <BR>UMC（United Microelectronics Corporation，台湾联华电子公司，半导体制造商） <BR>WD（Western Digital，西部数据） <BR>ZD（Ziff-Davis出版公司） <BR><BR>12、组织 <BR>CBF: Cable Broadband Forum，电缆宽带论坛 <BR>CEMA（Consumer Electronics Manufacturing Association（消费者电子制造业协会） <BR>CPE: Customer Premise Equipment（用户预定设备） <BR>CSA: Canadian Standards Association（加拿大标准协会） <BR>DCA: Defense Communication Agency，国防部通信局 <BR>DOJ: Department of Justice（反不正当竞争部门） <BR>DSP: Delivery Service Partner（交付服务合伙人） <BR>DVB：Digital Video Broadcasting，数字视频广播 <BR>E3：Electronic Entertainment Expo，电子娱乐展览会 <BR>EFF: Electronic Frontier Foundation（电子前线基金会） <BR>EPA（Environmental Protection Agency，美国环境保护局） <BR>FCC: Federal Communications Commission（联邦通信委员会） <BR>FTC: Federal Trade Commission，联邦商业委员会 <BR>GDC（Game Developer Conference，游戏发展商会议） <BR>ISSCC（International Solid-State Circuits Conference，国际晶体管电路讨论会） <BR>ICSA: International Computer Security Association（国际计算机安全协会）,它的前身为NCSA（National Computer Security Association,国家计算机安全协会） <BR>IEEE（Institute of Electrical and Electronics Engineers，电子电路工程师协会） <BR>IFWP: International Forum White Paper，国际白皮书论坛 <BR>ISO/MPEG: International Standard Organization's Moving Picture Expert Group（国际标准化组织的活动图片专家组） <BR>ITAA: Information Technology Association of American，美国信息技术协会 <BR>MAC（Mobile Advisory Council） <BR>MCSP: Microsoft Certified Solution Providers，微软认证解决方案供应商 <BR>MJPEG（Motion Joint Photographic Experts Group，移动式连续图像专家组） <BR>MMA: MIDI Manufacturer Association（MIDI制造商联盟） <BR>NCTA: National Cable Television Association，美国电缆电视协会 <BR>NIA: Networking Interoperatility Alliance（网络互操作联盟） <BR>NBITD（National Board for Industrual and Technical Development，瑞典国立工业和技术发展委员会制订） <BR>OAAF：Open Arcade Architecture Forum，开放式Arcade体系论坛 <BR>OEM（Original Equipment Manufacturer，原始设备制造商） <BR>OIF: Optical Internetworking Forum，光纤互连网络论坛 <BR>RIAA（Recording Industry Association of America，美国唱片工业协会） <BR>RIO: Redistributed Internet Object（因特网分配组织） <BR>SIA（The Semiconductor Industries Association，半导体工业协会） <BR>SPA: Software Publishers Association，软件出版商协会 <BR>TSOWU（The Swedish office worker's union，瑞典办公人员联合会，以制订TCO标准著称） <BR>UAWG: Universal ADSL Working Group（通用ADSL工作组） <BR>UCAID:University Corporation for Advanced Internet Development <BR>UL: Underwriters Laboratories Inc.（新产品承诺实验室） <BR>VAR: value Added Resellers（增值分销商） <BR>W3C（World Wide Web Consortium，万维网协会） <BR>WHQL（Microsoft Windows Hardware Quality Lab，微软公司视窗硬件质量实验室） <BR>WinHEC: Windows Hardware Engineering Conference，视窗硬件工程会议 <BR><BR>13、编程 <BR>API（Application Programming Interfaces，应用程序接口） <BR>ASCII（American Standard Code for Information Interchange，美国国家标准信息交换代码） <BR>ATL: ActiveX Template Library（ActiveX模板库） <BR>BASIC:Beginner's All-purpose Symbolic Instruction Code（初学者通用指令代码） <BR>COM: Component Object Model（组件对象模式） <BR>DNA: Distributed Internet Application（分布式因特网应用程序） <BR>MFC: Microsoft Foundation Classes（微软基础类库） <BR>SDK（Software Development Kit，软件开发工具包） <BR><BR>14、Windows <BR>CE（Consumer Electronics，消费电子） <BR>DCOM: Distributing Component Object Model，构造物体模块 <BR>DHCP: Dynamic Host Configuration Protocol，动态主机分配协议 <BR>DMF: Distribution Media Format <BR>GDI（Graphics Device Interface，图形设备接口） <BR>GUI（Graphics User Interface，图形用户界面） <BR>GPF（General protect fault，一般保护性错误） <BR>HTA: HyperText Application，超文本应用程序 <BR>INF File（Information File，信息文件） <BR>INI File（Initialization File，初始化文件） <BR>NDIS: Network Driver Interface Specification，网络驱动程序接口规范 <BR>NT（New Technology，新技术） <BR>Qos: Quality of Service，服务质量 <BR>RRVP: Resource ReserVation Protocol（资源保留协议） <BR>RTOS（Real Time Operating Systems，实时操作系统） <BR>SBFS: Simple Boot Flag Specification，简单引导标记规范 <BR>VEFAT: Virtual File Allocation Table（虚拟文件分配表） <BR>（VxD，Virtual device drivers，虚拟设备驱动程序） <BR>WDM（Windows Driver Model，视窗驱动程序模块） <BR>Winsock: Windows Socket，视窗套接口 <BR>WHQL: Windows Hardware Quality Labs，Windows硬件质量实验室 <BR>WHS: Windows Scripting Host，视窗脚本程序 <BR>ZAM: Zero Administration for Windows，零管理视窗系统 <BR><BR>15、加密 <BR>ECC: Elliptic Curve Crypto（椭圆曲线加密） <BR>SET: Secure Electronic Transaction（安全电子交易） <BR><BR>16、语言 <BR>CSS: Cascading Style Sheets，层叠格式表 <BR>DCD: Document Content Description for XML: XML文件内容描述 <BR>DTD: Document Type Definition，文件类型定义 <BR>HTML（HyperText Markup Language，超文本标记语言） <BR>JVM: Java Virtual Machine, Java虚拟机 <BR>OJI: Open Java VM Interface，开放JAVA虚拟机接口 <BR>SGML: Standard Generalized Markup Language，标准通用标记语言 <BR>SMIL: Synchronous Multimedia Integrate Language（同步多媒体集成语言） <BR>VRML：Virtual Reality Makeup Language，虚拟现实结构化语言 <BR>VXML（Voice eXtensible Markup Language，语音扩展标记语言） <BR>XML: Extensible Markup Language（可扩展标记语言） <BR>XSL: Extensible Style Sheet Language（可扩展设计语言） <BR><BR>17、网络 <BR>ADSL: Asymmetric Digital Subscriber Line，不对称数字订阅线路 <BR>AH: Authentication Header，鉴定文件头 <BR>AMR（Audio/Modem Riser，音效/数据主机板附加直立插卡） <BR>ARP（Address Resolution Protocol，地址解析协议） <BR>ATM（Asynchronous Transfer Mode，异步传输模式） <BR>BOD（Bandwidth On Demand，弹性带宽运用） <BR>CBR（Committed Burst Rate，约定突发速率） <BR>CCIRN: Coordinating Committee for Intercontinental Research Networking，洲 <BR>际研究网络协调委员会 <BR>CCM（Call Control Manager，拨号控制管理） <BR>CDSL: Consumer Digital Subscriber Line（消费者数字订阅线路） <BR>CGI（Common Gateway Interface，通用网关接口） <BR>CIEA: Commercial Internet Exchange Association，商业因特网交易协会 <BR>CIR（Committed Infomation Rate，约定信息速率） <BR>CTS（Clear to Send，清除发送） <BR>DBS-PC: Direct Broadcast Satellite PC（人造卫星直接广播式PC） <BR>DCE: Data Circuit Terminal Equipment，数据通信设备 <BR>DES: Data Encryption Standard，数据加密标准 <BR>DMT: Discrete Multi - Tone，不连续多基频模式 <BR>DNS（Domain Name System，域名系统） <BR>DOCSIS（Data Over Cable Service Interface Specifications，线缆服务接口数据规格） <BR>DTE: Data Terminal Equipment，数据终端设备 <BR>EBR（Excess Burst Rate，超额突发速率） <BR>ESP: Encapsulating Security Payload，压缩安全有效载荷 <BR>FDM: Frequency Division Multi，频率分离 <BR>Flow-control流控制 <BR>FRICC: Federal Research Internet Coordinating Committee，联邦调查因特网协调委员会 <BR>FTP（File Transfer Protocol，文件传输协议） <BR>Ghost:（General Hardware Oriented System Transfer，全面硬件导向系统转移） <BR>HDSL: High bit rate DSL，高比特率数字订阅线路 <BR>HTTP（HyperText Transfer Protocol，超文本传输协议） <BR>ICMP（Internet Control Message Protocol，因特网信息控制协议） <BR>IETF（Internet Engineering Task Framework，因特网工程任务组） <BR>IKE: Internet Key Exchange，因特网密钥交换协议 <BR>IMAP4: Internet Message Access Protocol Version 4，第四版因特网信息存取协议 <BR>Internet（因特网） <BR>IP（Internet Protocol，网际协议） <BR>ISDN（Integrated Service Digital Network，综合服务数字网络） <BR>ISOC: Internet Society，因特网协会 <BR>ISP（Internet Service Provider，因特网服务提供商） <BR>LAN（Local Area Network，局域网） <BR>LDAP: Lightweight Directory Access Protocol，轻权目录访问协议 <BR>LOM（LAN-on-Montherboard） <BR>IAB: Internet Activities Board，因特网工作委员会 <BR>IETF: Internet Engineering Task Force，因特网工程作业推动 <BR>L2TP（Layer 2 Tunneling Protocol，二级通道协议） <BR>LMDS: Local Multipoint Distributed System，局域多点分布式系统 <BR>MIME: Multipurpose Internet Mail Extension，多用途因特网邮件扩展协议 <BR>MNP: Microcom Networking Protocal <BR>MODEM（Modulator Demodulator，调制解调器） <BR>NAT（Network Address Translation，网络地址转换） <BR>NC（Network Computer，网络计算机） <BR>NDS: Novell Directory Service，Novell目录服务 <BR>NNTP: Network News Transfer Protocol，网络新闻传输协议 <BR>MSN: Microsoft Network，微软网络 <BR>OFDM（orthogonal frequency division multiplexing，直角频率部分多路复用） <BR>P3P（Privacy Preference Project，个人私隐安全平台） <BR>PDS: Public Directory Support，公众目录支持 <BR>PGP: Pretty Good Privacy，优良保密协议 <BR>PICS: Platform for Internet Content Selection，因特网内容选择平台 <BR>POF: Polymer Optical Fiber，聚合体光纤 <BR>POP3: Post Office Protocol Version 3，第三版电子邮局协议 <BR>PPTP: Point to Point Tunneling Protocol，点对点通道协议 <BR>RADSL: Rate Adaptive DSL，速率自适应数字订阅线路 <BR>RARP（Reverse Address Resolution Protocol，反向地址解析协议） <BR>RDF: Resource Description Framework，资源描述框架 <BR>RSA（Rivest Shamir Adlemen，一种因特网加密和认证体系） <BR>RTS（Request To Send，需求发送） <BR>SIS: Switched Internetworking Services（交换式网络互联服务） <BR>S/MIME: Secure MIME，安全多用途因特网邮件扩展协议 <BR>SNMP（Simple Network Management Protocol，简单网络管理协议） <BR>SMTP（Simple Mail Transfer Protocol，简单邮件传输协议） <BR>SKIP: Simple Key Exchange Internet Protocol，因特网简单密钥交换协议 <BR>SUA（Single User Account，单用户帐号） <BR>TCP（Transmission Control Protocol，传输控制协议） <BR>UART（Universal Asynchronous Receiver/Transmitter，通用异步接收/发送装置） <BR>UDP（User Datagram Protocol，用户数据报协议） <BR>ULS: User Location Service，用户定位服务 <BR>VOD: Video On Demand，视频点播 <BR>VPN: virtual private network, 虚拟局域网 <BR>WWW（World Wide Web，万维网，是因特网的一部分） <BR><BR>18、通信 <BR>CTI：Computer Telephone Integration，计算机电话综合技术 <BR>DBS: Direct Broadcast Satellite，直接卫星广播 <BR>DWDM: Dense WaveLength Division Multiplex，波长密集型复用技术 <BR>MMDS: Multichannel Multipoint Distribution Service，多波段多点分发服务 <BR>PCM: Pulse Code Modulation，脉冲编码调制 <BR>PSTN（Public Switched Telephone Network，公用交换式电话网） <BR>TAPI: Telephony Application Programming Interface，电话应用程序接口 <BR>TSAPI: Telephony Services Application Programming Interface，电话服务应用程序接口 <BR>WDM: WaveLength Division Multiplex，波分多路复用 <BR><BR>19、游戏 <BR>ACT（Action，动作类游戏） <BR>ARPG（Action Role Play Games，动作角色扮演游戏） <BR>AVG（Adventure Genre，冒险类游戏） <BR>DAN（Dance，跳舞类游戏，包括跳舞机、吉它机、打鼓机等） <BR>DC（Dreamcast，世嘉64位游戏机） <BR>ETC（etc，其它类游戏，包括模拟飞行） <BR>FFJ: Force Feedback Joystick（力量反匮式操纵杆） <BR>FPP（First Person Game，第一人称游戏） <BR>FTG（Fighting Game，格斗类游戏） <BR>GB（Game Boy，任天堂4位手提游戏机） <BR>GBC（Game Boy Color，任天堂手提16色游戏机） <BR>GG（Game Gear，世嘉彩色手提游戏机） <BR>FC（Famicom，任天堂8位游戏机） <BR>fps（frames per second，帧/秒） <BR>FR（Frames Rate，游戏运行帧数） <BR>MAC（Macintosh，苹果电脑） <BR>N64（Nintendo 64，任天堂64位游戏机） <BR>SFC（Super Famicom，超级任天堂16位游戏机） <BR>SLG（Simulation Game，模拟类游戏） <BR>SPG（Sports Games，运动类游戏） <BR>SRPG（Strategies Role Play Games，战略角色扮演游戏） <BR>STG（Shoot Game，射击类游戏） <BR>SS（Sega Saturn，世嘉土星32位游戏机） <BR>PC（Personal Computer，个人计算机） <BR>PS（Play Station，索尼32位游戏机） <BR>PS（Pocket Station，索尼手提游戏机） <BR>RAC（race，赛车类游戏） <BR>RTS（Real Time Strategies，实时战略） <BR>RPG（Role Play Games，角色扮演游戏） <BR>TAB（Table Chess，桌棋类游戏） <BR><BR>20、服务器 <BR>C2C: card-to-card interleaving，卡到卡交错存取 <BR>cc-NUMA（cache-coherent non uniform memory access，连贯缓冲非统一内存寻址） <BR>CHRP（Common Hardware Reference Platform，共用硬件平台，IBM为PowerPC制定的标准，可以兼容Mac OS, Windows NT, Solaris, OS/2, Linux和AIX等多种操作系统） <BR>EMP: Emergency Management Port，紧急事件管理端口 <BR>ICMB: Inter-Chassis Management Bus, 内部管理总线 <BR>MPP（Massive Parallel Processing，巨量平行处理架构） <BR>MUX: Data Path Multiplexor，多重路径数据访问 </P><img src ="http://www.cnitblog.com/system-net/aggbug/5260.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2005-12-09 20:26 <a href="http://www.cnitblog.com/system-net/archive/2005/12/09/5260.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>经典电脑故障全攻略手册</title><link>http://www.cnitblog.com/system-net/archive/2005/11/03/3823.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Thu, 03 Nov 2005 01:18:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2005/11/03/3823.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/3823.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2005/11/03/3823.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/3823.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/3823.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;<B>相关简介：</B><BR>&nbsp;&nbsp;<FONT color=#000000>本书涉及软、硬件、网络故障及解决方法数千条，共190页20多万字，是电脑爱好者必不可少的工具书，也是编辑部为解决电脑常见故障呕心力推的电脑图书。它包含了最常见的可能引起计算机故障的因素，以及应当如何处理这些故障的方法—无论是在故障前还是在故障产生之后。按照我们提出的简单的、常识性的推荐方法，你可以避免大多数计算机软硬件所出的故障，并能够轻松进行处理。你将在计算机上浪费更少的时间的情况下使其为你完成更多的工作，而不会面对问题而束手无策，你将会运用自己的知识和工具战胜在计算机上遇到的故障。</FONT> 　</TD></TR> <BR><BR><TR><TD height="25" align="middle">下载地址</TD> <TD colSpan="3" bgColor="#ffffff"><A title=本地高速下载 href="http://www.fknet.cn/opensoft.asp?soft_id=102&amp;url=1"><IMG src="http://www.fknet.cn/img/download.gif" border=0></A> </TD></TR><img src ="http://www.cnitblog.com/system-net/aggbug/3823.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2005-11-03 09:18 <a href="http://www.cnitblog.com/system-net/archive/2005/11/03/3823.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>网络电视ppstream</title><link>http://www.cnitblog.com/system-net/archive/2005/11/02/3814.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Wed, 02 Nov 2005 07:26:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2005/11/02/3814.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/3814.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2005/11/02/3814.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/3814.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/3814.html</trackback:ping><description><![CDATA[ppstream核心播放部分是一个标准的IE插件,安装这个插件后才可以在线播放电视哦。<BR>
<HR>
<BR><IFRAME id=listform name=list marginWidth=0 marginHeight=0 src="http://www.ppstream.com/tv/frame.htm" frameBorder=0 width=750 height=450></IFRAME><img src ="http://www.cnitblog.com/system-net/aggbug/3814.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2005-11-02 15:26 <a href="http://www.cnitblog.com/system-net/archive/2005/11/02/3814.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>破解Windows XP SP2 TCP/IP 连接数限制的补丁</title><link>http://www.cnitblog.com/system-net/archive/2005/11/02/3810.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Wed, 02 Nov 2005 06:47:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2005/11/02/3810.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/3810.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2005/11/02/3810.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/3810.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/3810.html</trackback:ping><description><![CDATA[<P>使用XP sp2的朋友经常说连接慢、在线播放的时候卡不妨试试看这个补丁，已经多人测试很有用。<BR>破解Windows XP SP2 TCP/IP 连接数限制的补丁及源代码<BR><BR>注：这个补丁目前已经集成进比特精灵v2.7.0.16Beta1。<BR><BR>使用说明：<BR>运行程序，在左下角的文本框内输入最大连接数限制（SP2默认为10），建议设为120，然后点击Apply，如果成功应用，左下角的文本框会继续显示120，并在程序上方提示"Patch Successfully! Restart your operating system is strongly recommended!"。然后重启机器。<BR><BR>补充说明：<BR>使用补丁有可能导致未知的风险，我们不对因此而导致的可能问题而负责，请使用者自行注意。我们发布程序前已检查该程序不包含任何形式的病毒和木马，并提供源代码以供检验，但我们不对因使用本程序而导致的问题承担任何责任。<BR>如果你不能接受以上条款，请不要下载和使用本程序，谢谢合作。<BR><BR><BR><A title=新窗口打开 onfocus=this.blur() href="http://ppstream.com/bbs/skins/default/filetype/rar.gif" target=_blank><IMG onmousewheel="return bbimg(this)" src="http://ppstream.com/bbs/skins/default/filetype/rar.gif" onload="javascript:if(this.width>screen.width-500)this.style.width=screen.width-500;" border=0></A><A href="http://www.ppstream.com/bin/XP_SP2_tcpPatch.exe" target=_blank>点击下载一</A><BR><BR><A title=新窗口打开 onfocus=this.blur() href="http://ppstream.com/bbs/skins/default/filetype/rar.gif" target=_blank><IMG onmousewheel="return bbimg(this)" src="http://ppstream.com/bbs/skins/default/filetype/rar.gif" onload="javascript:if(this.width>screen.width-500)this.style.width=screen.width-500;" border=0></A><A href="http://ppstream.com/bbs/UploadFile/2005-7/200571010511096680.rar" target=_blank>补丁下载二</A><BR><BR><A title=新窗口打开 onfocus=this.blur() href="http://ppstream.com/bbs/skins/default/filetype/rar.gif" target=_blank><IMG onmousewheel="return bbimg(this)" src="http://ppstream.com/bbs/skins/default/filetype/rar.gif" onload="javascript:if(this.width>screen.width-500)this.style.width=screen.width-500;" border=0></A><A href="http://ppstream.com/bbs/UploadFile/2005-7/200571010513791835.rar" target=_blank>补丁下载三</A><BR><BR>用第一个补丁不好使的可以试试后面两个补丁。</P><img src ="http://www.cnitblog.com/system-net/aggbug/3810.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2005-11-02 14:47 <a href="http://www.cnitblog.com/system-net/archive/2005/11/02/3810.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>网络电视PPLive</title><link>http://www.cnitblog.com/system-net/archive/2005/11/02/3808.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Wed, 02 Nov 2005 05:54:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2005/11/02/3808.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/3808.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2005/11/02/3808.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/3808.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/3808.html</trackback:ping><description><![CDATA[&nbsp;&nbsp;&nbsp;PPLive是一款用于互联网上大规模视频直播的共享软件。本软件使用网状模型，有效解决了当前网络视频点播服务的带宽和负载有限 问题，实现用户越多，播放越流畅的特性，整体服务质量大大提高！<BR>
<HR>
<STRONG><FONT color=#ff0000>注意：<BR></FONT></STRONG>&nbsp;&nbsp;1. 在点击播放之前请先确认已经安装了这个软件。如果你还没有安装这个软件，请先下载PPLive 1.0.9.5版&nbsp;&nbsp;&nbsp; 大小: 1.92M(含解码器)&nbsp; <BR><BR><FONT color=#800080><A href="http://www.pplive.com/download/PPLiveSetup1.0.9.5.exe">点击下载</A><BR></FONT><BR>
<HR>
<BR>节目列表<BR><IFRAME id=listform name=listframe marginWidth=0 marginHeight=0 src="http://www.pplive.com/web/html/newversion.html" frameBorder=0 width="100%" height=400></IFRAME><BR><img src ="http://www.cnitblog.com/system-net/aggbug/3808.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2005-11-02 13:54 <a href="http://www.cnitblog.com/system-net/archive/2005/11/02/3808.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>sniffer pro v4.70.530 汉化补丁</title><link>http://www.cnitblog.com/system-net/archive/2005/11/02/3796.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Wed, 02 Nov 2005 04:39:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2005/11/02/3796.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/3796.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2005/11/02/3796.html#Feedback</comments><slash:comments>2</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/3796.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/3796.html</trackback:ping><description><![CDATA[<P><A href="http://www.findcode.cn/server/server_down.asp?class=1&amp;id=939">点击下载</A></P><img src ="http://www.cnitblog.com/system-net/aggbug/3796.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2005-11-02 12:39 <a href="http://www.cnitblog.com/system-net/archive/2005/11/02/3796.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>Sniffer Pro v4.7.530</title><link>http://www.cnitblog.com/system-net/archive/2005/11/02/3794.html</link><dc:creator>System And Net</dc:creator><author>System And Net</author><pubDate>Wed, 02 Nov 2005 04:36:00 GMT</pubDate><guid>http://www.cnitblog.com/system-net/archive/2005/11/02/3794.html</guid><wfw:comment>http://www.cnitblog.com/system-net/comments/3794.html</wfw:comment><comments>http://www.cnitblog.com/system-net/archive/2005/11/02/3794.html#Feedback</comments><slash:comments>3</slash:comments><wfw:commentRss>http://www.cnitblog.com/system-net/comments/commentRss/3794.html</wfw:commentRss><trackback:ping>http://www.cnitblog.com/system-net/services/trackbacks/3794.html</trackback:ping><description><![CDATA[<BR>SN：SA154-2558Y-255T9-2LASH <A href="http://www.findcode.cn/server/server_down.asp?class=1&amp;id=970"><BR><BR><BR>点击下载</A><img src ="http://www.cnitblog.com/system-net/aggbug/3794.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cnitblog.com/system-net/" target="_blank">System And Net</a> 2005-11-02 12:36 <a href="http://www.cnitblog.com/system-net/archive/2005/11/02/3794.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>