<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title><![CDATA[汉风]]></title>
        <image>
        <title>http://hi.baidu.com</title>
        <link>http://hi.baidu.com</link>
        <url>http://img.baidu.com/img/logo-hi.gif</url>
        </image>
<description><![CDATA[空闲时的一点记录]]></description>
<link>http://hi.baidu.com/xmhhf</link>
<language>zh-cn</language>
<generator>www.baidu.com</generator>
<ttl>5</ttl>


<item>
        <title><![CDATA[解决不能显示隐藏目录文件夹的问题]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/666fe4512fb39312377abe4e.html]]></link>
        <description><![CDATA[
		
		只要将以下信息导入注册表即可：<br>
<br>
<font color="#0000ff">Windows Registry Editor Version 5.00<br>
<br>
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL]<br>
&quot;RegPath&quot;=&quot;Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced&quot;<br>
&quot;Text&quot;=&quot;@shell32.dll,-30500&quot;<br>
&quot;Type&quot;=&quot;radio&quot;<br>
&quot;ValueName&quot;=&quot;Hidden&quot;<br>
&quot;DefaultValue&quot;=dword:00000002<br>
&quot;HKeyRoot&quot;=dword:80000001<br>
&quot;HelpID&quot;=&quot;shell.hlp#51105&quot;<br>
&quot;CheckedValue&quot;=dword:00000001 <br>
</font><br> <a href="http://hi.baidu.com/xmhhf/blog/item/666fe4512fb39312377abe4e.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/666fe4512fb39312377abe4e.html#comment">查看评论</a>]]></description>
        <pubDate>2009-09-19  10:00</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/666fe4512fb39312377abe4e.html</guid>
</item>

<item>
        <title><![CDATA[LINUX常用命令]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/1d8897ce5454e90993457e4c.html]]></link>
        <description><![CDATA[
		
		 
 
 
 
 
<p style="text-indent: 6pt; line-height: 15pt;"><span>LINUX</span>常用命令</p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>1. </span>创建目录　　<span> mkdir</span></span></p>
<p style="line-height: 15pt;">　　<span> NO1. </span>在当前路径创建一级目录</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mkdir test</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>在当前路径创建多级目录</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mkdir -p mytest/test1/test1_1</span></p>
<p style="line-height: 15pt;">　　<span> NO3. </span>在创建目录的同时给新建的目录赋权限</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mkdir -m 777 testmod</span></p>
<p style="line-height: 15pt;">　　这样任何人对此目录都有任何权限</p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 2. </span>复制文件与文件夹　　<span> cp</span></span></p>
<p style="line-height: 15pt;">　　<span> NO1. </span>复制指定目录的文件到当前目录，并重命名</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cp ~/.bashrc bashrc_bak</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>强制复制指定目录的文件到当前目录，而不管当前目录是否含有该文件</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cp -f ~/.bashrc bashrc</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>复制指定目录到当前目录</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cp -r /root/test .</span></p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cp -r /root/test/ .</span></p>
<p style="line-height: 15pt;">　　两者效果一样，在复制目录时，会将源路径的最后一级目录全部复制过去，包括它本身。</p>
<p style="line-height: 15pt;">　　<span> NO3. </span>复制指定目录的文件到指定目录</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cp ~/.bashrc /bak/.bashrc</span></p>
<p style="line-height: 15pt;">　　<span> NO4. </span>在复制时将源文件的全部属性也复制过来。若不指定参数，则目标文件与源文件属性可能不一致。</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cp -a ~/.bashrc /bak/.bashrc</span></p>
<p style="line-height: 15pt;">　　<span> NO5. </span>若两个文件夹要保证同步，一个文件的改了，另一个文件也跟着改，但是要保证两个文件的文件都是最新的。</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cp -u /src/.bashrc /bak_src/bashrc</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 3. </span>建立链接文件，包括硬链接与软链接<span><span>&#160;&#160; </span>ln</span></span></p>
<p style="line-height: 15pt;">　　<span> NO1. </span>建立类似于 <span><a target="_blank" href="http://school.21tx.com/os/windows/">Windows</a> </span>的快捷方式</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# ln -s test.txt test.txt_slnk</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>当想备份一个文件，但空间又不够，则可以为该文件建立一个硬连接。这样，就算原文件删除了，只要该链接文件没被删除，则在存储空间里还是没有被删除。</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# ln -l test.txt test.txt_hlnk</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 4. </span>删除文件　　<span> rm</span></span></p>
<p style="line-height: 15pt;">　　<span> NO1. </span>删除当前目录的文件</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# rm test.txt</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>强制删除当前目录的文件，不弹出提示</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# rm -f test.txt</span></p>
<p style="line-height: 15pt;">　　<span> NO3. </span>强制删除整个目录，包括目录与文件全部删除，需要管理员权限</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# rm -r -f test</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 5. </span>删除文件夹　　<span> rmdir</span></span></p>
<p style="line-height: 15pt;">　　<span> NO1. </span>删除一个空目录</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# rmdir emptydir</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>删除多级空目录</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# rmdir -p emptydir/d1/d11</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 6. </span>挂载文件系统与卸载文件系统　　<span> mount / umount</span></span></p>
<p style="line-height: 15pt;">　　<span> NO1. </span>挂载<span><a target="_blank" href="http://diy.21tx.com/dvd/"><span><span>光驱</span></span></a></span></p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount -t iso9660 /dev/cdrom /mnt/cdrom</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>挂载光驱，支持中文</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount -t iso9660 -o codepage=936,iocharset=cp936 /dev/cdrom /mnt/cdrom</span></p>
<p style="line-height: 15pt;">　　<span> NO3. </span>挂载<span> Windows </span>分区，<span>FAT</span>文件系统</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount -t vfat /dev/hda3 /mnt/cdrom</span></p>
<p style="line-height: 15pt;">　　<span> NO4. </span>挂载<span> Windows </span>分区，<span>NTFS</span>文件系统</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount -t ntfs -o iocharset=cp936 /dev/hda7 /mnt/had7</span></p>
<p style="line-height: 15pt;">　　<span> No5. </span>挂载<span> ISO </span>文件</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount -o loop /abc.iso /mnt/cdrom</span></p>
<p style="line-height: 15pt;">　　<span> NO6. </span>挂载 软驱</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount /dev/fd0 /mnt/floppy</span></p>
<p style="text-indent: 27pt; line-height: 15pt;"><span>NO7. </span>挂载闪盘</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount /dev/sda1 /mnt/cdrom</span></p>
<p style="line-height: 15pt;">　　<span> NO8. </span>挂载 <span><a target="_blank" href="http://school.21tx.com/os/windows/">Windows</a> <a target="_blank" href="http://school.21tx.com/os/"><span><span>操作系统</span></span></a></span>共享的文件夹</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount -t smbfs -o username=guest,pass<a target="_blank" href="http://school.21tx.com/office/word/">Word</a>=guest //<a target="_blank" href="http://school.21tx.com/os/macos/">Mac</a>hine/path /mnt/cdrom</span></p>
<p style="line-height: 15pt;">　　<span> NO9. </span>显示挂载的文件系统</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# mount</span></p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cat /etc/fstab</span>　显示系统启动自动加载的文件系统</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# cat /etc/mtab</span>　　显示当前加载的文件系统</p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 7. </span>检查<span><a target="_blank" href="http://school.21tx.com/tools/sys/disk/"><span><span>磁盘</span></span></a></span>空间　　<span> df</span></span></p>
<p style="line-height: 15pt;">　　<span> NO1. </span>显示所有存储系统空间使用情况<span>,</span>同时显示存储系统的文件系统类型</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# df -aT</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>显示指定文件系统的空间使用情况</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# df -t ext3</span></p>
<p style="line-height: 15pt;">　　<span> NO3. </span>人性化显示各存储空间大小</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# df -ah</span></p>
<p style="line-height: 15pt;">　　<span> NO4. </span>有时候挂载了<span><a target="_blank" href="http://diy.21tx.com/net/"><span><span>网络</span></span></a></span>文件系统，若只想看本机的文件系统用如下命令</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# df -ahlT</span></p>
<p style="line-height: 15pt;">　　<span> NO5. </span>查看某个文件系统的磁盘使用情况</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# df -h /dev/cdrom</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>8. </span>检查目录空间大小　　<span> du</span></span></p>
<p style="line-height: 15pt;">　　<span> NO1. </span>查看当前文件夹大小</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# du -sh</span></p>
<p style="line-height: 15pt;">　　<span> NO2. </span>查看当前文件及文件中包含的子文件夹大小</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# du -ch</span></p>
<p style="line-height: 15pt;">　　<span> NO3. </span>查看文件的大小</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# du -h test1.txt</span></p>
<p style="line-height: 15pt;">　　<span> NO4. </span>同时查看多个文件的大小</p>
<p style="line-height: 15pt;">　　<span>[root@rehat root]# du -h test1.txt test2.txt</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 9. </span>磁盘碎片整理<span></span></span></p>
<p style="line-height: 15pt;">　　 <span><a target="_blank" href="http://school.21tx.com/os/linux/">Linux</a> </span>下基本上不用碎片整理，它每隔一段时间会自动整理</p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 10. </span>创建<span>/</span>改变文件系统<span></span></span></p>
<p style="line-height: 15pt;">　　<span>NO1. </span>创建文件系统类型</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# umount /dev/sdb1</span></p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# mkfs -t ext3 /dev/db1</span></p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# mount /dev/sdb1 /practice</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>11. </span>改变文件或文件夹权限　　<span>chmod</span></span></p>
<p style="line-height: 15pt;">　　<span>NO1. </span>将自己的笔记设为只有自己才能看</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# chmod go-rwx test.txt</span></p>
<p style="line-height: 15pt;">　　 或者<span> [root@rehat root]# chmod 700 test.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO2. </span>同时修改多个文件的权限</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# chmod 700 test1.txt test2.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO3. </span>修改一个目录的权限，包括其子目录及文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# chmod 700 -R test</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>12. </span>改变文件或文件夹拥有者<span></span></span></p>
<p style="line-height: 15pt;">　　<span>chown </span>该命令只有<span> root </span>才能使用</p>
<p style="line-height: 15pt;">　　<span>NO1. </span>更改某个文件的拥有者</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# chown jim:usergroup test.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO2. </span>更改某个目录的拥有者<span>,</span>并包含子目录</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# chown jim:usergroup -R test</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>13. </span>查看文本文件内容　　<span>cat</span></span></p>
<p style="line-height: 15pt;">　　<span>NO1. </span>查看文件内容，并在每行前面加上行号</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cat -n test.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO2. </span>查看文件内容，在不是空行的前面加上行号</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cat -b test.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO3. </span>合并两个文件的内容</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cat test1.txt test2.txt &gt; test_new.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO4. </span>全并两具文件的内容，并追回到一个文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cat test1.txt test2.txt &gt;&gt; test_total.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO5. </span>清空某个文件的内容</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cat /dev/null &gt; test.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO6. </span>创建一个新的文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cat &gt; new.txt </span>按<span> CTRL + C </span>结束录入</p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>14. </span>编辑文件文件　　<span>vi</span></span></p>
<p style="line-height: 15pt;">　　<span>NO1. </span>新建档案文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# vi newfile.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO2. </span>修改档案文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# vi test.txt</span>　<span> test.txt </span>已存在</p>
<p style="line-height: 15pt;">　　<span>NO3. vi </span>的两种工作模式：命令模式，编辑模式</p>
<p style="line-height: 15pt;">　　<span>NO4. </span>进入<span> vi </span>后为命令模式，按<span> Insrt </span>键进入编辑模式</p>
<p style="line-height: 15pt;">　　 按<span> ESC </span>进入命令模式，在命令模式不能编辑，只能输入命令</p>
<p style="line-height: 15pt;">　　<span>NO5. </span>命令模式常用命令</p>
<p style="line-height: 15pt;">　　<span> :w </span>保存当前文档</p>
<p style="line-height: 15pt;">　　<span> :q </span>直接退出<span> vi</span></p>
<p style="line-height: 15pt;">　　<span> :wq </span>先保存后退出</p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>15. </span>路径操作　　<span>cd pwd</span></span></p>
<p style="line-height: 15pt;">　　<span>NO1. </span>显示当前路径</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# pwd</span></p>
<p style="line-height: 15pt;">　　<span>NO2. </span>返回用户主目录</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cd</span></p>
<p style="line-height: 15pt;">　　<span>NO3. </span>改变到其它路径</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cd /etc</span></p>
<p style="line-height: 15pt;">　　<span>NO4. </span>返回到上一级目录</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cd ..</span></p>
<p style="line-height: 15pt;">　　<span>NO5. </span>返回到根目录</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# cd /</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span> 16. </span>查询文件或文件夹　　<span>find</span></span></p>
<p style="line-height: 15pt;">　　<span>NO1. </span>查找当前用户主目录下的所有文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# find ~</span></p>
<p style="line-height: 15pt;">　　<span>NO2. </span>让当前目录中文件属主具有读、写权限，并且文件所属组的用户和其他用户具有读权限的文件；</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# find . -perm 644 -exec ls -l {} ;</span></p>
<p style="line-height: 15pt;">　　<span>NO3. </span>为了查找系统中所有文件长度为<span>0</span>的普通文件，并列出它们的完整路径；</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# find / size 0 -type f -exec ls -l {} ;</span></p>
<p style="line-height: 15pt;">　　<span>NO4. </span>查找<span>/var/logs</span>目录中更改时间在<span>7</span>日以前的普通文件，并在删除之前询问它们；</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# find /var/logs -mtime +7 -type f -ok rm -i {} ;</span></p>
<p style="line-height: 15pt;">　　<span>NO5. </span>为<span>/</span>找系统中所有属于<span>root</span>组的文件；</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# find / -group root -exec ls -l {} ;</span></p>
<p style="line-height: 15pt;">　　<span>NO6. find</span>命令将删除当目录中访问时间在<span>7</span>日以来、含有数字后缀的<span>admin.log</span>文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# find . -name &quot;admin.log[0-9][0-9][0-9]&quot; -atime -7 -ok rm { } ;</span></p>
<p style="line-height: 15pt;">　　<span>NO7. </span>为了查找当前文件系统中的所有目录并排序</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# find . -type d | sort</span></p>
<p style="line-height: 15pt;">　　<span>NO8. </span>为了查找系统中所有的<span>rmt</span>磁带设备</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# find /dev/rmt</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>17. </span>显示文件<span>/</span>文件夹清单　　<span>ls / dir</span></span></p>
<p style="line-height: 15pt;">　　<span>NO1. </span>显示所有文件，包括以<span>.</span>开头的隐含文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# ls -a</span></p>
<p style="line-height: 15pt;">　　<span>NO2. </span>显示文件的详细信息</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# ls -l</span></p>
<p style="line-height: 15pt;">　　<span>NO3. </span>显示当前目录及所有子目录信息</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# ls -Rl</span></p>
<p style="line-height: 15pt;">　　<span>NO4. </span>以时间排序显示目录<span>,</span>这在找最新文件有用</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# ls -tl</span></p>
<p style="line-height: 15pt;">　　<span>NO5. </span>以文件大小排序</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# ls -Sl</span></p>
<p style="line-height: 15pt;">　　<span>NO6. </span>显示文件大小<span>,</span>并按大小排序</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# ls -s -l -S</span></p>
<p style="line-height: 15pt;"><span style="color: blue;">　　<span>18. </span>移动或更改文件<span>/</span>文件夹名称<span></span></span></p>
<p style="line-height: 15pt;">　　<span>mv </span>与<span> cp</span>命令用法相似</p>
<p style="line-height: 15pt;">　　<span>NO1. </span>若移动目标文件已存在，要在移动之前，先备份原来的目录文件</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# mv -b test.txt test2/</span></p>
<p style="line-height: 15pt;">　　 这样在<span> test2 </span>下将有两个文件<span> test.txt </span>及<span> text.txt~</span></p>
<p style="line-height: 15pt;">　　 其中<span> test.txt~ </span>是备份文件，<span>test.txt</span>是新的文件</p>
<p style="line-height: 15pt;">　　<span>NO2. </span>若移动目标文件已存在，但不想弹出是否覆盖的提示，直接覆盖</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# mv -f test.txt test2/</span></p>
<p style="line-height: 15pt;">　　<span>NO3. </span>当源与目标都拥有同一个文件，若源文件比目标新则移动，否则不移动</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# mv -u test.txt test2/</span></p>
<p style="line-height: 15pt;">　　<span>NO4. </span>更改文件名称</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# mv test.txt test2.txt</span></p>
<p style="line-height: 15pt;">　　<span>NO5. </span>更改目录名称</p>
<p style="line-height: 15pt;">　　<span> [root@rehat root]# mv /test2 /test2_2</span></p> <a href="http://hi.baidu.com/xmhhf/blog/item/1d8897ce5454e90993457e4c.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/1d8897ce5454e90993457e4c.html#comment">查看评论</a>]]></description>
        <pubDate>2009-09-19  09:58</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/1d8897ce5454e90993457e4c.html</guid>
</item>

<item>
        <title><![CDATA[华为路由器的配置命令]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/6dedfd01a6a07b0c1c95834c.html]]></link>
        <description><![CDATA[
		
		接口配置概述<br>
接口介绍<br>
路由器的接口即指路由器系统与网络中的其它设备交换数据并相互作用的部分，其功能就是完成路由器与其它网络设备的数据交换。<br>
Comware支持路由器上的物理接口和逻辑接口这两类接口。<br>
物理接口就是真实存在、有对应器件支持的接口，如以太网接口、同/异步串口等。物理接口又分为两种，一种是LAN（局域网）接口，主要是指以太网接口，路由器可以通过它与本地局域网中的网络设备交换数据；另一种是WAN（广域网）接口，包括同/异步串口、异步串口、AUX接口、AM接口、CE1/PRI接口、ISDN BRI接口等，路由器可以通过它们与外部网络中的网络设备交换数据。<br>
逻辑接口是指能够实现数据交换功能但物理上不存在、需要通过配置建立的接口，包括Dialer（拨号）接口、子接口、备份中心逻辑通道以及虚拟接口模板等。<br>
接口的配置<br>
接口的视图<br>
为了便于对接口进行配置和维护，在Comware软件中设置了接口视图。与接口有关的各种命令都必须在相应的接口视图下使用。<br>
进入接口视图的方法<br>
请在系统视图下进行下列操作，进入指定接口的视图。<br>
进入指定接口的视图<br>
操作 命令<br>
进入指定接口的视图 interface type number<br>
<br>
说明：<br>
Comware中进入E1/T1接口视图的命令与其它接口的不同，比较特殊：进入E1/T1接口视图的命令是controller { e1 | t1 }命令。<br>
<br>
退出接口视图的方法<br>
在接口视图下，键入quit命令，就可以退回到系统视图。<br>
设置接口描述<br>
路由器的物理接口都有一个接口描述配置项，接口描述主要用来帮助识别接口的用途。请在接口视图下进行下列配置。<br>
设置接口描述<br>
操作 命令<br>
设置接口描述 description interface-description<br>
恢复缺省的接口描述 undo description<br>
<br>
配置接口平均速率统计周期<br>
在系统视图下配置时，配置所有接口的统计周期。<br>
配置接口平均速率统计周期<br>
操作 命令<br>
配置接口平均速率的统计周期 flow-interval seconds<br>
恢复接口平均速率的统计周期的缺省值 undo flow-interval seconds<br>
<br>
缺省为300秒钟。<br>
使能/关闭接口发送UPDOWN的TRAP消息<br>
使能/关闭接口发送UPDOWN的TRAP消息<br>
操作 命令<br>
使能接口发送UPDOWN的TRAP消息 enable snmp trap updown&#160; <br>
关闭接口发送UPDOWN的TRAP消息的功能 undo enable snmp trap updown<br>
<br>
缺省情况下，接口发送UPDOWN的TRAP消息。<br>
检测接口或线路是否环回<br>
只有使用SD701芯片的同步串口支持该测试（包括E1、T1、E1-F、T1-F产生的同步串口）。请在同步串口视图下进行下列配置。<br>
检测接口或线路是否环回<br>
操作 命令<br>
检测接口或线路是否环回 looptest [ -c count | -p { pattern | special { ascending | descending | random } } | -s packetsize | -t timeout ] * interface type number<br>
<br>
缺省情况下，发送测试报文的次数为5次，填充方式为0x55和0xAA交替填充，测试报文长度为52字节（不包括12字节的报文头），超时时间为2000毫秒。<br>
如果线路传输速度较慢，可以适当加大等待接收报文的超时时间。<br>
进一步配置接口的方法<br>
在进一步配置一个接口前，需要对组网需求和组网图有一个完整、详细的了解。具体地配置一个接口至少需要完成以下工作：<br>
如果该接口是物理接口，需要明确其连接情况、接口工作方式及相关工作参数。<br>
如果该接口是广域网接口，则需要配置链路层协议以及工作参数等。本项设置要与相连的对端接口相适应。<br>
配置该接口的网络协议（如IP协议）地址。<br>
配置通过该接口能达到的目的网络的静态路由，或者配置动态路由协议在该接口上的工作参数。<br>
如果该接口支持拨号，则需要配置DCC工作参数以及对Modem的管理等。<br>
如果该接口在备份中心作为主接口或备用接口，则需要配置有关的备份中心工作参数。<br>
如果需要在该接口上建立防火墙，则需要进行相关的报文过滤或地址转换等参数配置。<br>
在接口视图下，需要配置的参数较多，本部分主要介绍物理接口所特有的一些参数的配置，同时，对逻辑接口的定义做简单介绍。有关链路层、网络层协议和参数的配置以及一些特殊功能的配置（如拨号、备份中心、防火墙等），在本手册的其它部分有专题介绍，本部分将不再赘述。<br>
接口的显示和调试<br>
接口的显示和调试<br>
操作 命令<br>
显示接口当前运行状态和统计信息（任意视图下） display interface [type number ]<br>
显示接口概要信息（任意视图下） display brief interface [ type [ number ] ] [ | { begin | include | exclude} text ]<br>
显示接口的主要配置信息（任意视图下） display ip interface [type number ]<br>
显示接口状态（任意视图下） display status interface interface-type interface-number<br>
清除接口统计信息（用户视图下） reset counters interface [ type number ]<br>
关闭接口（接口视图下） shutdown<br>
重启接口（接口视图下） undo shutdown<br>
复位接口（接口视图下） restart<br>
打开指定接口的debug信息输出开关 debugging physical { all | error | event | packet } interface interface-type interface-number<br>
关闭指定接口的debug信息输出开关 undo debugging physical { all | error | event| packet } interface interface-type interface-number<br>
<br>
说明：<br>
当路由器的某物理接口闲置，没有连接电缆时，请使用shutdown命令关闭该接口，以防止由于干扰导致接口异常。<br>
<br>
<br>
LAN接口配置<br>
LAN（Local Area Network，局域网）主要有以太网、令牌环网等类型。其中以太网以其高度灵活、相对简单、易于实现的特点，成为当今最重要的一种局域网组网技术。<br>
目前Comware支持的LAN接口为以太网接口，包括传统以太网接口和快速以太网接口。<br>
以太网接口<br>
以太网接口介绍<br>
以太网接口类型<br>
H3C路由器支持的快速以太网接口FE分为电接口和光接口两种，分别符合100Base-TX和100Base-FX物理层规范；支持的千兆以太网接口 GE也分为电接口和光接口两种，GE电接口符合1000Base-T规范，GE光接口符合1000Base-LX和1000Base-SX规范。<br>
工作速率及双工模式<br>
在工作速率上，FE电接口可以选择10Mbit/s、100Mbit/s两种速率；GE电接口可以选择10Mbit/s、100Mbit/s、1000Mbit/s三种速率。<br>
在工作方式上，FE电接口和GE电接口都支持半双工和全双工两种方式。<br>
为简化系统的配置和管理，FE电接口和GE电接口都具有自动协商模式，可以与其他网络设备协商确定最合适的工作方式和速率。<br>
光接口只能工作在全双工模式，并且速率也不能通过配置改变，FE光接口只能以100Mbit/s的速率工作；GE光接口只能以1000Mbit/s的速率工作。<br>
支持的帧格式<br>
FE和GE接口都能够接收帧格式为Ethernet_II或Ethernet_SNAP的以太网帧，并能自动辨认其格式，对于发送的帧则采用Ethernet_II格式。<br>
以太网接口的配置<br>
以太网接口配置包括：<br>
进入指定以太网接口的视图<br>
设置网络协议地址<br>
设置MTU<br>
选择以太网接口的工作速率<br>
选择以太网接口的工作方式<br>
允许或禁止对内自环<br>
设置千兆以太网接口的流控方式<br>
配置GE接口的工作方式<br>
配置以太网接口工作模式<br>
必须进入指定以太网接口的视图，才能对其进行配置。配置时，一般只要配置好IP地址就可以了。建议不要启用以太网接口的其它配置任务，因为其各项参数都有缺省值，可以保证系统在大多数情况下能够正常工作。<br>
进入指定以太网接口的视图<br>
请在系统视图下进行下列配置。<br>
进入指定以太网接口的视图<br>
操作 命令<br>
进入指定以太网接口的视图 interface ethernet number<br>
进入千兆以太网接口的视图 interface gigabitethernet interface-number<br>
<br>
设置网络协议地址<br>
请在以太网接口视图下进行下列配置。<br>
设置接口的IP地址<br>
操作 命令<br>
设置接口的IP地址 ip address ip-address mask [ sub ]<br>
取消接口的IP地址 undo ip address [ ip-address mask ] [ sub ]<br>
<br>
当为一个以太网接口配置两个乃至两个以上的IP地址时，对第二个及以后的IP地址（即辅助的IP地址）可以用sub关键字加以指示。<br>
设置MTU<br>
MTU（Maximum Transmission Unit，最大传输单元）参数影响IP报文的分片与重组。<br>
请在以太网接口视图下进行下列配置。<br>
设置MTU<br>
操作 命令<br>
设置MTU mtu size<br>
恢复MTU的缺省值 undo mtu<br>
<br>
缺省情况下，采用Ethernet_II帧格式，size的值为46～1500byte。缺省的MTU为1500。<br>
说明：<br>
最大传输单元MTU只影响IP组包和拆包，采用Ethernet_II帧格式时MTU可达1500字节。<br>
<br>
由于QoS队列长度有限，如果MTU太小而报文尺寸较大，可能会造成分片过多，报文被QoS队列丢弃。为避免这种情况，可适当增大QoS队列的长度。H3C路由器的接口缺省使用的队列调度机制是FIFO，可以在接口视图下使用命令qos fifo queue-length改变该队列长度。QoS队列的具体配置可参考本手册的QoS配置部分。<br>
选择以太网接口的工作速率<br>
以太网接口可以支持多种速率。FE电接口支持10Mbit/s、100Mbit/s两种速率，FE光接口只支持100Mbit/s；GE电接口支持 10Mbit/s、100Mbit/s、1000Mbit/s三种速率，而GE光只能选用1000Mbit/s速率。因此，只需对以太网电接口进行配置，而光接口不需要配置。<br>
请在以太网接口视图下进行下列配置。<br>
选择以太网接口的工作速率<br>
操作 命令<br>
选择快速以太网接口的工作速率 speed { 10 | 100 | negotiation }<br>
设置GE电接口的工作速率 speed { 10 | 100 | 1000 | negotiation }<br>
恢复缺省的工作速率 undo speed<br>
<br>
缺省速率选择negotiation，即系统自动协商最佳的工作速率。<br>
说明：<br>
FE电接口和GE电接口的缺省速率及双工模式均为自动协商模式，用户也可强制更改速率及双工模式，但应确保速率及双工模式与连接对端相同。<br>
如果在强制模式下执行自动协商命令（duplex negotiation 或 speed negotiation），则以太网电口转入自动协商模式，同时协商速率及双工模式。<br>
对于GE电接口，工作速率1000Mbit/s与半双工模式是互斥的，不能同时配置。<br>
<br>
选择以太网接口的工作方式<br>
如前所述，以太网接口可以工作在全双工和半双工两种工作方式下。与Hub相连时，路由器以太网接口应选择工作在半双工方式下；与交换式LAN Switch相连时，路由器以太网接口应选择工作在全双工方式下。FE电接口和GE电接口对这两种模式都支持，而FE光接口和GE光接口只能工作在全双工模式。<br>
可以在以太网接口视图下进行下列配置，来选择工作方式。<br>
选择以太网接口的工作方式<br>
操作 命令<br>
选择以太网接口的工作方式 duplex { negotiation | full | half }<br>
<br>
缺省情况下，FE电接口和GE电接口为negotiation方式，即系统自动协商最佳的双工模式。<br>
说明：<br>
对于GE电接口，工作速率1000Mbit/s与半双工模式是互斥的，不能同时配置。<br>
<br>
允许或禁止对内自环<br>
在对以太网接口作特殊功能测试时，有时需要将其设为对内自环。可以在以太网接口视图下进行下列配置，允许其对内自环。<br>
允许或禁止对内自环<br>
操作 命令<br>
允许对内自环 loopback<br>
禁止对内自环 undo loopback<br>
<br>
缺省为禁止对内自环。<br>
说明：<br>
以太网接口使能自环后将工作在全双工状态。<br>
在自环已使能的情况下，改变GE的工作速率到10Mbit/s或100Mbit/s，如果新配置的速率与当前速率不一致，则以新的速率进行自环，并保存新的配置。其它情况（改变GE的工作速率到1000Mbit/s或自协商方式，或设置为半双工方式），只保存新的配置，在取消自环后按新的配置方式工作。<br>
<br>
设置太网接口的流控方式<br>
请在太网接口视图下进行下列配置。<br>
设置以太网接口启用流控<br>
操作 命令<br>
设置以太网接口启用流控 flow-control&#160; <br>
恢复缺省设置 undo flow-control<br>
<br>
缺省情况下，不启用流控。如本端启用流控，那么只有在对端也支持流控时才有效。<br>
当启用流控时，如果协商失败，不能正常进入UP状态。并且，如果本端为流控方式，当对端的配置发生变化时，建议对本端先执行shutdown命令，再执行undo shutdown命令重启，以保证双方的流控方式仍保持一致。<br>
配置GE接口的工作方式<br>
GE光口提供协商和强制两种方式。协商方式下接口芯片检测协商码，可以协商PAUSE帧的结构及对端状态（是否fault）；强制方式下在线路上没有协商码流，此时接口芯片检测光的强度，当接口检测到一定的光强后，接口变为up。<br>
当一端为强制方式另一端为协商方式时，协商端接口down，强制端接口up，只有双方工作方式相同时接口才会同时up。<br>
请在GE接口视图下进行下面配置。<br>
配置GE接口的工作方式<br>
操作 命令<br>
配置GE接口工作在强制方式 force-link<br>
恢复缺省工作方式 undo force-link<br>
<br>
缺省工作方式为协商方式。<br>
配置以太网接口工作模式<br>
请在太网接口视图下进行下列配置。<br>
配置以太网接口工作模式<br>
操作 命令<br>
将以太网接口设为混杂模式 promiscuous<br>
取消以太网接口混杂模式 undo promiscuous<br>
<br>
缺省情况下，以太网接口为非混杂模式。<br>
当以太网接口被配置为混杂模式后将不再进行MAC地址过滤，接收所有正确的以太网报文。该模式主要用于网络监听功能。<br>
当启动桥功能并将以太网接口加入bridge-set后，该以太网接口将自动进入混杂模式；当将以太网接口退出bridge-set后，该以太网接口将自动进入非混杂模式。<br>
以太网接口的显示和调试<br>
请在任意视图下进行下列配置。<br>
显示指定以太网接口的状态<br>
操作 命令<br>
显示指定以太网接口的状态 display interface { ethernet | gigabitethernet } [ interface-number ]<br>
<br>
以太网接口典型配置举例<br>
组网需求<br>
如下图所示，路由器A的以太网接口连接到IP网络192.168.0.0。局域网内的计算机通过路由器A连接到Internet。将路由器以太网接口的MTU设置为1492字节。<br>
组网图<br>
<br>
以太网配置举例组网图<br>
配置步骤<br>
# 指定以太网接口Ethernet 0/0/0的IP地址为192.168.0.1，掩码为255.255.0.0。<br>
[H3C] interface ethernet 0/0/0<br>
[H3C-Ethernet0/0/0] ip address 192.168.0.1 255.255.0.0<br>
# 设置该接口的MTU为1492字节。<br>
[H3C-Ethernet0/0/0] mtu 1492<br>
二层以太网端口配置<br>
二层以太网端口特性简介<br>
传统路由器是工作在三层的网络设备，提供的以太网端口数目较少。目前，AR 18-22-24路由器及AR 28/46路由器提供的8/16端口二层交换接口模块（8/16LS）引入了能够实现二层转发的交换芯片，可以在路由器上提供更多的10 /100Base-Tx以太网端口，适合在小型企业网内作为交换/路由综合设备，直接连接企业内部的PC及网络设备，降低了企业的投资。二层以太网端口特性规格如下：<br>
支持二层转发<br>
支持广播风暴抑制比<br>
支持MAC地址老化时间<br>
支持基于端口划分VLAN（802.1Q）<br>
不支持STP/MSTP/RSTP，因此用户组网时要避免出现环路<br>
不支持端口聚合<br>
不支持RMON统计<br>
下面对VLAN的概念及优点作以简单介绍。<br>
以太网是一种基于CSMA/CD（Carrier Sense Multiple Access/Collision Detect，载波侦听多路访问/冲突检测）的共享通讯介质的数据网络通讯技术，当主机数目较多时会导致冲突严重、广播泛滥、性能显著下降甚至使网络不可用。交换机做LAN互联虽然可以解决冲突（Collision）严重的问题，但仍然不能隔离广播。在这种情况下出现了VLAN（Virtual Local Area Network）技术，即把一个LAN划分成多个逻辑的“LAN”－VLAN，每个VLAN是一个广播域，VLAN内的主机间通信就和在一个LAN内一样，而VLAN间则不能直接互通，这样，广播报文被限制在一个VLAN内。如图所示：<br>
<br>
VLAN典型应用举例<br>
VLAN的划分方法有很多，可以基于端口、基于MAC地址、基于协议类型、基于IP地址映射、基于组播、基于策略等，目前路由器上支持的VLAN是基于端口的VLAN（对于AR 18-22-24路由器，应该在24个端口内部划分VLAN；对于对于AR 28/46路由器，应该在8/16端口内部划分VLAN）。VLAN具有如下优点：<br>
限制广播报文（广播风暴），节省带宽，提高了网络处理能力。<br>
增强LAN的安全性。VLAN间不能直接通信，需要通过路由器或三层交换机等三层设备实现互通。<br>
以太网端口配置<br>
以太网端口配置包括：<br>
进入以太网端口视图<br>
打开/关闭以太网端口<br>
对以太网端口进行描述<br>
设置以太网端口双工状态<br>
设置以太网端口速率<br>
设置以太网端口流量控制<br>
设置以太网端口的链路类型<br>
设置MAC地址表老化时间<br>
设置以太网端口广播风暴抑制比<br>
设置以太网端口环回监测功能<br>
把当前以太网端口加入到指定VLAN<br>
设置以太网端口缺省VLAN ID<br>
进入以太网端口视图<br>
要对以太网端口进行配置，首先要进入以太网端口视图。<br>
请在系统视图下进行下列配置。<br>
进入以太网端口视图<br>
操作 命令<br>
进入以太网端口视图 interface { interface_type interface_num | interface_name }<br>
<br>
说明：<br>
对于AR 18-22-24路由器，Ethernet slot/1~Ethernet&#160;&#160; slot /24为二层以太网端口，Ethernet slot /0为三层虚拟接口（slot为3），可以配置IP地址并且支持子接口划分。<br>
对于AR 28/46路由器的8/16SL接口模块，Ethernet slot/0/0~Ethernet&#160;&#160; slot /0/7或Ethernet&#160;&#160; slot /0/15为二层以太网端口，Ethernet slot /0/8或Ethernet slot /0/16为三层虚拟接口（slot为二层交换接口模块所在槽位），可以配置IP地址并且支持子接口划分。<br>
该三层虚拟接口的子接口下不能配置vlan-type dot1q vid 1命令，即该子接口不能转发VLAN1的报文。<br>
<br>
打开/关闭以太网端口<br>
当端口的相关参数及协议配置好之后，可以使用undo shutdown打开端口；如果想使某端口不再转发数据，可以使用shutdown命令关闭端口。<br>
请在以太网端口视图下进行下列配置。<br>
打开或关闭以太网端口<br>
操作 命令<br>
关闭以太网端口 shutdown<br>
打开以太网端口 undo shutdown<br>
<br>
缺省情况下，端口为打开状态。<br>
对以太网端口进行描述<br>
可以使用以下命令设置端口的描述字符串，以区分各个端口。<br>
请在以太网端口视图下进行下列配置。<br>
对以太网端口进行描述<br>
操作 命令<br>
设置以太网端口描述字符串 description text<br>
恢复缺省的以太网端口描述字符串 undo description<br>
<br>
缺省情况下，端口的描述字符串为“端口名＋interface”。<br>
设置以太网端口双工状态<br>
当希望端口在发送数据包的同时可以接收数据包，可以将端口设置为全双工属性；当希望端口同一时刻只能发送数据包或接收数据包时，可以将端口设置为半双工属性；当设置端口为自协商状态时，端口的双工状态由本端端口和对端端口自动协商而定。<br>
请在以太网端口视图下进行下列配置。<br>
设置以太网端口双工状态<br>
操作 命令<br>
设置以太网端口的双工状态 duplex { full | half | negotiation }<br>
恢复以太网端口的双工状态为缺省值 undo duplex<br>
<br>
设置以太网端口速率<br>
可以使用以下命令对以太网端口的速率进行设置，当设置端口速率为自协商状态时，端口的速率由本端口和对端端口双方自动协商而定。<br>
请在以太网端口视图下进行下列设置。<br>
设置以太网端口速率<br>
操作 命令<br>
设置以太网端口的速率 speed { 10 | 100 | negotiation }<br>
恢复以太网端口的速率为缺省值 undo speed<br>
<br>
缺省情况下，以太网端口的速率处于negotioation（自协商）状态。<br>
设置以太网端口流量控制<br>
当本端和对端路由器都开启了流量控制功能后，如果本端路由器发生拥塞，它将向对端路由器发送消息，通知对端路由器暂时停止发送报文；而对端路由器在接收到该消息后将暂时停止向本端发送报文；反之亦然。从而避免了报文丢失现象的发生。可以使用以下命令对以太网端口是否开启流量控制功能进行设置。<br>
请在以太网端口视图下进行下列配置。<br>
设置以太网端口流量控制<br>
操作 命令<br>
开启以太网端口的流量控制 flow-control<br>
关闭以太网端口的流量控制 undo flow-control<br>
<br>
缺省情况下，端口的流量控制为关闭状态。<br>
设置以太网端口的链路类型<br>
以太网端口有三种链路类型：Access、Hybrid和Trunk。Access类型的端口只能属于1个VLAN，一般用于连接计算机的端口；Trunk类型的端口可以属于多个VLAN，可以接收和发送多个VLAN的报文，一般用于路由器之间连接的端口；Hybrid类型的端口可以属于多个 VLAN，可以接收和发送多个VLAN的报文，可以用于路由器之间连接，也可以用于连接用户的计算机。Hybrid端口和Trunk端口的不同之处在于 Hybrid端口可以允许多个VLAN的报文发送时不打标签，而Trunk端口只允许缺省VLAN的报文发送时不打标签。<br>
请在以太网端口视图下进行下列设置。<br>
设置以太网端口的链路类型<br>
操作 命令<br>
设置端口为Access端口 port link-type access<br>
设置端口为Hybrid端口 port link-type hybrid<br>
设置端口为Trunk端口 port link-type trunk<br>
恢复端口的链路类型为缺省的Access端口 undo port link-type<br>
<br>
缺省情况下，端口为Access端口。<br>
设置MAC地址表的老化时间<br>
设置合适的老化时间可以有效的实现MAC地址老化的功能。用户设置的老化时间过长或者过短，都可能导致路由器广播大量找不到目的MAC地址的数据报文，影响路由器的运行性能。一般情况下，建议采用系统缺省的MAC地址表老化时间，缺省情况下MAC地址表的老化时间为300秒。<br>
老化时间过长会导致路由器保存许多过时的MAC地址表项，耗尽MAC地址表资源，以至无法根据网络的变化更新MAC地址表。老化时间太短则会导致路由器删除有效的MAC地址表项。<br>
请在以太网端口视图下进行下列配置。<br>
设置MAC地址表老化时间<br>
操作 命令<br>
设置MAC地址表老化时间 mac-address timer aging {age-time | no-age}<br>
恢复MAC地址表老化时间的缺省值 undo mac-address timer aging<br>
<br>
缺省情况下MAC地址表的老化时间为300秒。<br>
设置以太网端口广播风暴抑制比<br>
可以使用以下的命令限制端口上允许通过的广播流量的大小。当广播流量超过用户设置的值后，系统将对广播流量作丢弃处理，使广播所占的流量比例降低到合理的范围，从而有效地抑制广播风暴，避免网络拥塞，保证网络业务的正常运行。以端口最大的广播流量的线速百分比作为参数，百分比越小，表示允许通过的广播流量越小；当百分比为 100时，表示不对该端口进行广播风暴抑制。<br>
请在以太网端口视图下进行下列配置。<br>
设置以太网端口广播风暴抑制比<br>
操作 命令<br>
设置以太网端口的广播风暴抑制比例 broadcast-suppression pct<br>
恢复以太网端口的广播风暴抑制比例为缺省值 undo broadcast-suppression<br>
<br>
缺省情况下，允许通过的广播流量为100%，即不对广播流量进行抑制。<br>
设置以太网端口对内环回功能<br>
使用以下的配置任务可以开启端口对内环回功能<br>
请在以太网端口视图下进行下列配置。<br>
设置以太网端口对内环回功能<br>
操作 命令<br>
开启端口对内环回功能 loopback<br>
关闭端口对内环回功能 undo loopback<br>
<br>
缺省情况下，端口对内环回功能处于关闭状态。<br>
只有在进行某些特殊功能测试时，才需要将端口设为对内环回。<br>
把当前以太网端口加入到指定VLAN<br>
本配置任务把当前以太网端口加入到指定的VLAN中。Access端口只能加入到1个VLAN中，Hybrid端口和Trunk端口可以加入到多个VLAN中。<br>
请在以太网端口视图下进行下列设置。<br>
把当前以太网端口加入到指定VLAN<br>
操作 命令<br>
把当前Access端口加入到指定VLAN port access vlan vlan_id<br>
将当前Hybrid端口加入到指定VLAN port hybrid vlan vlan_id_list { tagged | untagged }<br>
把当前Trunk端口加入到指定VLAN port trunk permit vlan { vlan_id_list | all }<br>
把当前Access端口从指定VLAN删除 undo port access vlan<br>
把当前Hybrid端口从指定VLAN中删除 undo port hybrid vlan vlan_id_list<br>
把当前Trunk端口从指定VLAN中删除 undo port trunk permit vlan { vlan_id_list | all }<br>
<br>
需要注意的是：Access端口加入的VLAN不能是VLAN1。<br>
执行了本配置，当前以太网端口就可以转发指定VLAN的报文。Hybrid端口和Trunk端口可以加入到多个VLAN中，从而实现本路由器上的VLAN 与对端路由器或交换机上相同VLAN的互通。Hybrid端口还可以设置哪些VLAN的报文打上标签，哪些不打标签，为实现对不同VLAN报文执行不同处理流程打下基础。<br>
设置以太网端口缺省VLAN ID<br>
Access端口只属于1个VLAN，所以它的缺省VLAN就是它所在的VLAN，不用设置；Hybrid端口和Trunk端口属于多个VLAN，所以需要设置缺省VLAN ID。如果设置了端口的缺省VLAN ID，当端口接收到不带VLAN Tag的报文后，则将报文转发到属于缺省VLAN的端口；当端口发送带有VLAN Tag的报文时，如果该报文的VLAN ID与端口缺省的VLAN ID相同，则系统将去掉报文的VLAN Tag，然后再发送该报文。<br>
请在以太网端口视图下进行下列配置。<br>
设置以太网端口缺省VLAN ID<br>
操作 命令<br>
设置Hybrid端口的缺省VLAN ID port hybrid pvid vlan vlan_id<br>
设置Trunk端口的缺省VLAN ID port trunk pvid vlan vlan_id<br>
恢复Hybrid端口的缺省VLAN ID为缺省值 undo port hybrid pvid<br>
恢复Trunk端口的缺省VLAN ID为缺省值 undo port trunk pvid<br>
<br>
需要注意的是，本Hybrid端口或Trunk端口的缺省VLAN ID和相连的对端路由器或交换机的Hybrid端口或Trunk端口的缺省VLAN ID必须一致，否则报文将不能正确传输。<br>
缺省情况下，Hybrid端口和Trunk端口的缺省VLAN为VLAN1，Access端口的缺省VLAN是本身所属于的VLAN。<br>
以太网端口显示和调试<br>
在完成上述配置后，在任意视图下执行display命令可以显示配置后以太网端口的运行情况，通过查看显示信息验证配置的效果。<br>
在用户视图下，执行reset命令可以清除以太网端口的统计信息。<br>
以太网端口显示和调试<br>
操作 命令<br>
显示端口的所有信息 display interface { ethernet | gigabitethernet } [ interface-number ]<br>
显示Hybrid端口或Trunk端口 display port { hybrid | trunk }<br>
清除以太网端口的统计信息 reset counters interface [ interface-type [ interface-number ]] <a href="http://hi.baidu.com/xmhhf/blog/item/6dedfd01a6a07b0c1c95834c.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/6dedfd01a6a07b0c1c95834c.html#comment">查看评论</a>]]></description>
        <pubDate>2009-09-19  09:57</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/6dedfd01a6a07b0c1c95834c.html</guid>
</item>

<item>
        <title><![CDATA[如何释放sql数据库事务日志]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/6dedfd01a6af7b0c1c958343.html]]></link>
        <description><![CDATA[
		
		你查一下数据库的日志模式是不是full？这个模式产生的日志巨大，改成简单模式就可以了，再把数据库设为自动收缩。<br>
<br>
SQL SERVER日志清除的方法<br>
<br>
一般情况下，SQL数据库的收缩并不能很大程度上减小数据库大小，其主要作用是收缩日志大小，应当定期进行此操作以免数据库日志过大<br>
<br>
1、设置数据库模式为简单模式：打开SQL企业管理器，在控制台根目录中依次点开Microsoft SQL Server--&gt;SQL Server组--&gt;双击打开你的服务器--&gt;双击打开数据库目录--&gt;选择你的数据库名称（如论坛数据库Forum）--&gt;然后点击右键选择属性--&gt;选择选项--&gt;在故障还原的模式中选择“简单”，然后按确定保存。<br>
<br>
2、在当前数据库上点右键，看所有任务中的收缩数据库，一般里面的默认设置不用调整，直接点确定。<br>
<br>
3、收缩数据库完成后，建议将您的数据库属性重新设置为标准模式，操作方法同第一点，因为日志在一些异常情况下往往是恢复数据库的重要依据<br>
<br>
<br>
<br>
<br>
SQLSERVER中讲：<br>
<br>
BACKUP LOG 数据库名 WITH NO_LOG|TRUNCATE_ONLY可以截断事务日志。<br>
<br>
但我在数据库中进行上述操作后，事务日志还是没有改变。<br>
<br>
<br>
第一步只是将非活动的事务日志截断，并没有收缩数据库，只有进行第二项操作后，数据库才进行事务日志的清理工作，将截断的非活动事务删除，并将事务日志文件收缩到适当尺寸。<br>
在使用 SQL Server 时，数据库里的日志文件会越来越大，需要把它删除。&#160; 我先把这个数据库分离，在数据库上点右键 -&gt; 所有任务 -&gt; 分离数据库，分离之后，就可以把 Log 文件删除，同时也可以把数据进行备份。之后，就可以在所有任务里的附加数据库再把那个数据库添进来，SQL Server 会提示 LOG 文件不存在，问你是不是要新建一个，选是就行了，这样，LOG 文件就清空了。这个方法只需几分钟的时间，但在这几分钟里，就不能访问这个数据库了，我觉得只适用于小型的应用，对于大型的系统就要找其它方法了。 <a href="http://hi.baidu.com/xmhhf/blog/item/6dedfd01a6af7b0c1c958343.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/6dedfd01a6af7b0c1c958343.html#comment">查看评论</a>]]></description>
        <pubDate>2009-09-19  09:55</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/6dedfd01a6af7b0c1c958343.html</guid>
</item>

<item>
        <title><![CDATA[手工恢复XP的欢迎登录界面]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/1d8897cec24f570a93457e54.html]]></link>
        <description><![CDATA[
		
		　　安装完驱动重新启动后，Windows XP 由其特有的欢迎登录界面变成经典的窗口登录模式。切在控制面板“用户设置”中无法改回欢迎界面登录模式，会提示“近期安装的应用程序屏蔽了欢迎界面和快速 用户切换。您需要卸载该应用程序来恢复这项特性。以下名称或许能帮助您识别该应用程序：athgina.dll”。<br>
出现这个问题可以用尝试用以下方法解决：<br>
一、在运行中输入“gpedit.msc”,打开组策略，找到系统--登录的地方（即依次选择<a href="http://product.enet.com.cn/price/plist3.shtml" target="_blank" class="article">计算机</a>配置--管理模板--系统--登录）,然后用<a href="http://product.enet.com.cn/price/plist23.shtml" target="_blank" class="article">鼠标</a>左 键双击“总是用传统登陆”，会弹出一个对话框，选中“未配置”或“已仅用”以后按下确定，然后察看剩下的有关是否使用欢迎界面的组策略--“登陆时不显示 欢迎屏幕”是否为“已启用”，如果是的话修改为“未配置”或“已禁用”，最后到控制面板--用户帐户里面--更改用户登陆或注销方式里面察看是否选中使用 欢迎界面，没有的话选中即可恢复WinXP的欢迎登陆界面。<br>
<strong>二、</strong>如果用以上方法仍不能解决问题，则可能会是以下原因造成：<br>
驱动程序安装时会用其自带的 athgina.dll 文件取代 Windows XP 自身的 msgina.dll 并写入注册表从而改变 GINA 的行为。<br>
GINA 的全称为“Graphical Identification and Authentication”——图形化识别和验证。它是几个动态数据库文件，被 winlogon.exe 所调用，为其提供能够对用户身份进行识别和验证的函数，并将用户的帐号和密码反馈给 winlogon.exe。在登录过程中，“欢迎屏幕”和“登录对话框”就是 GINA 显示的。<br>
无线网卡的驱动程序安装自己的动态链接库来控制 GINA，推测可能是为了获取用户登录的用户名密码以便在登录有身份验证的无线网络时使用。<br>
<strong>解决办法</strong><br>
如果只是使用不加安全验证的无线网络，实际上是永不到这个动态链接库的。打开注册表，找到键值<br>
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft \Windows NT\CurrentVersion\Winlogon\GinaDLL，其值应该就是 athgina.dll，将其删掉，就可以立即到控制面板里重新设置欢迎登录界面和用户快速切换。实际上，Windows 默认是没有这个键值的，而只要存在这个键值，欢迎登录界面和用户快速切换功能就会被屏蔽，哪怕其值是 Windows 自身的 msgina.dll。<br>
如果需要使用 WPA + PEAP(MSCHAP v2) 安全验证的无线网络，似乎只有放弃 Windows XP 的欢迎登录机界面和用户快速切换功能了。去掉以上键值后，不管是用 Windows 自带的无线忘了连接向导还是 TP-LINK 驱动盘提供的无线网络连接程序都无法正确建立无线连接，而把这个键值重新加上即可。<br> <a href="http://hi.baidu.com/xmhhf/blog/item/1d8897cec24f570a93457e54.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/1d8897cec24f570a93457e54.html#comment">查看评论</a>]]></description>
        <pubDate>2009-08-11  23:15</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/1d8897cec24f570a93457e54.html</guid>
</item>

<item>
        <title><![CDATA[批量修改ad帐户属性]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/8babd9b12549db5d092302bd.html]]></link>
        <description><![CDATA[
		
		Log parser 2.2是<span href="http://www.czna.net/bbs/tag.php?name=%CE%A2%C8%ED" class="t_tag">微软</span>一款免费的<span href="http://www.czna.net/bbs/tag.php?name=%C3%FC%C1%EE" class="t_tag">命令</span>行方式日志分析<span href="http://www.czna.net/bbs/tag.php?name=%B9%A4%BE%DF" class="t_tag">工具</span>。他可用对各种日志<span href="http://www.czna.net/bbs/tag.php?name=%CE%C4%BC%FE" class="t_tag">文件</span>使用SQL语句进行查询，同时按照指定格式输出。那怎么会和属性批量更改有关呢？各位耐心往下看。<br>
<br>
目前，对AD的LDAP进行批量操作的命令有两个CSVDE和LDIFDE两个命令。这两个命令用法基本差不多，实际使用下来各有优缺点。<br>
<br>
CSVDE<br>
优点：输出是CSV格式的文件，可以很方便地在excel 或access 中进行替换，编辑。<br>
缺点：CSVDE对AD的import<span href="http://www.czna.net/bbs/tag.php?name=%B9%A6%C4%DC" class="t_tag">功能</span>很弱，只能通过该命令添加新<span href="http://www.czna.net/bbs/tag.php?name=%D3%C3%BB%A7" class="t_tag">用户</span>，不能批量修改，删除。<br>
<br>
LDIFDE<br>
优点：输入输出的功能很强，可以完成所有对AD属性的操作。<br>
缺点：输出生成LDF文件，该文件是非结构化的格式，只能在字符处理<span href="http://www.czna.net/bbs/tag.php?name=%C8%ED%BC%FE" class="t_tag">软件</span>里面进行一些简单的查找，替换。<font color="#ff0000">而且只能</font><font color="#ff0000">更改</font><font color="#ff0000">对用户名</font><font color="#ff0000">为英文的</font><font color="#ff0000">属性！</font><br>
<br>
如果有一种软件可以把CSV文件转换成LDF文件，那我们就可以随心所欲地批量更改AD和Exchange的属性。这个工具就是log parser 2.2 。<br>
<br>
假定你已经用CSVDE导出了CSV文件，并做了修改如下,文件名import.csv：<br>
<font color="RoyalBlue">dn,displayname</font><br>
<font color="RoyalBlue">&quot;CN=Zhang Shan,OU=External Users,DC=company,DC=com&quot;,&quot;Zhang, Shan(CN)&quot;</font><br>
<font color="RoyalBlue">&quot;CN=li si,OU=External Users,DC=company,DC=com&quot;,&quot;Li, Si(CN)&quot;</font><br>
<br>
现在你想将这些更改写回AD。<br>
<br>
首先，用notepad写一个tpl模板文件。例如：template.tpl<br>
<font size="1"><font color="RoyalBlue"><font size="1"><font size="2"><lpbody><br>
dn: %FIELD_3%<br>
changetype: modify<br>
replace: displayname<br>
</lpbody></font></font></font></font><font size="1"><font color="RoyalBlue"><font size="1"><font size="2">displayname</font></font></font></font><font size="1"><font size="1"><font size="2"><font color="RoyalBlue">: %FIELD_4%</font><br>
<font color="RoyalBlue">-</font><br>
<br>
<br>
</font></font></font><font color="Red">（注意，最后两行的减号和空行是必须的，这是分割标志。</font><font size="1"><font color="Red"><font size="1"><font size="2">%FIELD_3%</font></font></font></font><font color="Red">代表CSV文件第一列，以此类推，我也不知道为什么是从3开始的。）</font><br>
<br>
<strong>LogParser &quot;SELECT * INTO out.ldf FROM import.csv&quot; -o:TPL -tpl:template.tpl<br>
<br>
</strong>（该命令缺省情况下会忽略CSV文件第一行，认为是csv的header）<br>
该命令会生成out.ldf文件，内容如下：<br>
<br>
<font color="RoyalBlue">dn: CN=Zhang Shan,OU=External Users,DC=company,DC=com</font><br>
<font color="RoyalBlue">changetype: modify</font><br>
<font color="RoyalBlue">replace: displayname</font><br>
<font color="RoyalBlue">displayname: Zhang, Shan(CN)</font><br>
<font color="RoyalBlue">-</font><br>
<br>
<font color="RoyalBlue">dn: CN=li si,OU=External Users,DC=company,DC=com</font><br>
<font color="RoyalBlue">changetype: modify</font><br>
<font color="RoyalBlue">replace: displayname</font><br>
<font color="RoyalBlue">displayname: Li, Si(CN)</font><br>
<font color="RoyalBlue">-</font><br>
<br>
<br>
这就是我们需要的ldf文件。<br>
<br>
最后，运行如下命令：<br>
<br>
<strong><strong>ldifde -i -f out.ldf -k -j c:\<br>
<br>
<br>
<br>
</strong><font color="Red">最关键一点，所有ldf属性必须包含有效值，否则ldifde会报错。通常一次修改多个属性，可能会出现这个问题。如果ldf文件中包含如下记录，ldifde导入会出错。在处理CSV文件的时候就要考虑这点。</font><br>
<br>
</strong><font color="DarkSlateGray">dn: CN=li si,OU=External Users,DC=company,DC=com</font><br>
<font color="DarkSlateGray">changetype: modify</font><br>
<font color="DarkSlateGray">replace: displayname</font><br>
<font color="RoyalBlue"><font color="Red"><strong>displayname:</strong></font><br>
</font><font color="RoyalBlue">-<br>
<br>
<font color="#000000">l</font><font color="#000000">og parser 2.2 <span href="http://www.czna.net/bbs/tag.php?name=%CF%C2%D4%D8" class="t_tag">下载</span><span href="http://www.czna.net/bbs/tag.php?name=%B5%D8%D6%B7" class="t_tag">地址</span></font><br>
</font><br>
<a href="http://www.microsoft.com/downloads/info.aspx?na=90&amp;p=&amp;SrcDisplayLang=en&amp;SrcCategoryId=&amp;SrcFamilyId=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2ff%2ff%2f1%2fff1819f9-f702-48a5-bbc7-c9656bc74de8%2fLogParser.msi" target="_blank">http://www.microsoft.com/downloads/info.aspx?na=90&amp;p=&amp;SrcDisplayLang=en&amp;SrcCategoryId=&amp;SrcFamilyId=890cd06b-abf8-4c25-91b2-f8d975cf8c07&amp;u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2ff%2ff%2f1%2fff1819f9-f702-48a5-bbc7-c9656bc74de8%2fLogParser.msi</a> <a href="http://hi.baidu.com/xmhhf/blog/item/8babd9b12549db5d092302bd.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/8babd9b12549db5d092302bd.html#comment">查看评论</a>]]></description>
        <pubDate>2009-08-03  19:17</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/8babd9b12549db5d092302bd.html</guid>
</item>

<item>
        <title><![CDATA[配制Exchange Server 2007中收发邮件大小限制]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/7c751808147b9b9c0a7b8298.html]]></link>
        <description><![CDATA[
		
		Exchange server中的邮件收发大小，直接影响着其网络资源及Exchange 系统资源的浪费；且在日常的邮件服务器管理工作中，我们也经常有这方面的需求，所以我在此和大家简要地讨论下如何来限制Exchange 2007中的邮件收发大小。 <br>
Exchange 2007中的邮件传送与接收大小的限制有下列几个检查点：<br>
组织限制<br>
全局限制<br>
连接器限制<br>
服务器限制<br>
用户限制<br>
<br>
邮件传送大小的限制原则：<br>
1.&nbsp;&nbsp;&nbsp;    客户端使用MAPI连接时会受限于全局限制、组织限制、使用者信箱传送大小的限制、接收大小的限制、集线器传输规则的附件文件大小限制、连接器、OWA 2007 (Web.config file)的上传下载大小限制。<br>
2.&nbsp;&nbsp;&nbsp;    使用者的传送大小或接收大小取决于使用者信箱的传送大小限制的设置，若保持默认(没有特别指定)，再由全局限制及组织限制、连接器限制三者的传送大小限制来决定，但默认上，组织和全局及连接器都是限制10MB，用户是没有限制，因此三者之间再取最小值，所以若使用者信箱没有特别设定传送大小限制，默认值会被限制在10MB。<br>
3.&nbsp;&nbsp;&nbsp;    Exchange 2007 的发送和接收连接器的默认限制是10M，在集线器传输服务器和边缘传输服务器上都是一样的。在内部传输的邮件受到集线器传输服务器的影响，要更改内部邮件的限制，更改集线器传输服务器的连接器的限制即可。对于Internet的邮件，如果使用边缘连接，则还受边缘服务器的影响，需要同时更改集线器传输服务器和边缘服务器的设置。<br>
<br>
<strong>组织限制的设置：</strong><br>
依次展开：[组织配置]－[集线器传输]－[全局设置]－右击[传输设置]－属性<br>
<br>
<strong>全局限制的设置：</strong><br>
说明：<br>
1.&nbsp;&nbsp;&nbsp;    如果组织从Exchange 2003 升级至Exchange 2007时，全局限制的初始值会保留旧版本Exchange的设置，此时，必须使用 Exchange 2003 服务器上的 Exchange 系统管理器或 ADSI 编辑工具修改全局邮件限制，建议将全局限制和相应的组织限制设置为相同的值。在Exchange 2007 RTM中，使用Set-Transportconfig 设置的MaxreceiveSize\MaxSendSize参数不会复制到相应的全局限制中。<br>
2.&nbsp;&nbsp;&nbsp;    在Exchange 2007 SP1中，不应该直接修改全局限制，使用Set-TransportConfig修改组织限制时，新值将自动复制到相应的全局限制中。<br>
<strong>使用ADSI EDIT设置：</strong><br>
Configuration&ndash;&gt;CN=Service&ndash;&gt;CN=Microsoft Exchange&ndash;&gt;CN=&lt;Exchange ORG. Name&gt;&ndash;&gt;CN=Global Settings&ndash;&gt;CN=Message Delivery&ndash;&gt;鼠标右键&ndash;&gt;属性<br>
delivContLength：&lt;10240&gt; (0~2097151KB) 默认值为10MB，最大可以设为2097151KB (2GB)submissionContLenght：&lt;10240&gt; (0~2097151KB)&nbsp;&nbsp;&nbsp;&nbsp;    同上msExchReciplimit：&lt;5000&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    (0~2147483647)&nbsp;&nbsp;    不用改<br>
<br>
<strong>连接器限制的设置：</strong><br>
<strong>配置接收连接器</strong><br>
依次展开：[服务器配置]－[集线器传输] 在右边窗口，点击[接收连接器] 双击[Default server]<br>
对应PowerShell command:<br>
Set-ReceiveConnector &ldquo;连接器名称&rdquo; &ndash;MaxMessageSize 10MB<br>
<br>
<strong>配置发送连接器</strong><br>
依次展开：[组织配置]－[集线器传输]在右边窗口，点击[发送连接器]<br>
对应PowerShell command:<br>
Set-SendConnector &ldquo;连接器名称&rdquo; &ndash;MaxMessageSize 10MB<br>
<strong>用户限制的设置</strong><br>
依次展开：[收件人配置]－[邮箱]－双击邮箱名<br>
对应的PowerShell Command:<br>
Set-Mailbox &ldquo;administrator&rdquo; &ndash;MaxSendSize 10MB &ndash;MaxReceiveSize 10MB<br>
批量更改：get-user | set-mailbox -MaxSendSize &ldquo;10MB&rdquo;<br>
<br>
除此之外，当Exchange 2007与早期版本的Exchange Server共存或Exchange 2007跨多站点时，我们还可以配置在各个 Active Directory 目录服务站点之间或各个路由组之间路由的邮件的最大邮件大小限制。如果正在运行 Exchange 2007 Service Pack 1 ，则可以在 Active Directory IP 站点链接或路由组连接器上设置最大邮件大小限制。<br>
<br>
<strong>配置AD站点链接限制：</strong><br>
在单个 Active Directory 站点链接上配置最大邮件大小限制：<br>
Set-AdSiteLink -Identity DEFAULTIPSITELINK -MaxMessageSize 10MB<br>
在所有 Active Directory 站点链接上配置相同的最大邮件大小限制：<br>
Get-AdSiteLink | Set-AdSiteLink -MaxMessageSize 10MB <br>
<br>
<strong>配置路由组连接器限制</strong><br>
在单个路由组连接器上配置最大邮件大小限制:<br>
Set-RoutingGroupConnector -Identity &ldquo;Exchange Administrative Group (FYDIBOHF23SPDLT)\Exchange Routing Group (DWBGZMFD01QNBJR)\Ex2007 to 2003 RGC&rdquo;  -MaxMessageSize 10MB<br>
在所有路由组连接器上配置相同的最大邮件大小限制：<br>
Get-RoutingGroupConnector | Set-RoutingGroupConnector -MaxMessageSize 10MB <br>
<strong><br>
配置OWA邮件传送大小限制</strong><br>
&nbsp;&nbsp;    1.  在客户端访问服务器上找到 Outlook Web Access Web.config 文件。默认位置为 c:\ProgramFiles\Microsoft\ExchangeServer\ClientAccess\Owa。<br>
&nbsp;&nbsp;    2.为这个文件创建一个备份。<br>
&nbsp;&nbsp;    3.  使用如记事本之类的编辑器打开原始文件。请不要使用 IIS 编辑 Web.config 文件。<br>
&nbsp;&nbsp;    4.找到 maxRequestLength，并将其值更改为所需的值。该值以千字节 (KB) 为单位进行存储。默认值为 30000。<br>
&lt;httpRuntime maxRequestLength=&rdquo;30000″ /&gt;<br>
&nbsp;&nbsp;&nbsp;    5. 保存并关闭该文件。<br>
使用PowerShell命今跟踪失败的邮件传递<br>
跟踪失败的接收邮件传递信息：<br>
Get-MessageTrackingLog -EventID FAIL | where {$_.RecipientStatus -like &ldquo;*RecipSizeLimit*&rdquo;}<br>
跟踪失败的发送邮件传递信息：<br>
Get-MessageTrackingLog -EventID FAIL | where {$_.RecipientStatus -like &ldquo;*SendSizeLimit*&rdquo;} <a href="http://hi.baidu.com/xmhhf/blog/item/7c751808147b9b9c0a7b8298.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/7c751808147b9b9c0a7b8298.html#comment">查看评论</a>]]></description>
        <pubDate>2009-07-30  18:40</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/7c751808147b9b9c0a7b8298.html</guid>
</item>

<item>
        <title><![CDATA[Linux VNC远程桌面]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/26aae08fa1b3d3e7f11f3601.html]]></link>
        <description><![CDATA[
		
		<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>VNC</span><span>，全称为</span><span>Virtual Network Computing</span><span>，是一个桌面共享系统。它的功能，类似于</span><span>windows</span><span>中的远程</span><span> </span><span style="font-size: 10.5pt;">桌面功能。</span><span style="font-size: 10.5pt;">VNC</span><span style="font-size: 10.5pt;">使用了</span><span style="font-size: 10.5pt;">RFB(Remote FrameBuffer</span><span style="font-size: 10.5pt;">，远程帧缓冲）协议来实现远程控制另外一台计算机。它把键盘、鼠标动作发送到远程计算机，并把远程计算机的屏幕发回到本地，</span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>VNC Viewer</span><span>可以和</span><span>VNC Server</span><span>在不同的操作系统上。</span><span>VNC</span><span>几乎支持所有的操作系统，也支持</span><span>Java</span><span>，甚至可以通过支持</span><span>Java</span><span>的浏览器来访问</span><span>VNC Server</span><span>。多个</span><span>VNC</span><span>客户端可以同时连接到一个</span><span>VNC Server</span><span>上。</span><span> <br>
</span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>一、在</span><span>rel5</span><span>下安装配置</span><span>VNC </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>1.</span><span>检查</span><span>VNC</span><span>客户端和服务器端是否已经安装</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span></font><font size="2"><span>执行如下命令：</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>rpm &ndash;qa | grep vnc vnc-server </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>如果返回类似如下信息，</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>package vnc is not installed </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>vnc-server-4.0-8.1 </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span><span style="font-size: 10.5pt;">则说明系统已经默认安装了</span><span style="font-size: 10.5pt;">vnc</span><span style="font-size: 10.5pt;">服务器端（一般来说，系统都默认安装了</span><span style="font-size: 10.5pt;">vnc server</span><span style="font-size: 10.5pt;">）。<br>
</span></span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>2. </span><span>将用户名加入到配置文件中</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span></font><font size="2"><span>使用如下命令编辑配置文件，添加帐户信息：</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span><span>vi /etc/sysconfig/vncservers </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>做如下修改（红色部分为添加的部分）：</span></font></p>
<div align="center">
<table cellspacing="0" cellpadding="0" border="1" width="490" class="MsoNormalTable" style="width: 367.7pt; border-collapse: collapse;">
    <tbody>
        <tr style="height: 341.4pt;">
            <td style="border: medium none rgb(239, 239, 239); padding: 0cm; background: rgb(230, 230, 230) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; height: 341.4pt;">
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">#</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># Uncomment the line below to start a VNC server on display :1</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># as my 'myusername' (adjust this to your own).<span>&nbsp;&nbsp;   </span>You will also</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># need to set a VNC password; run 'man vncpasswd' to see how</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># to do that.</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">#</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># DO NOT RUN THIS SERVICE if your local area network is</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># untrusted!<span>&nbsp;&nbsp;   </span>For a secure way of using VNC, see</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># &lt;URL:http://www.uk.research.att.com/vnc/sshvnc.html&gt;.</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"> </span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># VNCSERVERS=&quot;1:myusername&quot;</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"> </span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># VNCSERVERS=&quot;1:gavin 2:john&quot; </span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># use the method for more user</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt; color: red;"><font color="#ff9999">VNCSERVERS=&quot;2:root&quot;</font></span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"> </span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># VNCSERVERARGS[1]=&quot;-geometry 800x600&quot;</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt; color: red;"><font color="#ff0000">VNCSERVERARGS[2]=&quot;-geometry 1024x768&quot;</font></span></font></p>
            </td>
        </tr>
    </tbody>
</table>
</div>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> <span style="font-size: 10.5pt;">3.</span><span style="font-size: 10.5pt;">设置</span><span style="font-size: 10.5pt;"> root</span><span style="font-size: 10.5pt;">用户的密码<br>
</span><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  使用如下命令设置密码：</span></span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>&nbsp;&nbsp;&nbsp;</span><span>vncpasswd </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> 当提示</span><span>Verify</span><span>时，再次输入密码确认。</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span></font><font size="2"><span>4.</span><span>启动</span><span>VNC</span><span>服务</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>使用如下命令启动</span><span>VNC SERVER </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>sbin/service vncserver start </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>当显示如下信息时，表示启动成功：</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>Starting VNC server: 2:root </span><span>　　　　　　　　　　　　　　　</span><span>[ OK ] </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>5.</span><span>修改</span><span>VNC SERVER</span><span>的窗口管理器</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>vnc server</span><span>默认使用的窗口管理器是</span><span>twn</span><span>，这是一个非常简单的窗口管理器，我们可以改成常用的</span><span>&nbsp;&nbsp;   GNOME</span><span>或者</span><span>KDE</span><span>。</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>先使用如下命令进入用户的</span><span>home</span><span>目录：</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span><span>cd ~/.vnc </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>二、编辑启动项：</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span><span>vi xstartup </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>按照如下方式修改启动项：</span><span> </span></font></p>
<div align="center">
<table cellspacing="0" cellpadding="0" border="1" width="453" class="MsoNormalTable" style="width: 339.95pt; border-collapse: collapse;">
    <tbody>
        <tr style="height: 269.55pt;">
            <td style="border: medium none rgb(239, 239, 239); padding: 0cm; background: rgb(230, 230, 230) none repeat scroll 0% 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; height: 269.55pt;">
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">#!/bin/sh</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"> </span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"># Uncomment the following two lines for normal desktop:</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">unset SESSION_MANAGER</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">exec /etc/X11/xinit/xinitrc</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;"> </span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">[ -x /etc/vnc/xstartup ] &amp;&amp; exec /etc/vnc/xstartup</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">[ -r $HOME/.Xresources ] &amp;&amp; xrdb $HOME/.Xresources</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">xsetroot -solid grey</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">vncconfig -iconic &amp;</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">xterm -geometry 80x24+10+10 -ls -title &quot;$VNCDESKTOP Desktop&quot; &amp;</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt; color: red;">gnome-session </span><span style="font-size: 12pt;">&amp;<span>&nbsp;&nbsp;&nbsp;&nbsp;   </span>#</span><span style="font-size: 12pt;">以<span>GNOME</span>作为<span>VNC</span>的窗口管理器</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">#startkde &amp;<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   </span>#kde desktop</span></font></p>
            <p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;"><font size="2"><span style="font-size: 12pt;">#twm &amp;<span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   </span>#</span><span style="font-size: 12pt;">注掉系统默认的窗口管理器</span></font></p>
            </td>
        </tr>
    </tbody>
</table>
</div>
<font size="2"> </font>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><br>
</font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>6.</span><span>重启</span><span>VNC SERVER </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>/sbin/service vncserver restart </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>当系统提示如下信息时，表示重启成功：</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>Shutting down VNC server: 2:root [ OK ] </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>Starting VNC server: 2:root </span><span>　　　　　　　　　　　　　　　</span><span>[ OK ]</span><span>　</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>windows</span><span>登录到</span><span>VNC SERVER </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span></font><font size="2"><span>(1).</span><span>从</span><span>IE</span><span>登录</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>直接从</span><span>IE</span><span>浏览器中输入如下地址：</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span><span><a href="http://xxx.xxx.xxx.xxx:5802/">http://xxx.xxx.xxx.xxx:5802</a> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>输入密码即可使用。</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span> </span></font><font size="2"><span>(2).</span><span>从</span><span>VNC view</span><span>登录</span><span> </span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span style="color: red;"> </span></font><font size="2"><span style="color: red;">注意：</span><span style="color: red;">linux </span><span style="color: red;">防火墙设置（允许VNC通过）</span></font></p>
<p align="left" class="MsoNormal" style="margin: 0cm 0cm 0pt; text-indent: 24pt; line-height: 15pt; text-align: left;"><font size="2"><span>在</span><span>windows</span><span>上安装</span><span>vnc view</span><span>，然后输入</span><span>xxx.xxx.xxx.xxx:2</span><span>，连接登录，输入密码即可。</span><span> </span></font></p>
<font size="2"><span> </span><span style="font-size: 10.5pt;">备注：如果从</span><span style="font-size: 10.5pt;">vnc view</span><span style="font-size: 10.5pt;">登录时，提示</span><span style="font-size: 10.5pt;">connection refused(10061)</span><span style="font-size: 10.5pt;">，则是因为</span><span style="font-size: 10.5pt;">linux</span><span style="font-size: 10.5pt;">防火墙的问题，登录rel5</span><span style="font-size: 10.5pt;">系统，选择<font color="#0000ff">系统</font></span><span style="font-size: 10.5pt;">--&gt;<font color="#0000ff">首选项</font>--&gt;<font color="#0000ff">远程桌面</font></span><span style="font-size: 10.5pt;">，勾选<font color="#0000ff">共享</font></span><span style="font-size: 10.5pt;">中的两项，<font color="#0000ff">安全</font>中</span><span style="font-size: 10.5pt;">两项不勾，点击关闭，然后再重新用</span><span style="font-size: 10.5pt;">vnc view</span><span style="font-size: 10.5pt;">登录即可。</span></font> <a href="http://hi.baidu.com/xmhhf/blog/item/26aae08fa1b3d3e7f11f3601.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/26aae08fa1b3d3e7f11f3601.html#comment">查看评论</a>]]></description>
        <pubDate>2009-07-09  16:37</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/26aae08fa1b3d3e7f11f3601.html</guid>
</item>

<item>
        <title><![CDATA[rel5下挂载ntfs分区]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/ae9800e72dc56827b93820f6.html]]></link>
        <description><![CDATA[
		
		<font class="f14"><font color="#000000">默认RHEL５不支持NTFS文件格式，　所以不能在RHEL5的系统中取一些存放与NTFS分区下的文件．
<div>现在有个简单的做法可以可以实现RHEL5对NTFS分区的支持</div>
<div> </div>
<div>一　先确认你的内核版本</div>
<div>
<table align="center" style="border: 1px solid rgb(153, 153, 153); font-size: 12px; width: 98.19%; height: 56px;">
    <tbody>
        <tr>
            <td>[root@localhost ~]# uname -r -p<span style="display: none;">3KaLinux联盟</span><br>
            2.6.18-8.el5xen athlon<span style="display: none;">3KaLinux联盟</span></td>
        </tr>
    </tbody>
</table>
</div>
<p>二 去　<a href="http://www.linux-ntfs.org/">http://www.linux-ntfs.org</a>下在内核对应的RPM包</p>
<p>http://www.linux-ntfs.org/doku.php?id=redhat:rhel5</p>
<br>
<p>我的内核是2.6.18-8.el5xen 所以我下载2.6.18-8.el5　<a href="http://prdownloads.sourceforge.net/linux-ntfs/kernel-module-ntfs-2.6.18-8.el5xen-2.1.27-0.rr.10.11.i686.rpm"><font color="#0000ff">i686-xen</font></a></p>
<p>
<table align="center" style="border: 1px solid rgb(153, 153, 153); font-size: 12px; width: 98.19%; height: 56px;">
    <tbody>
        <tr>
            <td>kernel-module-ntfs-2.6.18-8.el5xen-2.1.27-0.rr.10.11.i686.rpm</td>
        </tr>
    </tbody>
</table>
</p>
<p> </p>
<p>三　安装Rpm</p>
<p>
<table align="center" style="border: 1px solid rgb(153, 153, 153); font-size: 12px; width: 96.8%; height: 120px;">
    <tbody>
        <tr>
            <td>[root@localhost Download]# rpm -ivh kernel-module-ntfs-2.6.18-8.el5xen-2.1.27-0.rr.10.11.i686.rpm<span style="display: none;">3KaLinux联盟</span><br>
            Preparing...&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    ########################################### [100%]<span style="display: none;">3KaLinux联盟</span><br>
            &nbsp;&nbsp;    1:kernel-module-ntfs-2.6.########################################### [100%]<span style="display: none;">3KaLinux联盟</span></td>
        </tr>
    </tbody>
</table>
</p>
<p>四　将ntfs模块加载到内核中</p>
<p>
<table align="center" style="border: 1px solid rgb(153, 153, 153); font-size: 12px; width: 96.13%; height: 40px;">
    <tbody>
        <tr>
            <td>[root@localhost Download]# /sbin/modprobe ntfs<span style="display: none;">3KaLinux联盟</span></td>
        </tr>
    </tbody>
</table>
</p>
<p>查看ntfs是否被正确的加载</p>
<p>
<table align="center" style="border: 1px solid rgb(153, 153, 153); font-size: 12px; width: 95.78%; height: 72px;">
    <tbody>
        <tr>
            <td>[root@localhost Download]# dmesg | grep NTFS<span style="display: none;">3KaLinux联盟</span><br>
            NTFS driver 2.1.27 [Flags: R/W MODULE].<span style="display: none;">3KaLinux联盟</span><br>
            NTFS volume version 3.1.<span style="display: none;">3KaLinux联盟</span></td>
        </tr>
    </tbody>
</table>
</p>
<p>如果出现下面的信息应该是被正确的加载了．</p>
<p>五　Mount</p>
<p>我们先查看下原来硬盘的分区</p>
<p>
<table align="center" style="border: 1px solid rgb(153, 153, 153); font-size: 12px; width: 95.1%; height: 24px;">
    <tbody>
        <tr>
            <td>
            <p>[root@localhost Download]# fdisk -l</p>
            <p>Disk /dev/hda: 251.0 GB, 251000193024 bytes<span style="display: none;">3KaLinux联盟</span><br>
            255 heads, 63 sectors/track, 30515 cylinders<span style="display: none;">3KaLinux联盟</span><br>
            Units = cylinders of 16065 * 512 = 8225280 bytes</p>
            <p>&nbsp;&nbsp;    Device Boot&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    Start&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    End&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    Blocks&nbsp;&nbsp;    Id  System<span style="display: none;">3KaLinux联盟</span><br>
            /dev/hda1&nbsp;&nbsp;    *&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    2550&nbsp;&nbsp;&nbsp;    20482843+&nbsp;&nbsp;    7  HPFS/NTFS<span style="display: none;">3KaLinux联盟</span><br>
            /dev/hda2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    2551&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    30514&nbsp;&nbsp;    224620830&nbsp;&nbsp;&nbsp;    f  W95 Ext'd (LBA)<span style="display: none;">3KaLinux联盟</span><br>
            /dev/hda5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    2551&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    7649&nbsp;&nbsp;&nbsp;    40957686&nbsp;&nbsp;&nbsp;    7  HPFS/NTFS<span style="display: none;">3KaLinux联盟</span><br>
            /dev/hda6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    7650&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    20397&nbsp;&nbsp;    102398278+&nbsp;&nbsp;    7  HPFS/NTFS<span style="display: none;">3KaLinux联盟</span><br>
            /dev/hda7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    20398&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    20410&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    104391&nbsp;&nbsp;    83  Linux<span style="display: none;">3KaLinux联盟</span><br>
            /dev/hda8&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    20411&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    30514&nbsp;&nbsp;&nbsp;    81160348+  8e  Linux LVM<span style="display: none;">3KaLinux联盟</span></p>
            </td>
        </tr>
    </tbody>
</table>
</p>
<p>Mount windwos下的/dev/hda6分区</p>
<p>
<table align="center" style="border: 1px solid rgb(153, 153, 153); font-size: 12px; width: 96.13%; height: 24px;">
    <tbody>
        <tr>
            <td>[root@localhost Download]# mkdir /media/windows<span style="display: none;">3KaLinux联盟</span><br>
            [root@localhost Download]# mount -t ntfs /dev/hda6 /media/windows/<span style="display: none;">3KaLinux联盟</span></td>
        </tr>
    </tbody>
</table>
</p>
<p>查看是否被mount上来</p>
<p>
<table align="center" style="border: 1px solid rgb(153, 153, 153); font-size: 12px; width: 95.79%; height: 24px;">
    <tbody>
        <tr>
            <td>[root@localhost Download]# df -h<span style="display: none;">3KaLinux联盟</span><br>
            Filesystem&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    Size  Used Avail Use% Mounted on<span style="display: none;">3KaLinux联盟</span><br>
            /dev/mapper/VolGroup00-LogVol00<span style="display: none;">3KaLinux联盟</span><br>
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    74G&nbsp;&nbsp;    20G&nbsp;&nbsp;    50G  29% /<span style="display: none;">3KaLinux联盟</span><br>
            /dev/hda7&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    99M&nbsp;&nbsp;    12M&nbsp;&nbsp;    82M  13% /boot<span style="display: none;">3KaLinux联盟</span><br>
            tmpfs&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    710M&nbsp;&nbsp;&nbsp;&nbsp;    0  710M&nbsp;&nbsp;    0% /dev/shm<span style="display: none;">3KaLinux联盟</span><br>
            /dev/hda6&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    98G&nbsp;&nbsp;    29G&nbsp;&nbsp;    70G  29% /media/windows<span style="display: none;">3KaLinux联盟</span></td>
        </tr>
    </tbody>
</table>
</p>
<p>这样可以在RHEL5下使用NTFS分区格式下的文件了．</p>
<p>卸载： umount /mnt/f</p>
</font></font> <a href="http://hi.baidu.com/xmhhf/blog/item/ae9800e72dc56827b93820f6.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%BC%C6%CB%E3%BB%FA%CD%F8%C2%E7">计算机网络</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/ae9800e72dc56827b93820f6.html#comment">查看评论</a>]]></description>
        <pubDate>2009-07-09  11:47</pubDate>
        <category><![CDATA[计算机网络]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/ae9800e72dc56827b93820f6.html</guid>
</item>

<item>
        <title><![CDATA[如何选购人造石台面]]></title>
        <link><![CDATA[http://hi.baidu.com/xmhhf/blog/item/586455e918ee1d36b90e2d09.html]]></link>
        <description><![CDATA[
		
		<font size="2">厨柜台面有:大理石、防火板、不锈钢板、人造石、实木等；我们在这里着重讲的是人造石台面 ：</font><font face="Times New Roman" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color="#f73809"><br>
&nbsp;&nbsp;&nbsp;&nbsp;<font color="#000000"> </font></font><font color="#000000"><strong>1</strong></font></font><font color="#000000" size="2"><strong>：通俗一点，我们把人造石台面分三大类</strong> </font>
<div><font color="#000000" size="2">&nbsp;&nbsp;&nbsp;     （1）亚克克力类</font></div>
<div><font color="#000000" size="2">&nbsp;&nbsp;&nbsp;&nbsp;    （2）铝粉类</font></div>
<div><font color="#000000" size="2">&nbsp;&nbsp;&nbsp;     （3）钙粉类<font face="Times New Roman"> </font></font><font face="Times New Roman" color="#000000" size="2">&nbsp;&nbsp;&nbsp;&nbsp;     </font></div>
<div><font color="#000000" size="2"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;   (1)亚</font>克力类</font></div>
<div><font color="#000000" size="2">&nbsp;&nbsp;&nbsp;     （纯亚克力、复合亚克力）</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;     在厨柜市场上,亚克力类的人造石台面大多是属于复合压克力型的。</font></div>
<div> </div>
<div> </div>
<div><font size="2"> </font><font size="2">　　<strong>成份：</strong></font></div>
<div><font size="2"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    优质树脂＋氢氧化铝＋２２％亚克力＋矿物颜料颗料</strong> </font><font size="2"><strong>&nbsp;&nbsp;&nbsp;     <u>优点：</u></strong> </font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    无毒无味、加工性好，不易断裂，采用高档或进口颜料，目视颜色清纯、自然、有质感，大型进口设备流水线生产，品质稳定，批次色差较小，材质颗粒细腻，手摸有丝质感，耐紫外线性能好，长期使用不褪色;</font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     提示:在昆明厨柜市场上,1000元以下的地柜(含厨柜),大多不可能是复合亚克力台面。许多JS是用铝粉人造石或钙粉人造石假冒的。许多米琦丽复合亚克力人造石是用树脂板（铝粉人造石）或米琦丽特价板假冒的</font></div>
<div> </div>
<div> </div>
<div><font size="2"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;     <font color="#f70909">（2）</font></font><font color="#f70909">铝粉类</font><font face="Times New Roman">&nbsp;&nbsp;     </font></font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     在昆明厨柜市场上,真的铝粉类的人造石台面还不多.主要有这几个品牌:生美石、华讯耐美石、蒙特利米兰石</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;    昆明家居主推品牌：生美石</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;<strong>成份:</strong></font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>优质树脂＋氢氧化铝＋矿物颜料颗料</strong> </font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;<strong> 优点：</strong></font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     无毒无味、加工性好，不易断裂，采用高档或进口颜料，目视颜色清纯、自然、有质感，大型进口设备流水线生产，品质稳定，批次色差较小，材质颗粒细腻，手摸有丝质感，耐紫外线性能好，长期使用不褪色。</font></div>
<div> </div>
<div> </div>
<div> </div>
<div> </div>
<div> </div>
<div><font size="2"><font color="#f70909"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;     （3）钙</font>粉类</font><font face="Times New Roman">&nbsp;&nbsp;</font></font></div>
<div><font face="Times New Roman" size="2"><font face="宋体">&nbsp;&nbsp;&nbsp;     在昆明厨柜市场上,大量销售的人造石台面，应是钙粉类（石粉类）的人造石台面。</font></font></div>
<div><font face="Times New Roman" size="2"><font face="宋体">&nbsp;&nbsp;&nbsp;     较好一点的，主要有这几个品牌:生美凯撒（山姆杜邦）、蒙特利丽家石、金石万家、欧雅典格兰斯、奥维石等</font></font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     大量使用的，主要有这几个品牌:华讯生活家（家丽石等）、钰茗石、富士石等</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;<strong>成份：</strong></font></div>
<div><font size="2"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     优质树脂（工业树脂）+</strong><strong>碳酸钙</strong><strong>＋矿物颜料颗料</strong> <font face="Times New Roman"> </font></font></div>
<div><font face="Times New Roman" size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong> 特点：</strong></font></div>
<div> </div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     用低档工业树脂和碳酸钙为原料，有毒有异味，加工性能差、容易断裂变型；&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     </font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     采用低档颜料，目视颜色混浊发暗、表面有塑料胶质感，小型设备或土设备为主，品质不稳定，批次色差大，材质颗粒较大，手摸有粗糙感，耐光性不好，一般一两年就开始褪色，一般依靠小店销售。</font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;</font></div>
<div> </div>
<div><font size="2"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong><font color="#0808d6"> 2：</font></strong></font><strong><font color="#0808d6">人造石台面各项标准</font></strong></font></div>
<div> </div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;    （1）：标准的人造石毛板厚度：<font face="Times New Roman">12.5</font>毫米；规格：2440X760</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    铝粉类或亚克力型的人造石毛板厚度12.5毫米；</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    钙粉类（石粉类）人造石毛板的厚度只有:10-11毫米(厚度减小了，价格更低了）；</font></div>
<div> </div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;    （2）：相关产品证书</font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    商标注册证书</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;     人造石放射性、无无毒生检测报告</font></div>
<div><font size="2">　&nbsp;&nbsp;     国家建筑材料没试中心检验报告</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;     钙粉类的人造石台面,可能没有以上这些检测检验报告。能在市场上销售，大多是冒用铝粉类的人造石的检测检验报告；&nbsp;&nbsp;&nbsp;&nbsp;     </font></div>
<div><font size="2"> </font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;     <font color="#0707c6">（3）</font><font color="#0707c6">关于人造石台面</font></font></div>
<div> </div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;    &ldquo;小康不小康，关键在两房&rdquo;；&ldquo;厨房革命&rdquo;概念的提出，为整体厨房赋予了重要意义。可以说，整体厨房进入普通家庭是生活现代化的一个重要标志。当前我国厨 房内的各个设备还没有一个统一的标准，同时由于烹饪特点，对厨房设备有特殊的要求，作为料理的重要部件操作台也须具备更高的要求。</font></div>
<div><font size="2"> 由天然矿石粉<font face="Times New Roman">+</font>色母<font face="Times New Roman">+</font>丙烯酸树脂胶，经高温高压处理而成，具有质地均匀，无毛细孔，且具备一定的耐磨、耐酸、耐高温，抗冲、抗压、抗折性能好，尤其是具有无缝拼接及加工性能好等特点而广泛应用于各种台面的实体面材，俗称人造石。</font></div>
<div><font size="2"> 中华人民共和国国家经济贸易委员会<font face="Times New Roman">2002</font>年<font face="Times New Roman">12</font>月<font face="Times New Roman">9</font>日<font face="Times New Roman">&nbsp;&nbsp;</font>发布的<font face="Times New Roman">JC908</font>&mdash;<font face="Times New Roman">2002</font>建材行业标准《实体面材》规定：<strong><font color="#000000">板材的基体树脂分为两大类</font></strong>：</font></div>
<div><font size="2"><font face="Times New Roman"> PMMA</font>类：以聚甲基丙烯酸甲脂为基体树脂，俗称<strong>亚克力</strong>；其填充料为特种氢氧化铝（<font face="Times New Roman">AL </font>（<font face="Times New Roman">OH</font>）<font face="Times New Roman">3</font>）。</font></div>
<div><font size="2"><font face="Times New Roman"> UPR</font>类：以不饱和聚酯树脂为基体的树脂，俗称<strong>树脂板</strong>，其填充料为特种氢氧化铝（<font face="Times New Roman">AL </font>（<font face="Times New Roman">OH</font>）<font face="Times New Roman">3</font>）。</font></div>
<div> </div>
<div><font size="2">  我们把<strong>树脂板分为二类：</strong></font></div>
<div><font size="2"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     铝粉型的</strong>（氢氧化铝）</font></div>
<div><font size="2"><strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     钙粉型的（碳酸钙）</strong></font></div>
<div> </div>
<div><font color="#ff4e22" size="2"><strong><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;     （1）</font>人造石的原料组合</strong></font></div>
<div> </div>
<div><font size="2"><strong>&nbsp;&nbsp;&nbsp;     </strong>主要原料为不饱和树脂、氢氧化铝，天然矿石及点子料颗粒、天然颜料、珠光粉、化</font></div>
<div><font size="2">剂等。</font></div>
<div align="left"><font size="2">&nbsp;&nbsp;&nbsp;     <strong>不饱和树脂</strong>：价格差异在<font face="Times New Roman">5000</font>多至<font face="Times New Roman">15000</font>远<font face="Times New Roman">/</font>吨不等；</font></div>
<div align="left"><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;    不饱和树脂在人造石中又占有<font face="Times New Roman">33</font>&mdash;<font face="Times New Roman">40%</font>的比例，因此原料价格的差异导致了产品质量与价格的不同表现，如某些劣质人造石台面易出现断裂、变形等。</font></div>
<div align="left"> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;<strong>氢氧化铝</strong>：一般优质的氢氧化铝的价格在<font face="Times New Roman">3500</font>元<font face="Times New Roman">/</font>吨，质差的在<font face="Times New Roman">2000</font>元以下。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;    更可怕的是某些厂家用石粉（碳酸钙<font face="Times New Roman">200</font>多元<font face="Times New Roman">/</font>吨）作为填充料，这样就构成了市场上人造台面价格相差几百元或上千元的现状。当消费者用到这种人造石，发生断裂、变色、渗透、有放射、有毒等原因更在于此。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     一般具有<font face="Times New Roman">ISO</font>系 列国际质量体系认证及相关检验报告，无毒无味、加工性好、不易断裂，采用高档或进口原料，目视颜色清纯、自然、有质感，大型进口设备流水线生产，品质稳 定，批次色差较小，材质颗粒细腻，手摸有丝绸感，耐紫外线性能好，长期使用不褪色，有规范的市场销售网络，服务有保证，产品有防伪标志、保养手册和产品质 保证，<font face="Times New Roman">10</font>年至<font face="Times New Roman">15</font>年质量保证承诺；</font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;<font color="#f8532a"><strong> （2）：</strong></font><font color="#f8532a"><strong>当前人造石市场主要有三大产品</strong></font></font></div>
<div> </div>
<div><font size="2"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     <strong>1</strong></font><strong>：树脂板（<font face="Times New Roman">UPR</font>）</strong></font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     此类产品市场上比较常见，产品质量良不齐，价格相差很大。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     优质的树脂板是由优质树脂、氢氧化铝，天然矿石颗粒、天然颜料、珠光粉、固化剂很和后聚合而成，材料配比为优质树脂<font face="Times New Roman">33%</font>、氢氧化铝及颗粒<font face="Times New Roman">65%</font>、其他材料占<font face="Times New Roman">2%</font>左右（视不同颜色而定）。</font></div>
<div><font size="2">其特点能满足家庭厨房台面品质的需要，具有质量稳定、优质环保、物美价廉的特点，不加入任何低档工业树脂和碳酸钙粉成分。该产品经久耐用、历久常新，是一般顾客手选的产品；。</font></div>
<div><font size="2"><font face="Times New Roman"><font face="宋体"> </font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     <strong>2</strong></font><strong>、复合亚克力板（<font face="Times New Roman">PMMA</font>）</strong></font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     优质树脂板的替代品。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     不饱和树脂优质树脂中添加<font face="Times New Roman">20%</font>左右的亚克力（<font face="Times New Roman">MMA</font>）。氢氧化铝及颗粒<font face="Times New Roman">65%</font>、其他材料占<font face="Times New Roman">2%</font>左右（视不同颜色而定）。它各项性能优异、价格适中。其性能胜于树脂板，性价比均能满足家庭装饰的需要。</font></div>
<div><font size="2"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<strong>  3</strong></font><strong>、纯亚克力板（<font face="Times New Roman">MMA</font>）：</strong></font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;    主要材料是有甲基丙烯酸甲脂（<font face="Times New Roman">MMA</font>）、氢氧化铝<font face="Times New Roman">65%</font>、其他材料占<font face="Times New Roman">2%</font>左右（视不同颜色而定），整个板材中不含树脂仅有甲基丙烯酸甲脂。该产品多彩性、内外品质的一致性、环保性及其成品的整体性溶于一体，同时，具有硬度高、强度好、不渗透、不易开裂、颜色稳定并且能做到室外装饰；是做厨房台面的最佳选择。零售价格在<font face="Times New Roman">1400</font>元左右（国产）。</font></div>
<div> </div>
<div><font color="#ee1111" size="2"><font face="Times New Roman">（3）：</font>劣质低价人造石现象</font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     作坊式的厂家<font face="Times New Roman">  </font></font></div>
<div><font size="2"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     </font>由 于不饱和树脂人造石，具有生产工艺简单、生产周期短、成本低廉、投资小等特点，所以市场上各种品牌的人造石多如牛毛，有的投资十几万就办一个人造石工厂， 有的几乎没有什么设备也能办一个人造石厂，既无良好的设备，也没有实验仪器，检验手段，因此很难认真执行工艺，生产出的产品质量可想而知。</font></div>
<div><font size="2">用低档工业树脂和碳酸钙为原料，有毒有异味、加工性差、容易断裂变形，采用低档颜料，目视颜色混浊发暗、表面有塑料胶质感，小型设备或土设备为主，品质不稳定，批次色差大，材质颗粒大，手摸有粗糙感，耐光性不好，一般一两年就开始褪色，一般靠小店销售；</font></div>
<div> </div>
<div><font size="2"><strong><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     1</font>、碳酸钙的人造石：</strong></font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    是低档不饱和树脂<font face="Times New Roman">+50%</font>左右的碳酸钙粉<font face="Times New Roman">+50%</font>的氢氧化铝混合后聚合而成的，碳酸钙粉亦能与工业树脂混合（碳酸钙的成本是<font face="Times New Roman">200</font>元<font face="Times New Roman">/</font>吨、氢氧化铝的成本是<font face="Times New Roman">3500</font>元<font face="Times New Roman">/</font>吨，二者相差<font face="Times New Roman">18</font>倍）加入部分碳酸钙的台面直观效果与氢氧化铝粉无太大的差别，外行人一般看不出。但内在本质与形成质量相差甚远；板材抗拉、抗弯强度降低，容易发生断裂，而且，板材极易渗透。其售价在<font face="Times New Roman">300</font>&mdash;<font face="Times New Roman">450</font>元<font face="Times New Roman">/</font>米左右。</font></div>
<div> </div>
<div><font size="2"><strong><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     2</font>、劣质人造石：</strong></font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;     是低档工业树脂和碳酸钙粉混合后聚合成形（低档工业树脂的价格是<font face="Times New Roman">5000</font>元<font face="Times New Roman">/</font>吨、优质工业树脂的价格是<font face="Times New Roman">15000</font>元<font face="Times New Roman">/</font>吨）。生产厂家为了减低成本把碳酸钙直接代替氢氧化铝粉。这种板材抗拉、抗弯强度低、容易变色，极易渗透变色，使用不多久的台面会变脏、变花而清洗不掉长时间沾水就变色，厚度还不够，行业标准为<chmetcnv wst="on" tcsc="0" numbertype="1" negative="False" hasspace="False" sourcevalue="12.5" unitname="mm"></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><font face="Times New Roman">12.5mm</font><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv>，其为<chmetcnv wst="on" tcsc="0" numbertype="1" negative="False" hasspace="False" sourcevalue="11" unitname="mm"></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><font face="Times New Roman">11-10mm</font><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv><chmetcnv></chmetcnv>，一般消费者不太会注意的。还会发挥苯乙烯和有毒物质;</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     昆明家居不采用！</font></div>
<div> </div>
<div><font size="2"><strong><font color="#0831d6"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     4 </font>人造石台面及加工质量的识别</font></strong></font></div>
<div> </div>
<div><font size="2"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;      </font>由 于采用原材料不同性能存在着较大的差异，很难凭外观简单的判断，作为一般普通消费者无法识别。一些橱柜厂家往往在展厅出样是优质人造石，卖至顾客家里的台 面就是劣质的。因此，推荐消费者在选购人造石台面时，根据自身的承受能力来选择人造石台面，不能只图一时便宜而选用劣质材料加工而成的人造石台面，否则后 患无穷。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;     简单易操作的识别优劣人造石方法</font></div>
<p>
<table cellspacing="0" cellpadding="0" border="1" width="100%">
    <tbody>
        <tr>
            <td width="11%" valign="top">
            <div><font size="2">性能</font></div>
            </td>
            <td width="38%" valign="top">
            <div><font size="2">优质产品</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">劣质产品</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">简易鉴别方法</font></div>
            </td>
        </tr>
        <tr>
            <td width="11%" valign="top">
            <div><font size="2">外观</font></div>
            </td>
            <td width="38%" valign="top">
            <div><font size="2">颗粒分布均匀，无毛细孔</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">颗粒分布不均匀，有毛细孔</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">在充足的光线下，以<font face="Times New Roman">45</font>度角观察</font></div>
            </td>
        </tr>
        <tr>
            <td width="11%" valign="top">
            <div><font size="2">色泽</font></div>
            </td>
            <td width="38%" valign="top">
            <div><font size="2">晶莹、纯正、细腻</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">因掺有碳酸钙或使用劣质的含重金属，导致灰暗、不细腻、光亮不自然，使用时会对人体产生危害。</font></div>
            <div> </div>
            <div> </div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">充足的光线下，用肉眼观察</font></div>
            </td>
        </tr>
        <tr>
            <td width="11%" valign="top">
            <div><font size="2">硬度或</font></div>
            <div><font size="2">耐磨性</font></div>
            </td>
            <td width="38%" valign="top">
            <div><font size="2">硬度大于硬质塑料</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">硬度达不到标准</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">尖锐的硬质塑料摩擦表面，是否有痕迹</font></div>
            </td>
        </tr>
        <tr>
            <td width="11%" valign="top">
            <div><font size="2">尺寸稳</font></div>
            <div><font size="2">定性</font></div>
            </td>
            <td width="38%" valign="top">
            <div><font size="2">常温下不自然变形或收缩</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">会变形</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">有成品台面用一上段时间才能察觉，此种方法不要试</font></div>
            </td>
        </tr>
        <tr>
            <td width="11%" valign="top">
            <div><font size="2">抗沸水</font></div>
            <div><font size="2">能力</font></div>
            </td>
            <td width="38%" valign="top">
            <div><font size="2">与沸水接触不褪色，不裂</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">褪色、甚至开裂</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">沸水泼在表面，数分钟后观察</font></div>
            </td>
        </tr>
        <tr>
            <td width="11%" valign="top">
            <div><font size="2">耐腐蚀</font></div>
            <div><font size="2">性</font></div>
            </td>
            <td width="38%" valign="top">
            <div><font size="2">不受日用化学品食用醋侵蚀</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">不耐腐蚀</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">食醋滴在台面表面，<font face="Times New Roman">24</font>小时后观察其变化</font></div>
            </td>
        </tr>
        <tr>
            <td width="11%" valign="top">
            <div><font size="2">耐脏性</font></div>
            </td>
            <td width="38%" valign="top">
            <div><font size="2">有常见的污迹容易出去</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">污迹渗透到台面里面，不易除去</font></div>
            </td>
            <td width="25%" valign="top">
            <div><font size="2">查看台面能否洗去口红、番茄酱、酱油的污迹</font></div>
            </td>
        </tr>
    </tbody>
</table>
</p>
<div><font size="2"><strong><font color="#072dc6"><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     5:</font>对加工商的选择也非常重要</font></strong></font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    因为厂家出来都只是板材的半成品，必须经过加工、安装和运输等工序才能成型送到客户家中方可使用。在后期加工中，有实力的橱柜厂家都有自己生产加工的台面 车间，加工的台面质量是有保障的；而大量个体游击队式的加工厂无固定场所，无生产工艺标准和质量控制保证，通过几个人时聚时分组织生产，造成了加工质量无 法保证；原材料无法保证；更不谈以后的售后服务。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;    在运输中，规范的出轨厂家有严格的装车、搬运、放置、运输程序。因为车辆在前进颠簸中，各种造型加工好的人造石台面如不加以规范的放置会造成暗伤裂纹的隐 患，同样增加了以后断裂的机率。而且即使是同样的人造石品牌，由于厂家的加工工艺不同，也直接影响到其的零售价格，加工工艺在零售价格上要相差<font face="Times New Roman">15%</font>左右。作坊式的加工费用在<font face="Times New Roman">30</font>元<font face="Times New Roman">/</font>米左右；而标准的加工工艺在<font face="Times New Roman">85</font>元<font face="Times New Roman">/</font>米左右。</font></div>
<div> </div>
<div><font color="#2907b5" size="2"><strong><font face="Times New Roman">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;     6、</font>对人造石台面具体加工造型方面也应注意</strong></font></div>
<div> </div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;     靠墙间隙：随着气候的变化，人造石会发生热胀冷缩的变化，因此，安装时在靠墙面都留有<font face="Times New Roman">3</font>&mdash;<font face="Times New Roman">5mm</font>的间隙，这属正常范围；间隙小了，台面受热膨胀时会变形翘起或断裂，间隙大了不美观。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     开孔处是否光滑：人造石台面的开孔、转角部位应以圆弧光滑过渡，没有锯齿印，没有死角，以分散内应力，否则，在有锯齿印和转角处容易开裂。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;&nbsp;    连接的部分：规范的厂家在加工人造石台面的时候，无论是后挡水的连接，拐角的连接，包管道的连接都有半径<font face="Times New Roman">R</font>的处理（四分之一圆弧）优点是美观，减少断裂系数。而偷工减料的厂家在靠墙部分的后挡水往往是直直的竖在台面上。</font></div>
<div><font size="2">&nbsp;&nbsp;&nbsp;     总之，人造石产品以其众多的优点正被人们所接受，但仍存在厂商经营不规范的现象，相信随着市场的成熟，行业标准的实施及监管部门加大力度，一定会促进实体面材行业健康、有序发展。</font></div> <a href="http://hi.baidu.com/xmhhf/blog/item/586455e918ee1d36b90e2d09.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/xmhhf/blog/category/%D7%B0%D0%DE">装修</a>&nbsp;<a href="http://hi.baidu.com/xmhhf/blog/item/586455e918ee1d36b90e2d09.html#comment">查看评论</a>]]></description>
        <pubDate>2009-07-05  18:34</pubDate>
        <category><![CDATA[装修]]></category>
        <author><![CDATA[xmhhf]]></author>
		<guid>http://hi.baidu.com/xmhhf/blog/item/586455e918ee1d36b90e2d09.html</guid>
</item>


</channel>
</rss>