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

<channel>
	<title>微视技术</title>
	<atom:link href="http://www.viisee.net/feed" rel="self" type="application/rss+xml" />
	<link>http://www.viisee.net</link>
	<description>科学为生活服务</description>
	<lastBuildDate>Sun, 15 Apr 2012 04:56:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Mac OS下用PySide代替PyQt</title>
		<link>http://www.viisee.net/archives/1246</link>
		<comments>http://www.viisee.net/archives/1246#comments</comments>
		<pubDate>Sun, 15 Apr 2012 04:54:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[编程学习]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[pyqt]]></category>
		<category><![CDATA[pyside]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.viisee.net/?p=1246</guid>
		<description><![CDATA[<p>最近在公司的mbp上安装了Lion系统，为了能进行python的GUI开发，进行了如下操作： <p>1.下载Qt库（nokia那个页面打不开了，进入<a href="http://qt-project.org/downloads">http://qt-project.org/downloads</a>下载 不用下那个含sdk的1.3G文件，下后面的178M的library即可 qt-mac-opensource-4.8.0.dmg) <p>安装一切正常 <p>2.下载python-3.2.2-macosx10.6.dmg， <p>安装一切正常 <p>3.下载PyQt4.8的源码包（官网上只有源码包，没有适合mac os的mpkg的安装包）PyQt-mac-gpl-4.9.1.tar.gz，解压后，进入目录&#160; python configure.py，提示要什么 sip module，得，进入下一步 <p>4.下载sip-4.13.2.tar.gz，解压后进入目录，python configure.py&#160; 发现提示python2.7，但是我记得装的3.2啊，于是python3 configure.py，提示成功了，也有python3.2的提示。再make，提示“make command not found” <p>5.网上说必须安装Xcode才有GCC工具，但是我的<b>XCode4.3.2是直接从开发者中心用迅雷下载的dmg文件（不是通过App Store）</b>，这个文件双击运行后，会挂载一个Volumns/Xcode路径，双击里面的xcode.app就会启动Xcode了，不会自动“安装到系统”（好像只是在系统里注册了一下信息，不会复制任何数据，就能直接运行了），我也找不到类似windows的“install.exe”文件。 <p>因此，gcc（Xcode）看来是没法安装了 <p>6.google了一下，在Volumns/Xcode/Xcode.app/Contents/Developer/user/bin（用显示包内容的方式可以进去）下找到了这个make <p>于是手动指定路径进行make操作，这次没提示command not found了，但提示： <p>make[1] cc No Such file or directory 等错误 <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image91.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(9)" border="0" alt="Image(9)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image9_thumb1.png" width="569" height="93"></a> <p>看来还是gcc的问题。 <p><b>没办法了：用PySide来代替PyQt！</b> <p><b><br /></b> <p>1.下载pyside-1.1.0-qt48-py27apple.pkg（还有个qt47的，不知道为什么体积还大一些！有些担心这个48版本会不会少一些东西⋯⋯） <p>2.是的，没有configure、make这些步骤，也不会提示你安装什么sip、找不到make等等，双击就安装完毕了，很简单 <p>3.python代码的一些小修改： <p>(1)from PyQt import * 改成&#160; from PySide import * <p>(2)import sip这些都注释掉 <p>(3)QtCore.pyqtSlot()都修改成QtCore.Slot() <p>(4)有些通过qt desiner创建的界面文件（.ui-&#62;.py）中某些方法不支持了（目前搞不清楚是python版本的问题，还是pyqt和pyside的区别问题），按运行.py程序文件时的错误提示 进行注释或修改即可 <p>补充：已解决GCC问题 <p>见另外一篇《dmg格式的XCode4.3挂载到/Volumes，不安装文件和GCC工具到系统的解决办法》 <p>安装了命令行工具后，再试试之前无法通过的SIP make操作，以及PyQt的configure、make操作，成功！]]></description>
			<content:encoded><![CDATA[<p>最近在公司的mbp上安装了Lion系统，为了能进行python的GUI开发，进行了如下操作：
<p>1.下载Qt库（nokia那个页面打不开了，进入<a href="http://qt-project.org/downloads">http://qt-project.org/downloads</a>下载 不用下那个含sdk的1.3G文件，下后面的178M的library即可 qt-mac-opensource-4.8.0.dmg)
<p>安装一切正常
<p>2.下载python-3.2.2-macosx10.6.dmg，
<p>安装一切正常
<p>3.下载PyQt4.8的源码包（官网上只有源码包，没有适合mac os的mpkg的安装包）PyQt-mac-gpl-4.9.1.tar.gz，解压后，进入目录&nbsp; python configure.py，提示要什么 sip module，得，进入下一步
<p>4.下载sip-4.13.2.tar.gz，解压后进入目录，python configure.py&nbsp; 发现提示python2.7，但是我记得装的3.2啊，于是python3 configure.py，提示成功了，也有python3.2的提示。再make，提示“make command not found”
<p>5.网上说必须安装Xcode才有GCC工具，但是我的<b>XCode4.3.2是直接从开发者中心用迅雷下载的dmg文件（不是通过App Store）</b>，这个文件双击运行后，会挂载一个Volumns/Xcode路径，双击里面的xcode.app就会启动Xcode了，不会自动“安装到系统”（好像只是在系统里注册了一下信息，不会复制任何数据，就能直接运行了），我也找不到类似windows的“install.exe”文件。
<p>因此，gcc（Xcode）看来是没法安装了
<p>6.google了一下，在Volumns/Xcode/Xcode.app/Contents/Developer/user/bin（用显示包内容的方式可以进去）下找到了这个make
<p>于是手动指定路径进行make操作，这次没提示command not found了，但提示：
<p>make[1] cc No Such file or directory 等错误
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image91.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(9)" border="0" alt="Image(9)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image9_thumb1.png" width="569" height="93"></a>
<p>看来还是gcc的问题。
<p><b>没办法了：用PySide来代替PyQt！</b>
<p><b><br /></b>
<p>1.下载pyside-1.1.0-qt48-py27apple.pkg（还有个qt47的，不知道为什么体积还大一些！有些担心这个48版本会不会少一些东西⋯⋯）
<p>2.是的，没有configure、make这些步骤，也不会提示你安装什么sip、找不到make等等，双击就安装完毕了，很简单
<p>3.python代码的一些小修改：
<p>(1)from PyQt import * 改成&nbsp; from PySide import *
<p>(2)import sip这些都注释掉
<p>(3)QtCore.pyqtSlot()都修改成QtCore.Slot()
<p>(4)有些通过qt desiner创建的界面文件（.ui-&gt;.py）中某些方法不支持了（目前搞不清楚是python版本的问题，还是pyqt和pyside的区别问题），按运行.py程序文件时的错误提示 进行注释或修改即可
<p>补充：已解决GCC问题
<p>见另外一篇《dmg格式的XCode4.3挂载到/Volumes，不安装文件和GCC工具到系统的解决办法》
<p>安装了命令行工具后，再试试之前无法通过的SIP make操作，以及PyQt的configure、make操作，成功！</p>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1246/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mac os(lion)下安装eclipse+pydev开发环境配置,解决animation start has encountered a problem的问题</title>
		<link>http://www.viisee.net/archives/1242</link>
		<comments>http://www.viisee.net/archives/1242#comments</comments>
		<pubDate>Sun, 15 Apr 2012 04:52:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[软件使用]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[eclipse]]></category>
		<category><![CDATA[encountered]]></category>
		<category><![CDATA[ma]]></category>
		<category><![CDATA[pydev]]></category>
		<category><![CDATA[start]]></category>

		<guid isPermaLink="false">http://www.viisee.net/?p=1242</guid>
		<description><![CDATA[<h1>1.eclipse下载和安装（此处略，能找到这篇文章，这点不成问题）</h1> <p><strong></strong>&#160; <h1><strong>2.进入</strong><a href="http://pydev.org/download.html"><strong>http://pydev.org/download.html</strong></a></h1> <p>下载插件包，放到eclipse的plugins和features目录下，重启eclipse、清空缓存后发现无法在偏好设置里看到pydev的选项 <p>于是找到包的地址<a href="http://pydev.org/updates">http://pydev.org/updates</a> 用eclipse的在线安装方式，成功 <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image" border="0" alt="Image" src="http://www.viisee.net/wp-content/uploads/2012/04/Image_thumb.png" width="485" height="164"></a> <p>注意：只勾选那个pydev就ok了，那个mylyn什么的，提示依赖错误，按提示去搜索完整的mylyn，又提示缺个mylyn bug reporter….算了 <p>&#160; <h1>3.安装完毕</h1> <p>（中间提示你是否信赖一个神马的，点确定，还可能会报一个关于界面的小错误，忽略不管），重启eclipse，进入偏好设置，编辑pydev的属性中，指向python3.2的可执行程序 <p>我自己装过python3.2，所以在这里，不知道为什么选它上层目录的那个python，会提示错误，必须选/bin下面这个python3.2才能正确加载相关的包（参考文章<a href="http://pydev.org/manual_101_interpreter.html">http://pydev.org/manual_101_interpreter.html</a>） <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(1)" border="0" alt="Image(1)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image1_thumb.png" width="569" height="32"></a> <p>你要是没有安装最新的python，可以直接使用系统的python2.7，具体路径可以通过终端运行 <p>sudo find / -name "python" <p>来找找看 <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image2.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(2)" border="0" alt="Image(2)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image2_thumb.png" width="534" height="411"></a> <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image3.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(3)" border="0" alt="Image(3)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image3_thumb.png" width="542" height="405"></a> <p>后来我把这个也包含进Library里面了。。。不知道有用没有 <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image4.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(4)" border="0" alt="Image(4)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image4_thumb.png" width="557" height="216"></a> <p>&#160; <h1>4.新建一个工程，测试一下</h1> <p>按fn + shift + command + F11运行测试（不知道为啥我的必须要fn把F11功能键启用才行，有知道的朋友可以告诉我如何关闭这个，记得家里的thinkpad E40也是这样，可以进bios关闭f1-f11功能，mac还不知道bios在哪儿） <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image5.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(5)" border="0" alt="Image(5)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image5_thumb.png" width="408" height="127"></a> <p>&#160; <h1>5.解决animation start has encountered a problem的问题</h1> <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image6.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(6)" border="0" alt="Image(6)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image6_thumb.png" width="351" height="125"></a> <p>每次运行都弹出这个错误！（据说是eclipse的一个bug，希望下一版本会改进吧） <p>解决方法： <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image7.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(7)" border="0" alt="Image(7)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image7_thumb.png" width="358" height="317"></a> <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image8.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(8)" border="0" alt="Image(8)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image8_thumb.png" width="557" height="447"></a>]]></description>
			<content:encoded><![CDATA[<h1>1.eclipse下载和安装（此处略，能找到这篇文章，这点不成问题）</h1>
<p><strong></strong>&nbsp;<br />
<h1><strong>2.进入</strong><a href="http://pydev.org/download.html"><strong>http://pydev.org/download.html</strong></a></h1>
<p>下载插件包，放到eclipse的plugins和features目录下，重启eclipse、清空缓存后发现无法在偏好设置里看到pydev的选项
<p>于是找到包的地址<a href="http://pydev.org/updates">http://pydev.org/updates</a> 用eclipse的在线安装方式，成功
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image" border="0" alt="Image" src="http://www.viisee.net/wp-content/uploads/2012/04/Image_thumb.png" width="485" height="164"></a>
<p>注意：只勾选那个pydev就ok了，那个mylyn什么的，提示依赖错误，按提示去搜索完整的mylyn，又提示缺个mylyn bug reporter….算了
<p>&nbsp;<br />
<h1>3.安装完毕</h1>
<p>（中间提示你是否信赖一个神马的，点确定，还可能会报一个关于界面的小错误，忽略不管），重启eclipse，进入偏好设置，编辑pydev的属性中，指向python3.2的可执行程序
<p>我自己装过python3.2，所以在这里，不知道为什么选它上层目录的那个python，会提示错误，必须选/bin下面这个python3.2才能正确加载相关的包（参考文章<a href="http://pydev.org/manual_101_interpreter.html">http://pydev.org/manual_101_interpreter.html</a>）
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image1.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(1)" border="0" alt="Image(1)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image1_thumb.png" width="569" height="32"></a>
<p>你要是没有安装最新的python，可以直接使用系统的python2.7，具体路径可以通过终端运行
<p>sudo find / -name “python”
<p>来找找看
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image2.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(2)" border="0" alt="Image(2)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image2_thumb.png" width="534" height="411"></a>
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image3.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(3)" border="0" alt="Image(3)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image3_thumb.png" width="542" height="405"></a>
<p>后来我把这个也包含进Library里面了。。。不知道有用没有
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image4.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(4)" border="0" alt="Image(4)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image4_thumb.png" width="557" height="216"></a>
<p>&nbsp;<br />
<h1>4.新建一个工程，测试一下</h1>
<p>按fn + shift + command + F11运行测试（不知道为啥我的必须要fn把F11功能键启用才行，有知道的朋友可以告诉我如何关闭这个，记得家里的thinkpad E40也是这样，可以进bios关闭f1-f11功能，mac还不知道bios在哪儿）
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image5.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(5)" border="0" alt="Image(5)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image5_thumb.png" width="408" height="127"></a>
<p>&nbsp;<br />
<h1>5.解决animation start has encountered a problem的问题</h1>
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image6.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(6)" border="0" alt="Image(6)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image6_thumb.png" width="351" height="125"></a>
<p>每次运行都弹出这个错误！（据说是eclipse的一个bug，希望下一版本会改进吧）
<p>解决方法：
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image7.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(7)" border="0" alt="Image(7)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image7_thumb.png" width="358" height="317"></a>
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image8.png"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(8)" border="0" alt="Image(8)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image8_thumb.png" width="557" height="447"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1242/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mac os添加windows共享的打印机</title>
		<link>http://www.viisee.net/archives/1202</link>
		<comments>http://www.viisee.net/archives/1202#comments</comments>
		<pubDate>Sun, 15 Apr 2012 04:36:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[软件使用]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[共享]]></category>
		<category><![CDATA[打印机]]></category>

		<guid isPermaLink="false">http://www.viisee.net/?p=1202</guid>
		<description><![CDATA[<p>假设局域网内192.168.0.10（工作组workgroup，机器名server-online）机器上共享了一台共享名称为hpLajetJ的打印机 <p>首先进入系统与偏好设置 找到 <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image61.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(6)" border="0" alt="Image(6)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image6_thumb1.jpg" width="443" height="187"></a> <p>点击添加一个打印机 <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image71.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(7)" border="0" alt="Image(7)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image7_thumb1.jpg" width="446" height="288"></a> <p>找到工作组和计算机名，点击“连接” <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image81.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(8)" border="0" alt="Image(8)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image8_thumb1.jpg" width="468" height="319"></a> <p>输入安装了打印机的用户和密码后，选中你要连接的打印机，然后展开下面的“打印使用”，因为我这里不知道PCL是神马意思，所以选了“选择打印机软件”，手动指定型号 <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image91.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(9)" border="0" alt="Image(9)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image9_thumb1.jpg" width="440" height="378"></a> <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image101.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(10)" border="0" alt="Image(10)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image10_thumb1.jpg" width="441" height="335"></a> <p>然后点击“添加”按钮，就一切ok了，可以对打印进行一些设置 <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image111.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(11)" border="0" alt="Image(11)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image11_thumb1.jpg" width="434" height="282"></a>]]></description>
			<content:encoded><![CDATA[<p>假设局域网内192.168.0.10（工作组workgroup，机器名server-online）机器上共享了一台共享名称为hpLajetJ的打印机
<p>首先进入系统与偏好设置 找到
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image61.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(6)" border="0" alt="Image(6)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image6_thumb1.jpg" width="443" height="187"></a>
<p>点击添加一个打印机
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image71.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(7)" border="0" alt="Image(7)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image7_thumb1.jpg" width="446" height="288"></a>
<p>找到工作组和计算机名，点击“连接”
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image81.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(8)" border="0" alt="Image(8)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image8_thumb1.jpg" width="468" height="319"></a>
<p>输入安装了打印机的用户和密码后，选中你要连接的打印机，然后展开下面的“打印使用”，因为我这里不知道PCL是神马意思，所以选了“选择打印机软件”，手动指定型号
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image91.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(9)" border="0" alt="Image(9)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image9_thumb1.jpg" width="440" height="378"></a>
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image101.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(10)" border="0" alt="Image(10)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image10_thumb1.jpg" width="441" height="335"></a>
<p>然后点击“添加”按钮，就一切ok了，可以对打印进行一些设置
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image111.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(11)" border="0" alt="Image(11)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image11_thumb1.jpg" width="434" height="282"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1202/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>mac下的另一个远程桌面软件Cord</title>
		<link>http://www.viisee.net/archives/1187</link>
		<comments>http://www.viisee.net/archives/1187#comments</comments>
		<pubDate>Sun, 15 Apr 2012 04:33:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[软件使用]]></category>
		<category><![CDATA[cord]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[远程]]></category>

		<guid isPermaLink="false">http://www.viisee.net/?p=1187</guid>
		<description><![CDATA[<p>微软为mac开发的远程桌面软件“远程桌面连接”很方便，和windows下的mstdc差不多，但是当我开启一个窗口，半天下来，内存占用就飙升到了1G多！不知道是不是会缓存一些什么数据。  <p>你以为你是虚拟机啊？你只是一个远程桌面工具而已！  <p>果断搜索资料，换Cord试试  <p>下载安装<a href="http://cord.sourceforge.net/">http://cord.sourceforge.net/</a>  <p>这是一个多标签的远程连接工具，能够随时切换标签来显示不同的远程电脑，而且，是免费的！  <p>安装完毕后，添加一个连接，并按你需要的进行配置  <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image12.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image" border="0" alt="Image" src="http://www.viisee.net/wp-content/uploads/2012/04/Image_thumb1.jpg" width="569" height="444"></a>  <p>首次连接发现屏幕内容很“模糊”，是因为分辨率不同的拉伸造成的，如何使之更清晰呢？  <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image1.jpg"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Image(1)" border="0" alt="Image(1)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image1_thumb.jpg" width="184" height="232"></a>  <p>然后去掉这两个选项的勾，重新连接就可以了  <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image21.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(2)" border="0" alt="Image(2)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image2_thumb1.jpg" width="362" height="135"></a>  <p>某些时候发现双击连接后，无法打开窗口，这是因为远程计算机的安全设置造成的，如何解决呢？  <p>首先进入远程电脑，在“计算机”上点右键，属性&#160; <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image3.jpg"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Image(3)" border="0" alt="Image(3)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image3_thumb.jpg" width="214" height="228"></a>  <p>进入“高级系统设置”  <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image4.jpg"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Image(4)" border="0" alt="Image(4)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image4_thumb.jpg" width="161" height="174"></a>  <p>进入“远程”，将安全级别调整到低一级的即可  <p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image51.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(5)" border="0" alt="Image(5)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image5_thumb1.jpg" width="405" height="465"></a>]]></description>
			<content:encoded><![CDATA[<p>微软为mac开发的远程桌面软件“远程桌面连接”很方便，和windows下的mstdc差不多，但是当我开启一个窗口，半天下来，内存占用就飙升到了1G多！不知道是不是会缓存一些什么数据。
<p>你以为你是虚拟机啊？你只是一个远程桌面工具而已！
<p>果断搜索资料，换Cord试试
<p>下载安装<a href="http://cord.sourceforge.net/">http://cord.sourceforge.net/</a>
<p>这是一个多标签的远程连接工具，能够随时切换标签来显示不同的远程电脑，而且，是免费的！
<p>安装完毕后，添加一个连接，并按你需要的进行配置
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image12.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image" border="0" alt="Image" src="http://www.viisee.net/wp-content/uploads/2012/04/Image_thumb1.jpg" width="569" height="444"></a>
<p>首次连接发现屏幕内容很“模糊”，是因为分辨率不同的拉伸造成的，如何使之更清晰呢？
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image1.jpg"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Image(1)" border="0" alt="Image(1)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image1_thumb.jpg" width="184" height="232"></a>
<p>然后去掉这两个选项的勾，重新连接就可以了
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image21.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(2)" border="0" alt="Image(2)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image2_thumb1.jpg" width="362" height="135"></a>
<p>某些时候发现双击连接后，无法打开窗口，这是因为远程计算机的安全设置造成的，如何解决呢？
<p>首先进入远程电脑，在“计算机”上点右键，属性&nbsp;
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image3.jpg"><img style="background-image: none; border-right-width: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Image(3)" border="0" alt="Image(3)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image3_thumb.jpg" width="214" height="228"></a>
<p>进入“高级系统设置”
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image4.jpg"><img style="background-image: none; border-right-width: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px; padding-top: 0px" title="Image(4)" border="0" alt="Image(4)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image4_thumb.jpg" width="161" height="174"></a>
<p>进入“远程”，将安全级别调整到低一级的即可
<p><a href="http://www.viisee.net/wp-content/uploads/2012/04/Image51.jpg"><img style="background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: inline; border-top: 0px; border-right: 0px; padding-top: 0px" title="Image(5)" border="0" alt="Image(5)" src="http://www.viisee.net/wp-content/uploads/2012/04/Image5_thumb1.jpg" width="405" height="465"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1187/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>百度网盘使用测试报告 以及与金山快盘的对比</title>
		<link>http://www.viisee.net/archives/1090</link>
		<comments>http://www.viisee.net/archives/1090#comments</comments>
		<pubDate>Fri, 23 Mar 2012 06:21:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[软件使用]]></category>

		<guid isPermaLink="false">http://www.viisee.net/?p=1090</guid>
		<description><![CDATA[<p>云存储市场风云变幻，强者如林。

国外比较出名的有DropBox、sugarSync、live mesh/skyDriver

国内跟风也产生了一大批网盘，扳着指头数了一下：

金山快盘、新浪微盘、盛大EverBox、115网盘、华为DBank、Q盘、360盘&#8230;&#8230;

&#160;

<strong>自从DropBox被墙与疑似被墙后，笔者一直在使用金山快盘，目前来看是最好用的，因为它的这些功能吸引了我</strong></p><ul><li>签到奖励空间</li><li>文件被占用也能同步</li><li>可分别控制下载/上传速度</li><li>可添加浏览器收藏夹、照片的备份</li><li>文件分享（要对方也使用）</li><li>外链</li><li>切换用户</li></ul><p>&#160;

<strong>但也有一些很奇怪的地方让我头痛</strong></p><ul><li>我已经使用了10G空间中的9G，于是当我移动一个大文件夹到另一个文件夹的时候，在云服务器上是&#8220;先创建新目录，再删除旧目录&#8221;的。但是在创建的时候，就提示我&#8220;空间不够&#8221;了，需要手动先去回收站里删掉那个原来的目录，以便腾出空间，才能继续进行上传，非常不方便。</li><li>每天签到很辛苦，虽然可以邀请别人增加空间，但别人要是不装客户端并登录，那我这个奖励就没有了，因此现在空间捉襟见肘&#8212;&#8212;我想买空间都找不到买的途径。</li><li>注册多个用户，切换空间可以实现增加空间，但我习惯了工作时随时同步，哪有闲心来切换？</li><li>以前很好的一个&#8220;加密&#8221;的功能，突然不见了</li></ul><p>&#160;

<strong>但，最近出来的百度网盘让我产生了浓厚的兴趣，为什么呢？</strong></p><ul><li>百度是做搜索的，服务器数量不成问题，因此空间方面会更加慷慨。</li><li>百度是做搜索的，因此当我的文件数量非常大的时候，搜索起来应该会更方便。</li><li>百度是做搜索的，网盘是副业，因此可预见的未来不会收费（参考知道、贴吧、hi&#8230;&#8230;从来没有收费过）</li><li>百度是做搜索的，因此信息来源方面，以及资料的智能匹配方面，有很大的想象空间（如果你网盘里有些资料&#8212;&#8212;比如一些常用的软件、电子书等等，开启&#8220;允许百度帮我自动更新&#8221;，就省了自己去更新了）</li><li>百度是做搜索的，很有钱，因此服务有保障</li><li>百度文库现在面临版权问题，通过网盘，可能会把这个问题转嫁到用户身上，摆出一副&#8220;这是他们自己的资料 与我无关&#8221;的姿态</li></ul><p>&#160;

好了 言归正传。

百度网盘目前还处于公测期，需要申请

<a href="http://test.baidu.com/index.php/crowdtest/activity/wangpan">http://test.baidu.com/index.php/crowdtest/activity/wangpan</a>

申请完毕后登录

<a href="http://pan.baidu.com">http://pan.baidu.com</a>

&#160;

<strong>1.登录后的页面</strong>

<img src="http://www.viisee.net/wp-content/uploads/2012/03/bd1.png" alt="" width="966" height="600" />

对比金山快盘的主界面，主要有以下优势：

1.左、中、右三栏，在网页的一屏内即可把内容展示完毕，不需要像快盘那样，有时候还要把页面拉上拉下才能找到顶部的一些功能和导航

<img src="http://www.viisee.net/wp-content/uploads/2012/03/js.png" alt="" width="1186" height="623" />

2.看到了吗？离线下载！ &#160;你让迅雷和旋风情何以堪？而且是15G！我测试了一个14M的exe文件，在获取文件信息时比较慢，但下载的速度是快得很（这还是在测试版，资源不够丰富的情况下，当服务器上有资源时，下载其实是&#8220;不需要任何时间&#8221;的），这里甚至还给你提供了&#8220;后台下载&#8221;的功能

<img src="http://www.viisee.net/wp-content/uploads/2012/03/offline.png" alt="" width="939" height="583" />

3.分类浏览模式，可以看出你各种文件的数量、还有统计图，。我就说了嘛，做搜索的，对&#8220;数据统计&#8221;非常看重

<img src="http://www.viisee.net/wp-content/uploads/2012/03/data.png" alt="" width="968" height="604" />

4.加密分享、公开（外链）功能，不仅是单个文件、目录，甚至能对整个根目录进行公开（不过我想一般没人会这么干吧）！

<img src="http://www.viisee.net/wp-content/uploads/2012/03/sec.png" alt="" width="585" height="292" />

5.对比金山快盘更详细的文件信息摘要（大小、文件格式图标），这里要是能像windows一样能对文本、图片的具体内容也部分预览就好了，或者干脆在线查看！相信百度是能做的（见百度文库的浏览功能）

金山快盘就可以对部分格式的文件进行在线查看（可能是调用在线wps的一些模块吧）

<img src="http://www.viisee.net/wp-content/uploads/2012/03/view1.png" alt="" width="788" height="417" />

&#160;

<strong>下面来看PC客户端</strong>

1.下载安装后也会在&#8220;我的电脑&#8221;里生成一个快捷方式，看来好的东西确实学到了，呵呵。

<img src="http://www.viisee.net/wp-content/uploads/2012/03/mypc.png" alt="" width="503" height="379" />

&#160;

但是我很喜欢的金山快盘目录中，深度整合到资源管理器中的工具区域没有了

<img src="http://www.viisee.net/wp-content/uploads/2012/03/jsright.png" alt="" />

&#160;

你没有看错，确实是15G

<img src="http://www.viisee.net/wp-content/uploads/2012/03/space1.png" alt="" width="282" height="413" />

&#160;

查看同步状态，这里上传和下载是分开显示的，我希望能单独控制一些文件，让他们暂停上传，或排序，比如快下班了，这时还有很多文件在同时上传，就可以把最重要的文件提前。

<img src="http://www.viisee.net/wp-content/uploads/2012/03/state.png" alt="" width="464" height="388" />

&#160;

<strong>通过以上的对比和使用，虽然测试版的百度网盘还存在以下不足</strong>

1.linux / mac平台上的还没有开发，但从官方页面上看已经有开发计划了（金山快盘一直没考虑过mac版本）

2.android、ios上的开没有开发，也是已经有计划了

3.web版的ajax有点问题，经常&#8220;正在传输数据&#8221;

4.不能在线查看文件（测试pdf）

5.目前测试版还没法增加空间（但已经足够了！）

&#160;

但我已经决定放弃金山快盘，投入百度网盘的怀抱了！高度简洁的界面，清晰的功能区，不点都不像一个充满&#8220;工程师文化和极客氛围&#8221;的公司开发的产品，我是深深地体会到了&#8220;功能同质化的时候，用户体验就是第一&#8221;这个道理，让快盘的UE设计师见鬼去吧！你们的步子太慢。

&#160;

另吐槽一下，企鹅Q盘小气的2G、必须安装神马电脑管家的做法令我觉得非常恶心。</p>]]></description>
			<content:encoded><![CDATA[<p>云存储市场风云变幻，强者如林。</p>
<p>国外比较出名的有DropBox、sugarSync、live mesh/skyDriver</p>
<p>国内跟风也产生了一大批网盘，扳着指头数了一下：</p>
<p>金山快盘、新浪微盘、盛大EverBox、115网盘、华为DBank、Q盘、360盘&hellip;&hellip;</p>
<p>&nbsp;</p>
<p><strong>自从DropBox被墙与疑似被墙后，笔者一直在使用金山快盘，目前来看是最好用的，因为它的这些功能吸引了我</strong></p>
<ul>
<li>签到奖励空间</li>
<li>文件被占用也能同步</li>
<li>可分别控制下载/上传速度</li>
<li>可添加浏览器收藏夹、照片的备份</li>
<li>文件分享（要对方也使用）</li>
<li>外链</li>
<li>切换用户</li>
</ul>
<p>&nbsp;</p>
<p><strong>但也有一些很奇怪的地方让我头痛</strong></p>
<ul>
<li>我已经使用了10G空间中的9G，于是当我移动一个大文件夹到另一个文件夹的时候，在云服务器上是&ldquo;先创建新目录，再删除旧目录&rdquo;的。但是在创建的时候，就提示我&ldquo;空间不够&rdquo;了，需要手动先去回收站里删掉那个原来的目录，以便腾出空间，才能继续进行上传，非常不方便。</li>
<li>每天签到很辛苦，虽然可以邀请别人增加空间，但别人要是不装客户端并登录，那我这个奖励就没有了，因此现在空间捉襟见肘&mdash;&mdash;我想买空间都找不到买的途径。</li>
<li>注册多个用户，切换空间可以实现增加空间，但我习惯了工作时随时同步，哪有闲心来切换？</li>
<li>以前很好的一个&ldquo;加密&rdquo;的功能，突然不见了</li>
</ul>
<p>&nbsp;</p>
<p><strong>但，最近出来的百度网盘让我产生了浓厚的兴趣，为什么呢？</strong></p>
<ul>
<li>百度是做搜索的，服务器数量不成问题，因此空间方面会更加慷慨。</li>
<li>百度是做搜索的，因此当我的文件数量非常大的时候，搜索起来应该会更方便。</li>
<li>百度是做搜索的，网盘是副业，因此可预见的未来不会收费（参考知道、贴吧、hi&hellip;&hellip;从来没有收费过）</li>
<li>百度是做搜索的，因此信息来源方面，以及资料的智能匹配方面，有很大的想象空间（如果你网盘里有些资料&mdash;&mdash;比如一些常用的软件、电子书等等，开启&ldquo;允许百度帮我自动更新&rdquo;，就省了自己去更新了）</li>
<li>百度是做搜索的，很有钱，因此服务有保障</li>
<li>百度文库现在面临版权问题，通过网盘，可能会把这个问题转嫁到用户身上，摆出一副&ldquo;这是他们自己的资料 与我无关&rdquo;的姿态</li>
</ul>
<p>&nbsp;</p>
<p>好了 言归正传。</p>
<p>百度网盘目前还处于公测期，需要申请</p>
<p><a href="http://test.baidu.com/index.php/crowdtest/activity/wangpan">http://test.baidu.com/index.php/crowdtest/activity/wangpan</a></p>
<p>申请完毕后登录</p>
<p><a href="http://pan.baidu.com">http://pan.baidu.com</a></p>
<p>&nbsp;</p>
<p><strong>1.登录后的页面</strong></p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/bd1.png" alt="" width="966" height="600" /></p>
<p>对比金山快盘的主界面，主要有以下优势：</p>
<p>1.左、中、右三栏，在网页的一屏内即可把内容展示完毕，不需要像快盘那样，有时候还要把页面拉上拉下才能找到顶部的一些功能和导航</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/js.png" alt="" width="1186" height="623" /></p>
<p>2.看到了吗？离线下载！ &nbsp;你让迅雷和旋风情何以堪？而且是15G！我测试了一个14M的exe文件，在获取文件信息时比较慢，但下载的速度是快得很（这还是在测试版，资源不够丰富的情况下，当服务器上有资源时，下载其实是&ldquo;不需要任何时间&rdquo;的），这里甚至还给你提供了&ldquo;后台下载&rdquo;的功能</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/offline.png" alt="" width="939" height="583" /></p>
<p>3.分类浏览模式，可以看出你各种文件的数量、还有统计图，。我就说了嘛，做搜索的，对&ldquo;数据统计&rdquo;非常看重</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/data.png" alt="" width="968" height="604" /></p>
<p>4.加密分享、公开（外链）功能，不仅是单个文件、目录，甚至能对整个根目录进行公开（不过我想一般没人会这么干吧）！</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/sec.png" alt="" width="585" height="292" /></p>
<p>5.对比金山快盘更详细的文件信息摘要（大小、文件格式图标），这里要是能像windows一样能对文本、图片的具体内容也部分预览就好了，或者干脆在线查看！相信百度是能做的（见百度文库的浏览功能）</p>
<p>金山快盘就可以对部分格式的文件进行在线查看（可能是调用在线wps的一些模块吧）</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/view1.png" alt="" width="788" height="417" /></p>
<p>&nbsp;</p>
<p><strong>下面来看PC客户端</strong></p>
<p>1.下载安装后也会在&ldquo;我的电脑&rdquo;里生成一个快捷方式，看来好的东西确实学到了，呵呵。</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/mypc.png" alt="" width="503" height="379" /></p>
<p>&nbsp;</p>
<p>但是我很喜欢的金山快盘目录中，深度整合到资源管理器中的工具区域没有了</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/jsright.png" alt="" /></p>
<p>&nbsp;</p>
<p>你没有看错，确实是15G</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/space1.png" alt="" width="282" height="413" /></p>
<p>&nbsp;</p>
<p>查看同步状态，这里上传和下载是分开显示的，我希望能单独控制一些文件，让他们暂停上传，或排序，比如快下班了，这时还有很多文件在同时上传，就可以把最重要的文件提前。</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/state.png" alt="" width="464" height="388" /></p>
<p>&nbsp;</p>
<p><strong>通过以上的对比和使用，虽然测试版的百度网盘还存在以下不足</strong></p>
<p>1.linux / mac平台上的还没有开发，但从官方页面上看已经有开发计划了（金山快盘一直没考虑过mac版本）</p>
<p>2.android、ios上的开没有开发，也是已经有计划了</p>
<p>3.web版的ajax有点问题，经常&ldquo;正在传输数据&rdquo;</p>
<p>4.不能在线查看文件（测试pdf）</p>
<p>5.目前测试版还没法增加空间（但已经足够了！）</p>
<p>&nbsp;</p>
<p>但我已经决定放弃金山快盘，投入百度网盘的怀抱了！高度简洁的界面，清晰的功能区，不点都不像一个充满&ldquo;工程师文化和极客氛围&rdquo;的公司开发的产品，我是深深地体会到了&ldquo;功能同质化的时候，用户体验就是第一&rdquo;这个道理，让快盘的UE设计师见鬼去吧！你们的步子太慢。</p>
<p>&nbsp;</p>
<p>另吐槽一下，企鹅Q盘小气的2G、必须安装神马电脑管家的做法令我觉得非常恶心。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1090/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005/08中还原旧版2000数据库 提示用户或组已经存在</title>
		<link>http://www.viisee.net/archives/1028</link>
		<comments>http://www.viisee.net/archives/1028#comments</comments>
		<pubDate>Wed, 13 Apr 2011 09:03:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[数据库]]></category>

		<guid isPermaLink="false">http://www.viisee.net/archives/1028</guid>
		<description><![CDATA[<p>1.有一台新搭建的<strong>Sql server 2005</strong>服务器，还原一个使用<strong>Sql server2000</strong>备份的数据库备份文件(后缀.BAK)

2.这个还原操作会自动生成相应的<strong>数据库用户</strong>（数据库自带 点开数据库可以看到），假设为<strong>user1</strong>

<img src="http://www.viisee.net/wp-content/uploads/2012/03/sql1.gif" alt="" width="263" height="398" />

3.因为SQL Server 2005引入了&#8220;<strong>登录名</strong>&#8221;，和前面的&#8220;<strong>数据库用户</strong>&#8221;不同，需要单独建立。然而在SSMS中建立对应的登录名时，提示<strong>用户或组已经存在</strong>，于是想删除掉重建，但是进入数据库&#8212;&#8212;安全性&#8212;&#8212;用户 节点下，无法删除

<img src="http://www.viisee.net/wp-content/uploads/2012/03/sql2.gif" alt="" width="249" height="218" />

4.尝试直接使用这个<strong>user1</strong>登录SSMS，提示<strong>无法登录，没有默认数据库</strong>

5.尝试修改这个用户的属性，设置默认数据库，保存时提示&#8220;<strong>要有登录名</strong>&#8221;

微软这个绕圈圈把人脑袋都绕晕了！

&#160;

<strong>问题根源：</strong>

经查资料，这个是Sql server里的&#8220;<strong>孤立用户</strong>&#8221;，就是说其<strong>登录名没有和数据库的用户名</strong>对应起来，这个操作在SSMS里是实现不了的，要么提示无法登录，要么提示已经存在，必须要用一个存储过程来处理

&#160;

<strong>处理方法：（原文来自</strong><a href="http://www.chr114.coms/20110105/09311428.shtml">http://www.chr114.coms/20110105/09311428.shtml</a><strong>）</strong>

新建一个查询，输入

<span style="color: #ff0000;">Use 数据库</span>

<span style="color: #ff0000;">go</span>

<span style="color: #ff0000;">sp_change_users_login 'update_one', '登录用户名', '用户名'</span>

解释一下参数:

目的让"登录用户名'" 与 '用户名' 联系起来

update_one, 表示只对一个用户进行操作

登录用户名'与'用户名', 则分别是SQL Server的登录名与数据库中的用户名

sp_change_users_login的更详细的用法可以参考SQL Server的联机帮助, SQL Server 2005的在此, SQL 2000的链接不方便做成链接的形式, 各位可以自己到联机丛书的索引中找一下.

&#160;

例子：

--Use dbname

--go

--sp_change_users_login 'update_one', 'sa, 'sa'

<img src="http://www.viisee.net/wp-content/uploads/2012/03/1332397033752.png" alt="" />

<img src="http://www.viisee.net/wp-content/uploads/2012/03/1332397160943.png" alt="" /></p>]]></description>
			<content:encoded><![CDATA[<p>1.有一台新搭建的<strong>Sql server 2005</strong>服务器，还原一个使用<strong>Sql server2000</strong>备份的数据库备份文件(后缀.BAK)</p>
<p>2.这个还原操作会自动生成相应的<strong>数据库用户</strong>（数据库自带 点开数据库可以看到），假设为<strong>user1</strong></p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/sql1.gif" alt="" width="263" height="398" /></p>
<p>3.因为SQL Server 2005引入了&ldquo;<strong>登录名</strong>&rdquo;，和前面的&ldquo;<strong>数据库用户</strong>&rdquo;不同，需要单独建立。然而在SSMS中建立对应的登录名时，提示<strong>用户或组已经存在</strong>，于是想删除掉重建，但是进入数据库&mdash;&mdash;安全性&mdash;&mdash;用户 节点下，无法删除</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/sql2.gif" alt="" width="249" height="218" /></p>
<p>4.尝试直接使用这个<strong>user1</strong>登录SSMS，提示<strong>无法登录，没有默认数据库</strong></p>
<p>5.尝试修改这个用户的属性，设置默认数据库，保存时提示&ldquo;<strong>要有登录名</strong>&rdquo;</p>
<p>微软这个绕圈圈把人脑袋都绕晕了！</p>
<p>&nbsp;</p>
<p><strong>问题根源：</strong></p>
<p>经查资料，这个是Sql server里的&ldquo;<strong>孤立用户</strong>&rdquo;，就是说其<strong>登录名没有和数据库的用户名</strong>对应起来，这个操作在SSMS里是实现不了的，要么提示无法登录，要么提示已经存在，必须要用一个存储过程来处理</p>
<p>&nbsp;</p>
<p><strong>处理方法：（原文来自</strong><a href="http://www.chr114.coms/20110105/09311428.shtml">http://www.chr114.coms/20110105/09311428.shtml</a><strong>）</strong></p>
<p>新建一个查询，输入</p>
<p><span style="color: #ff0000;">Use 数据库</span></p>
<p><span style="color: #ff0000;">go</span></p>
<p><span style="color: #ff0000;">sp_change_users_login &#8216;update_one&#8217;, &#8216;登录用户名&#8217;, &#8216;用户名&#8217;</span></p>
<p>解释一下参数:</p>
<p>目的让”登录用户名&#8217;” 与 &#8216;用户名&#8217; 联系起来</p>
<p>update_one, 表示只对一个用户进行操作</p>
<p>登录用户名&#8217;与&#8217;用户名&#8217;, 则分别是SQL Server的登录名与数据库中的用户名</p>
<p>sp_change_users_login的更详细的用法可以参考SQL Server的联机帮助, SQL Server 2005的在此, SQL 2000的链接不方便做成链接的形式, 各位可以自己到联机丛书的索引中找一下.</p>
<p>&nbsp;</p>
<p>例子：</p>
<p>&#8211;Use dbname</p>
<p>&#8211;go</p>
<p>&#8211;sp_change_users_login &#8216;update_one&#8217;, &#8216;sa, &#8216;sa&#8217;</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/1332397033752.png" alt="" /></p>
<p><img src="http://www.viisee.net/wp-content/uploads/2012/03/1332397160943.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1028/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>敏捷的技术部 敏捷的产品PPT（及slideshare.net介绍）</title>
		<link>http://www.viisee.net/archives/1032</link>
		<comments>http://www.viisee.net/archives/1032#comments</comments>
		<pubDate>Wed, 13 Apr 2011 01:26:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[工作思考]]></category>

		<guid isPermaLink="false">http://www.viisee.net/?p=1032</guid>
		<description><![CDATA[<a title="slideshare" href="http://www.slideshare.net" target="_blank">slideshare.net</a>是一个在线上传ppt和分享的网站（升级高级版本还有更多功能，有钱银可以试试），里面有很多不错的PPT，操作也很简单，注册后点击upload就可以了，不过可能视你PPT的大小速度不同，然后就可以分享到facebook等，或复制html代码粘贴在你的博客上了。

<a href="http://www.viisee.net/archives/1032/index" rel="attachment wp-att-1033"><img title="index" src="http://www.viisee.net/wp-content/uploads/2011/05/index-300x199.png" alt="" width="600" height="400" /></a>

<a href="http://www.viisee.net/archives/1032/share" rel="attachment wp-att-1034"><img title="share" src="http://www.viisee.net/wp-content/uploads/2011/05/share-300x272.png" alt="" width="500" height="450" /></a>

记得《演讲之禅》的作者说，为避免发生意外，对需要演讲的PPT一定要保留3份：1份放在笔记本电脑，一份放在U盘，一份放在网络上。所以slideshare就实现了第三个途径。

下面是我上传的一个很久之前对技术部培训的PPT，扭转大家被动接受需求的心态，以及在遇到误解时的处理方法。
<div id="__ss_7946442"><a title="敏捷的技术部 敏捷的产品" href="http://www.slideshare.net/my101du/ss-7946442">敏捷的技术部 敏捷的产品</a><object id="__sse7946442" width="425" height="355" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=random-110512201922-phpapp01&#38;stripped_title=ss-7946442&#38;userName=my101du" /><param name="allowscriptaccess" value="always" /><param name="allowfullscreen" value="true" /><embed id="__sse7946442" width="425" height="355" type="application/x-shockwave-flash" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=random-110512201922-phpapp01&#38;stripped_title=ss-7946442&#38;userName=my101du" allowFullScreen="true" allowScriptAccess="always" allowscriptaccess="always" allowfullscreen="true" /></object>
<div>View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/my101du">my101du</a>.</div>
</div>]]></description>
			<content:encoded><![CDATA[<p><a title="slideshare" href="http://www.slideshare.net" target="_blank">slideshare.net</a>是一个在线上传ppt和分享的网站（升级高级版本还有更多功能，有钱银可以试试），里面有很多不错的PPT，操作也很简单，注册后点击upload就可以了，不过可能视你PPT的大小速度不同，然后就可以分享到facebook等，或复制html代码粘贴在你的博客上了。</p>
<p><a href="http://www.viisee.net/archives/1032/index" rel="attachment wp-att-1033"><img title="index" src="http://www.viisee.net/wp-content/uploads/2011/05/index-300x199.png" alt="" width="600" height="400" /></a></p>
<p><a href="http://www.viisee.net/archives/1032/share" rel="attachment wp-att-1034"><img title="share" src="http://www.viisee.net/wp-content/uploads/2011/05/share-300x272.png" alt="" width="500" height="450" /></a></p>
<p>记得《演讲之禅》的作者说，为避免发生意外，对需要演讲的PPT一定要保留3份：1份放在笔记本电脑，一份放在U盘，一份放在网络上。所以slideshare就实现了第三个途径。</p>
<p>下面是我上传的一个很久之前对技术部培训的PPT，扭转大家被动接受需求的心态，以及在遇到误解时的处理方法。</p>
<div id="__ss_7946442"><a title="敏捷的技术部 敏捷的产品" href="http://www.slideshare.net/my101du/ss-7946442">敏捷的技术部 敏捷的产品</a><object id="__sse7946442" width="425" height="355" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=random-110512201922-phpapp01&amp;stripped_title=ss-7946442&amp;userName=my101du" /><param name="allowscriptaccess" value="always" /><param name="allowfullscreen" value="true" /><embed id="__sse7946442" width="425" height="355" type="application/x-shockwave-flash" src="http://static.slidesharecdn.com/swf/ssplayer2.swf?doc=random-110512201922-phpapp01&amp;stripped_title=ss-7946442&amp;userName=my101du" allowFullScreen="true" allowScriptAccess="always" allowscriptaccess="always" allowfullscreen="true" /></object></p>
<div>View more <a href="http://www.slideshare.net/">presentations</a> from <a href="http://www.slideshare.net/my101du">my101du</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1032/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPNow无法使用mssql扩展的解决办法</title>
		<link>http://www.viisee.net/archives/1027</link>
		<comments>http://www.viisee.net/archives/1027#comments</comments>
		<pubDate>Tue, 12 Apr 2011 06:47:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[运维]]></category>

		<guid isPermaLink="false">http://www.viisee.net/archives/1027</guid>
		<description><![CDATA[<p>觉得XAMPP太复杂了，占用空间太大，于是用PHPNow替换之。

安装完毕后，一切都很正常，但是无法使用mssql，我的本机环境是win7+PHPNow+SQL server 2008，需要连接到一台远程的SQL Server 2000上。

首先php.ini里面开启mssql的扩展

<img src="http://www.viisee.net/wp-content/uploads/2011/04/2011-04-12_1440161.png" alt="" />

重启apache 使用mssql_connect()函数测试，提示没有这个函数，google一番，原来是<strong>要把相关的dll文件拷贝放入系统文件夹的system32目录下</strong>。

假设你的phpnow和我一样装在D盘，那么就是如下两个文件

D:\PHPnow-1.5.6\php-5.2.14-Win32\ntwdblib.dll

D:\PHPnow-1.5.6\php-5.2.14-Win32\ext\php_mssql.dll

最后重启apache即可。</p>]]></description>
			<content:encoded><![CDATA[<p>觉得XAMPP太复杂了，占用空间太大，于是用PHPNow替换之。</p>
<p>安装完毕后，一切都很正常，但是无法使用mssql，我的本机环境是win7+PHPNow+SQL server 2008，需要连接到一台远程的SQL Server 2000上。</p>
<p>首先php.ini里面开启mssql的扩展</p>
<p><img src="http://www.viisee.net/wp-content/uploads/2011/04/2011-04-12_1440161.png" alt="" /></p>
<p>重启apache 使用mssql_connect()函数测试，提示没有这个函数，google一番，原来是<strong>要把相关的dll文件拷贝放入系统文件夹的system32目录下</strong>。</p>
<p>假设你的phpnow和我一样装在D盘，那么就是如下两个文件</p>
<p>D:\PHPnow-1.5.6\php-5.2.14-Win32\ntwdblib.dll</p>
<p>D:\PHPnow-1.5.6\php-5.2.14-Win32\ext\php_mssql.dll</p>
<p>最后重启apache即可。</p>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1027/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在车上 念头一个接一个</title>
		<link>http://www.viisee.net/archives/1029</link>
		<comments>http://www.viisee.net/archives/1029#comments</comments>
		<pubDate>Wed, 26 Jan 2011 06:52:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[生活随笔]]></category>

		<guid isPermaLink="false">http://www.viisee.net/archives/1029</guid>
		<description><![CDATA[<p><span style="border-collapse: collapse; color: #3f3f3f; font-family: Arial; line-height: 22px;"> </span>

<strong>1.理论和现实是不一样的</strong>

教科书上的技巧万千，但写书的那人不可能试过所有的车，就算试过，&#8220;感觉&#8221;这东西文字不一定能表达清楚。写书的人也不可能写一本囊括各种情况的辞典，就算有，你也不可能在路上翻开查阅。

&#160;

<strong>2.大家都很快的时候，你慢，就很危险</strong>

路上标了最低限速，你跑慢了，不仅要比别人后到达目的地；在路上，有的人会悄悄超过你；有的人超过你的时候，还不忘闪灯鸣笛告诉你。

&#160;

<strong>3.教条不一定正确</strong>

导航是机器，是机器就会有问题。如果在现实中有和教条不一样的东西，一定要尊重现实&#8212;&#8212;起码在中国是这样，否则会走入死路&#8212;&#8212;这时候导航还在提醒你保持直行！

&#160;

<strong>4.信息来源太多不一定是好事</strong>

你的主观判断、教条、其他人同时告诉你一件事情的三个不同版本，首先相信并理解教条，如果理解了但教条有误，相信自己。

&#160;

<strong>5.换位思考很重要</strong>

你在走路时闯红灯、随意横穿马路得意的时候，和你坐在车里急刹车的时候，心情是不一样的。与人方便，自己方便。

&#160;

<strong>6.你再牛逼，也不是每个人都会听你的</strong>

喇叭按爆，灯闪烂，人骑个自行车歪歪扭扭就是横在你前面；行了，哥，你先走，惹不起我还躲不起么？

&#160;

<strong>7.及时告诉别人你在做什么</strong>

大部分人默认你是循规蹈矩的，如果你没有任何提示突然变道，偶尔你可以超过去，偶尔你会车毁人亡，但不管怎样都会被后面的人警告或心里咒骂。及时告诉别人你在做什么，整条道上的人都心情愉悦，一起迅速到达目的地。

&#160;

<strong>8.抢道不表示你能比别人先到</strong>

拥堵的时候，环境很乱，抢道很危险，而且很添堵。等你左冲右突得意地走出去时，突然发现旁边超过去的那辆车正好是之前被你抢道的。

&#160;

<strong>9.事先规划好路线和查好信息</strong>

出门前先计划好，不仅节省燃油（资源），而且节省时间（精力）。

&#160;

<strong>10.关键时刻要明白什么是最重要的</strong>

即将被卡车撞上和撞向防护栏，首选保命，什么交规、车损坏都是浮云。留得青山在不愁没柴烧。最关键的是冷静，手里的方向盘不能猛打（做人要坚持原则）

&#160;

<strong>11.人生在很多时候是不能马上回头的</strong>

错过出去的路口，只能硬着头皮往前走然后悄悄掉头改正错误。在繁忙的车流里随心所欲地掉头，别人只会看笑话，而且这是不符合&#8220;规则&#8221;的，非常危险。

&#160;

<strong>12.眼睛看得越远，跑得越稳，走错路的机会也越小</strong>

时刻要明白自己正在哪里，即将去哪里，指路牌上的信息是什么。眼睛往前看，提前预见前N辆车的情况，可以减少突然刹车的危险。

&#160;

<strong>13.早起的鸟儿有虫吃</strong>

早起15分钟，路况要好很多，节省很多时间。也就是说早起的鸟儿有虫吃；晚出发15分钟，即使你开着法拉利，半小时也不能从盐田到机场。

&#160;

<strong>14.当你有一个大体积的工具，就难以对周边的环境有个精确的认识，所以必须尽快熟悉你的工具</strong>

用两条腿走路的时候，明白自己在哪里，附近有什么；坐在车里，很多东西被挡住了，而且很多东西会变形，如果不在大脑里对这些东西进行还原，撞墙是迟早的事，也就无法发挥车的用处了。

&#160;

<strong>15.尺有所短，寸有所长</strong>

找车位的时间和发生擦碰的几率同时增大，带上小单车，停车范围一下就扩大了，想停哪停哪，下车骑上小单车一溜烟就可以走了。同时把各种工具综合运用，可以提高效率。

&#160;

<strong>16.合同细则阅读要仔细，有疑问要提出，因为没有哪个卖家是&#8220;全心全意为人民服务&#8221;的</strong>

不是买了保险就可以随心所欲的，也不是停在院子里的车被盗就能索赔的，陷阱处处有，中国特别多。

&#160;

<strong>17.工具要努力让它产生效益，但也要爱惜工具</strong>

任何物体都是有灵魂和尊严的，它帮你，你爱它，和谐！

&#160;

（未完待续）

&#160;</p><p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; line-height: 1.6; padding: 0px;"><strong>
 </strong></p>]]></description>
			<content:encoded><![CDATA[<p><span style="border-collapse: collapse; color: #3f3f3f; font-family: Arial; line-height: 22px;"> </span></p>
<p><strong>1.理论和现实是不一样的</strong></p>
<p>教科书上的技巧万千，但写书的那人不可能试过所有的车，就算试过，&ldquo;感觉&rdquo;这东西文字不一定能表达清楚。写书的人也不可能写一本囊括各种情况的辞典，就算有，你也不可能在路上翻开查阅。</p>
<p>&nbsp;</p>
<p><strong>2.大家都很快的时候，你慢，就很危险</strong></p>
<p>路上标了最低限速，你跑慢了，不仅要比别人后到达目的地；在路上，有的人会悄悄超过你；有的人超过你的时候，还不忘闪灯鸣笛告诉你。</p>
<p>&nbsp;</p>
<p><strong>3.教条不一定正确</strong></p>
<p>导航是机器，是机器就会有问题。如果在现实中有和教条不一样的东西，一定要尊重现实&mdash;&mdash;起码在中国是这样，否则会走入死路&mdash;&mdash;这时候导航还在提醒你保持直行！</p>
<p>&nbsp;</p>
<p><strong>4.信息来源太多不一定是好事</strong></p>
<p>你的主观判断、教条、其他人同时告诉你一件事情的三个不同版本，首先相信并理解教条，如果理解了但教条有误，相信自己。</p>
<p>&nbsp;</p>
<p><strong>5.换位思考很重要</strong></p>
<p>你在走路时闯红灯、随意横穿马路得意的时候，和你坐在车里急刹车的时候，心情是不一样的。与人方便，自己方便。</p>
<p>&nbsp;</p>
<p><strong>6.你再牛逼，也不是每个人都会听你的</strong></p>
<p>喇叭按爆，灯闪烂，人骑个自行车歪歪扭扭就是横在你前面；行了，哥，你先走，惹不起我还躲不起么？</p>
<p>&nbsp;</p>
<p><strong>7.及时告诉别人你在做什么</strong></p>
<p>大部分人默认你是循规蹈矩的，如果你没有任何提示突然变道，偶尔你可以超过去，偶尔你会车毁人亡，但不管怎样都会被后面的人警告或心里咒骂。及时告诉别人你在做什么，整条道上的人都心情愉悦，一起迅速到达目的地。</p>
<p>&nbsp;</p>
<p><strong>8.抢道不表示你能比别人先到</strong></p>
<p>拥堵的时候，环境很乱，抢道很危险，而且很添堵。等你左冲右突得意地走出去时，突然发现旁边超过去的那辆车正好是之前被你抢道的。</p>
<p>&nbsp;</p>
<p><strong>9.事先规划好路线和查好信息</strong></p>
<p>出门前先计划好，不仅节省燃油（资源），而且节省时间（精力）。</p>
<p>&nbsp;</p>
<p><strong>10.关键时刻要明白什么是最重要的</strong></p>
<p>即将被卡车撞上和撞向防护栏，首选保命，什么交规、车损坏都是浮云。留得青山在不愁没柴烧。最关键的是冷静，手里的方向盘不能猛打（做人要坚持原则）</p>
<p>&nbsp;</p>
<p><strong>11.人生在很多时候是不能马上回头的</strong></p>
<p>错过出去的路口，只能硬着头皮往前走然后悄悄掉头改正错误。在繁忙的车流里随心所欲地掉头，别人只会看笑话，而且这是不符合&ldquo;规则&rdquo;的，非常危险。</p>
<p>&nbsp;</p>
<p><strong>12.眼睛看得越远，跑得越稳，走错路的机会也越小</strong></p>
<p>时刻要明白自己正在哪里，即将去哪里，指路牌上的信息是什么。眼睛往前看，提前预见前N辆车的情况，可以减少突然刹车的危险。</p>
<p>&nbsp;</p>
<p><strong>13.早起的鸟儿有虫吃</strong></p>
<p>早起15分钟，路况要好很多，节省很多时间。也就是说早起的鸟儿有虫吃；晚出发15分钟，即使你开着法拉利，半小时也不能从盐田到机场。</p>
<p>&nbsp;</p>
<p><strong>14.当你有一个大体积的工具，就难以对周边的环境有个精确的认识，所以必须尽快熟悉你的工具</strong></p>
<p>用两条腿走路的时候，明白自己在哪里，附近有什么；坐在车里，很多东西被挡住了，而且很多东西会变形，如果不在大脑里对这些东西进行还原，撞墙是迟早的事，也就无法发挥车的用处了。</p>
<p>&nbsp;</p>
<p><strong>15.尺有所短，寸有所长</strong></p>
<p>找车位的时间和发生擦碰的几率同时增大，带上小单车，停车范围一下就扩大了，想停哪停哪，下车骑上小单车一溜烟就可以走了。同时把各种工具综合运用，可以提高效率。</p>
<p>&nbsp;</p>
<p><strong>16.合同细则阅读要仔细，有疑问要提出，因为没有哪个卖家是&ldquo;全心全意为人民服务&rdquo;的</strong></p>
<p>不是买了保险就可以随心所欲的，也不是停在院子里的车被盗就能索赔的，陷阱处处有，中国特别多。</p>
<p>&nbsp;</p>
<p><strong>17.工具要努力让它产生效益，但也要爱惜工具</strong></p>
<p>任何物体都是有灵魂和尊严的，它帮你，你爱它，和谐！</p>
<p>&nbsp;</p>
<p>（未完待续）</p>
<p>&nbsp;</p>
<p style="margin-top: 0px; margin-right: 0px; margin-bottom: 0.7em; margin-left: 0px; line-height: 1.6; padding: 0px;"><strong><br />
 </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1029/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>监控宝对apache的监控以及遇到问题解决</title>
		<link>http://www.viisee.net/archives/1000</link>
		<comments>http://www.viisee.net/archives/1000#comments</comments>
		<pubDate>Fri, 10 Sep 2010 06:34:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[运维]]></category>

		<guid isPermaLink="false">http://www.viisee.net/?p=1000</guid>
		<description><![CDATA[<p>今天服务器又不间断访问慢，从监控宝的linux系统监控来看没有问题，网络访问有一些特别：电信特别慢，网通很正常。
 为了更好地排除问题，于是对apache也进行了监控，具体方法可以参见

1.apache开启server-status

<a href="http://wiki.jiankongbao.com/doku.php/%E6%96%87%E6%A1%A3:%E5%AE%89%E5%85%A8%E6%8C%87%E5%BC%95#apache_监控" target="_blank">原文地址</a>

2.监控宝控制台添加新的服务监控项 <a href="../../http:/.jiankongbao.com/?p=422" target="_blank">http:/.jiankongbao.com/?p=422</a>

我在监控宝的面板添加 http://域名/server-status 时，老是提示不是一个正确的url，开始以为这个&#8220;server-status &#8221;是一个目录，然后ftp上去一个目录也不行。

接下来检查apache的配置文件， 发现conf/extra下面有个httpd-info.conf，把httpd.conf里的那段配置移到这个文件里面来，重启apache，访问http://域名/server-status时，提示404错误，我汗。

google了很久，发现有篇文章说到了这个问题，大概是两种解决方法，一种是apache再监听一个8080端口，二是在指定虚拟主机时，不要用*:80，而要写明ip地址。我觉得在进行如此大的操作之前再自己看看自己有没有遗漏的地方，重新检查一下httpd.conf文件，发现里面有<strong>一行include /conf/extra/httpd-info.conf没有去掉注释</strong>。。。原来如此 粗心大意了。。。重启，搞定，监控宝提示已经正常开始监听了。

<!--more-->

google的那篇原文如下，如果还不能解决，这个可能是最后的救命稻草了：<a href="http://systembash.com/content/apache-mod_status-404/" target="_blank">http://systembash.com/content/apache-mod_status-404/</a></p><blockquote><div id="_mcePaste">Apache mod_status and page not found 404</div><div id="_mcePaste">Problem: Checking the [tag]apache[/tag] server status with the command &#8220;apachectl status&#8221;, &#8220;service httpd fullstatus&#8221; or by viewing http://server/server-status I get the message: &#8220;The requested URL /server-status was not found on this server&#8221; or your alternative 404 page not found error.</div><div id="_mcePaste">Answer: Assuming you have the module loaded and set up per the documentation of mod_status, this is this most likely a VirtualHost problem.</div><div id="_mcePaste">If you use NameVirtualHost *:80 directive, or any *:port, to run multiple name based virtual hosts, this configuration does not allow server-status on any of the publicly accessible addresses. This is because the first Virtual Host in the directive is considered the &#8220;Default Virtual Host&#8221;, any unknown entries on the NameVirtualHost space &#8211; in this example anything accessing port 80 on any IP address, will default go to this virtual host and hence you will get a 404 page not found error. Furthermore you can not place the server-status configuration inside of a VirtualHost directive to be read from a full domain name.</div><div id="_mcePaste">Solution: There are two basic ways to solve this. The first is to make the server listen on an alternative port (such as port 8080). Adding &#8220;Listen 8080&#8243; to the configuration will allow you to access the server status from http://yourip:8080/server-status.</div><div id="_mcePaste">The second will allow the command &#8216;apachectl status&#8217; or &#8216;service httpd fullstatus&#8217; to work properly but it will not allow external access. If you switch each * to the actual IP address to work from, then accessing from localhost (127.0.0.1) will work. So, you would need tochange:</div><div id="_mcePaste">NameVirtualHost *:80</div><div id="_mcePaste">to</div><div id="_mcePaste">NameVirtualHost 10.0.0.3:80</div><div id="_mcePaste">And then restart your server.</div><div id="_mcePaste">By that way, unless you need it, make sure to turn ExtendedStatus Off. This directive collects a lot of data from the site visitors and can slow down a busy server.</div><p>Apache mod_status and page not found 404Problem: Checking the [tag]apache[/tag] server status with the command &#8220;apachectl status&#8221;, &#8220;service httpd fullstatus&#8221; or by viewing http://server/server-status I get the message: &#8220;The requested URL /server-status was not found on this server&#8221; or your alternative 404 page not found error.
 Answer: Assuming you have the module loaded and set up per the documentation of mod_status, this is this most likely a VirtualHost problem.
 If you use NameVirtualHost *:80 directive, or any *:port, to run multiple name based virtual hosts, this configuration does not allow server-status on any of the publicly accessible addresses. This is because the first Virtual Host in the directive is considered the &#8220;Default Virtual Host&#8221;, any unknown entries on the NameVirtualHost space &#8211; in this example anything accessing port 80 on any IP address, will default go to this virtual host and hence you will get a 404 page not found error. Furthermore you can not place the server-status configuration inside of a VirtualHost directive to be read from a full domain name.
 Solution: There are two basic ways to solve this. The first is to make the server listen on an alternative port (such as port 8080). Adding &#8220;Listen 8080&#8243; to the configuration will allow you to access the server status from http://yourip:8080/server-status.
 The second will allow the command &#8216;apachectl status&#8217; or &#8216;service httpd fullstatus&#8217; to work properly but it will not allow external access. If you switch each * to the actual IP address to work from, then accessing from localhost (127.0.0.1) will work. So, you would need tochange:NameVirtualHost *:80
 toNameVirtualHost 10.0.0.3:80
 And then restart your server.
 By that way, unless you need it, make sure to turn ExtendedStatus Off. This directive collects a lot of data from the site visitors and can slow down a busy server.</p></blockquote>]]></description>
			<content:encoded><![CDATA[<p>今天服务器又不间断访问慢，从监控宝的linux系统监控来看没有问题，网络访问有一些特别：电信特别慢，网通很正常。<br />
 为了更好地排除问题，于是对apache也进行了监控，具体方法可以参见</p>
<p>1.apache开启server-status</p>
<p><a href="http://wiki.jiankongbao.com/doku.php/%E6%96%87%E6%A1%A3:%E5%AE%89%E5%85%A8%E6%8C%87%E5%BC%95#apache_监控" target="_blank">原文地址</a></p>
<p>2.监控宝控制台添加新的服务监控项 <a href="../../http:/.jiankongbao.com/?p=422" target="_blank">http:/.jiankongbao.com/?p=422</a></p>
<p>我在监控宝的面板添加 http://域名/server-status 时，老是提示不是一个正确的url，开始以为这个&ldquo;server-status &rdquo;是一个目录，然后ftp上去一个目录也不行。</p>
<p>接下来检查apache的配置文件， 发现conf/extra下面有个httpd-info.conf，把httpd.conf里的那段配置移到这个文件里面来，重启apache，访问http://域名/server-status时，提示404错误，我汗。</p>
<p>google了很久，发现有篇文章说到了这个问题，大概是两种解决方法，一种是apache再监听一个8080端口，二是在指定虚拟主机时，不要用*:80，而要写明ip地址。我觉得在进行如此大的操作之前再自己看看自己有没有遗漏的地方，重新检查一下httpd.conf文件，发现里面有<strong>一行include /conf/extra/httpd-info.conf没有去掉注释</strong>。。。原来如此 粗心大意了。。。重启，搞定，监控宝提示已经正常开始监听了。</p>
<p><span id="more-1000"></span></p>
<p>google的那篇原文如下，如果还不能解决，这个可能是最后的救命稻草了：<a href="http://systembash.com/content/apache-mod_status-404/" target="_blank">http://systembash.com/content/apache-mod_status-404/</a></p>
<blockquote><div id="_mcePaste">Apache mod_status and page not found 404</div>
<div id="_mcePaste">Problem: Checking the [tag]apache[/tag] server status with the command &ldquo;apachectl status&rdquo;, &ldquo;service httpd fullstatus&rdquo; or by viewing http://server/server-status I get the message: &ldquo;The requested URL /server-status was not found on this server&rdquo; or your alternative 404 page not found error.</div>
<div id="_mcePaste">Answer: Assuming you have the module loaded and set up per the documentation of mod_status, this is this most likely a VirtualHost problem.</div>
<div id="_mcePaste">If you use NameVirtualHost *:80 directive, or any *:port, to run multiple name based virtual hosts, this configuration does not allow server-status on any of the publicly accessible addresses. This is because the first Virtual Host in the directive is considered the &ldquo;Default Virtual Host&rdquo;, any unknown entries on the NameVirtualHost space &ndash; in this example anything accessing port 80 on any IP address, will default go to this virtual host and hence you will get a 404 page not found error. Furthermore you can not place the server-status configuration inside of a VirtualHost directive to be read from a full domain name.</div>
<div id="_mcePaste">Solution: There are two basic ways to solve this. The first is to make the server listen on an alternative port (such as port 8080). Adding &ldquo;Listen 8080&Prime; to the configuration will allow you to access the server status from http://yourip:8080/server-status.</div>
<div id="_mcePaste">The second will allow the command &lsquo;apachectl status&rsquo; or &lsquo;service httpd fullstatus&rsquo; to work properly but it will not allow external access. If you switch each * to the actual IP address to work from, then accessing from localhost (127.0.0.1) will work. So, you would need tochange:</div>
<div id="_mcePaste">NameVirtualHost *:80</div>
<div id="_mcePaste">to</div>
<div id="_mcePaste">NameVirtualHost 10.0.0.3:80</div>
<div id="_mcePaste">And then restart your server.</div>
<div id="_mcePaste">By that way, unless you need it, make sure to turn ExtendedStatus Off. This directive collects a lot of data from the site visitors and can slow down a busy server.</div>
<p>Apache mod_status and page not found 404Problem: Checking the [tag]apache[/tag] server status with the command &ldquo;apachectl status&rdquo;, &ldquo;service httpd fullstatus&rdquo; or by viewing http://server/server-status I get the message: &ldquo;The requested URL /server-status was not found on this server&rdquo; or your alternative 404 page not found error.<br />
 Answer: Assuming you have the module loaded and set up per the documentation of mod_status, this is this most likely a VirtualHost problem.<br />
 If you use NameVirtualHost *:80 directive, or any *:port, to run multiple name based virtual hosts, this configuration does not allow server-status on any of the publicly accessible addresses. This is because the first Virtual Host in the directive is considered the &ldquo;Default Virtual Host&rdquo;, any unknown entries on the NameVirtualHost space &ndash; in this example anything accessing port 80 on any IP address, will default go to this virtual host and hence you will get a 404 page not found error. Furthermore you can not place the server-status configuration inside of a VirtualHost directive to be read from a full domain name.<br />
 Solution: There are two basic ways to solve this. The first is to make the server listen on an alternative port (such as port 8080). Adding &ldquo;Listen 8080&Prime; to the configuration will allow you to access the server status from http://yourip:8080/server-status.<br />
 The second will allow the command &lsquo;apachectl status&rsquo; or &lsquo;service httpd fullstatus&rsquo; to work properly but it will not allow external access. If you switch each * to the actual IP address to work from, then accessing from localhost (127.0.0.1) will work. So, you would need tochange:NameVirtualHost *:80<br />
 toNameVirtualHost 10.0.0.3:80<br />
 And then restart your server.<br />
 By that way, unless you need it, make sure to turn ExtendedStatus Off. This directive collects a lot of data from the site visitors and can slow down a busy server.</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.viisee.net/archives/1000/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
