<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feed.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feed.feedsky.com/polaris" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feed.feedsky.com/polaris" type="application/rss+xml"></fs:self_link><lastBuildDate>Mon, 08 Feb 2010 13:27:28 GMT</lastBuildDate><title>polaris14551 | 摇光</title><description>未知的美麗！</description><link>http://14551.org</link><sy:updatePeriod>hourly</sy:updatePeriod><sy:updateFrequency>1</sy:updateFrequency><language>en</language><pubDate>Mon, 08 Feb 2010 13:27:28 GMT</pubDate><item><title>G3 使用超级终端</title><link>http://14551.org/2010/02/g3.html</link><content:encoded>&lt;p&gt;看着人家说打开G3的超级终端，找了几圈愣是没找到这软件，几翻搜索，刚开始是安装了Terminal Emulator，但始终打不开软键盘。后来发现了&lt;a href=&quot;http://android-scripting.googlecode.com/files/ase_r16.apk&quot;&gt;ASE&lt;/a&gt;这个东西，安装后即可正常运行，选择shell进入即可，还可以&lt;a href=&quot;http://www.pugwoo.com/2010/01/14/run-python-on-android.html&quot;&gt;安装Python解释器&lt;/a&gt;。&lt;br /&gt;
为什么要用超级终端，G3默认是将软件装在手机内部存储，并且没有选择，而我希望能将软件安装在SD卡上。&lt;br /&gt;
&lt;span id=&quot;more-2403&quot;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;具体方法如下：&lt;br /&gt;
1、重新格式化SD卡并分区，一区（500Mb）为&lt;strong&gt;EXT2&lt;/strong&gt;（网上有一文章说的是EXT3格式，但我尝试了发现G3不认）格式，用于安装软件。另一区为FAT32格式储存文件。由于我的是Ubuntu，借助系统自带的磁盘工具即可实现，Win下可使用Acronis Disk Director Suite软件。&lt;br /&gt;
2、引用自“&lt;a href=&quot;http://www.hiapk.com/bbs/viewthread.php?tid=701&quot;&gt;http://www.hiapk.com/bbs/viewthread.php?tid=701&lt;/a&gt;”&lt;br /&gt;
adb shell ls /system （查看一下system目錄下有無sd資料夾）&lt;br /&gt;
adb shell&lt;br /&gt;
su （获得root权限）&lt;br /&gt;
busybox df -h （如果你的卡成功分區的話。在這裡會看到 system/sd   前面的大小會是你分出來ext2的大小。如下圖第十一行。如果不是的話。那說明你的卡很可能分錯了。要重來。）&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/f237a290d7012d4a9df0144122bbd081.jpg&quot;&gt;&lt;img class=&quot;alignnone size-medium wp-image-2404&quot; title=&quot;f237a290d7012d4a9df0144122bbd081&quot; src=&quot;http://14551.org/wp-content/uploads/2010/02/f237a290d7012d4a9df0144122bbd081-300x108.jpg&quot; alt=&quot;&quot; width=&quot;300&quot; height=&quot;108&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
如圖:圖中為我機子的8g卡。留意第十一行 416.8M    11.0M    385.0M    3%   /system/sd&lt;br /&gt;
這是我卡中的一個416.8m的EXT2分區。如果你也有這一項。那你可以完成接下來的工作了。&lt;br /&gt;
&lt;span style=&quot;color: #ff0000;&quot;&gt;mkdir  /system/sd/app&lt;/span&gt; 紅色部份為app to sd&lt;br /&gt;
&lt;span style=&quot;color: #ff0000;&quot;&gt;cp -a /data/app /system/sd/&lt;/span&gt;&lt;br /&gt;
cp -a /data/app-private /system/sd/           緩存也放到sd會減慢系統速度。也不建議大家用。&lt;br /&gt;
cp -a /data/dalvik-cache /system/sd/         灰色部份。如果你不想把緩存也放到sd可以不用這幾個&lt;br /&gt;
cp -a /data/data /system/sd/&lt;br /&gt;
exit&lt;br /&gt;
exit&lt;/p&gt;
&lt;p&gt;﻿完成後，重啟手機并進入recovery mode 就是HOME + PROWER。然後ALT + X進入recovery terminal&lt;br /&gt;
按下手機鍵盤上的ENTER。然後在手機上輸入以下指令。&lt;br /&gt;
mount data&lt;br /&gt;
rm -rf /data/app&lt;br /&gt;
ln -s /system/sd/app /data/app&lt;br /&gt;
rm -rf /data/app-private&lt;br /&gt;
ln -s /system/sd/app-private /data/app-private       如果你之前跳過了把緩存放到sd卡請不要輸入。&lt;br /&gt;
rm -rf /data/data&lt;br /&gt;
ln -s /system/sd/data /data/data&lt;br /&gt;
rm -rf /data/dalvik-cache&lt;br /&gt;
ln -s /system/sd/dalvik-cache /data/dalvik-cache&lt;br /&gt;
reboot &lt;/p&gt;
&lt;p&gt;大功告成。 以後刷機。只要刷回apptosd版本只要重覆以上的adb 指令。裝在sd卡的app就能恢复。不用重裝了。&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;奇怪的现象，执行了第一步后重启G3，发现之前放在桌面上的快捷方式都废了，就尝试恢复了出厂设置。似乎，G3直接将SD卡中的EXT2分区作为软件的安装路径了。&lt;br /&gt;
暂时好像是这样的。&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/331041911/polaris/feedsky/s.gif?r=http://14551.org/2010/02/g3.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041911/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041911/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://14551.org/2010/02/g3.html/feed</wfw:commentRss><slash:comments>0</slash:comments><description>看着人家说打开G3的超级终端，找了几圈愣是没找到这软件，几翻搜索，刚开始是安装了Terminal Emulator，但始终打不开软键盘。后来发现了ASE这个东西，安装后即可正常运行，选择shell进入即可，还可以安装Python解释器。
为什么要用超级终端，G3默认是将软件装在手机内部存储，并且没有选择，而我希望能将软件安装在SD卡上。

具体方法如下：
1、重新格式化SD卡并分区，一区（500Mb）为EXT2（网上有一文章说的是EXT3格式，但我尝试了发现G3不认）格式，用于安装软件。另一区为FAT32格式储存文件。由于我的是Ubuntu，借助系统自带的磁盘工具即可实现，Win下可使用Acronis Disk Director Suite软件。
2、引用自“http://www.hiapk.com/bbs/viewthread.php?tid=701”
adb shell ls /system （查看一下system目錄下有無sd資料夾）
adb shell
su （获得root权限）
busybox df -h （如果你的卡成功分區的話。在這裡會看到 system/sd   前面的大小會是你分出來ext2的大小。如下圖第十一行。如果不是的話。那說明你的卡很可能分錯了。要重來。）

如圖:圖中為我機子的8g卡。留意第十一行 416.8M    11.0M    385.0M    3%   /system/sd
這是我卡中的一個416.8m的EXT2分區。如果你也有這一項。那你可以完成接下來的工作了。
mkdir  /system/sd/app 紅色部份為app to sd
cp -a /data/app /system/sd/
cp -a /data/app-private /system/sd/           [...]&lt;img src=&quot;http://www1.feedsky.com/t1/331041911/polaris/feedsky/s.gif?r=http://14551.org/2010/02/g3.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041911/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041911/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>收藏分享</category><category>G3</category><category>超级终端</category><pubDate>Mon, 08 Feb 2010 21:27:28 +0800</pubDate><author>摇光</author><comments>http://14551.org/2010/02/g3.html#comments</comments><guid isPermaLink="false">http://14551.org/?p=2403</guid><dc:creator>摇光</dc:creator><fs:srclink>http://14551.org/2010/02/g3.html</fs:srclink><fs:srcfeed>http://14551.org/feed/</fs:srcfeed><fs:itemid>feedsky/polaris/~7965751/331041911/5276921</fs:itemid></item><item><title>2010 0206 入手G3+真相</title><link>http://14551.org/2010/02/2010-0206-g3.html</link><content:encoded>&lt;p&gt;G3 台版一只（一充一电，一数据线，一耳机）+8G行卡一张+座充一个+电池一块+手机帖膜+手机膜套+1年保（原来保修还要另付费的）&lt;br /&gt;
总价 ￥3100.00 元整&lt;br /&gt;
至此，09年以悲剧结束。&lt;br /&gt;
希望10年有一个新的开始。&lt;br /&gt;
9号回家，JM说，你也太不念家了。&lt;br /&gt;
嗯，是，可是我不想离家太远。&lt;br /&gt;
就在这江南水乡，终吾一生。&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/G3_1.jpg&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/G3_1-300x225.jpg&quot; alt=&quot;&quot; title=&quot;G3_1&quot; width=&quot;300&quot; height=&quot;225&quot; class=&quot;alignnone size-medium wp-image-2398&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/G3_2.jpg&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/G3_2-300x225.jpg&quot; alt=&quot;&quot; title=&quot;G3_2&quot; width=&quot;300&quot; height=&quot;225&quot; class=&quot;alignnone size-medium wp-image-2397&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/G3_3.jpg&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/G3_3-300x225.jpg&quot; alt=&quot;&quot; title=&quot;G3_3&quot; width=&quot;300&quot; height=&quot;225&quot; class=&quot;alignnone size-medium wp-image-2396&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;特别要跟Amanda说“Sorry”，把你的机票花掉了:(&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/331041918/polaris/feedsky/s.gif?r=http://14551.org/2010/02/2010-0206-g3.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041918/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041918/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://14551.org/2010/02/2010-0206-g3.html/feed</wfw:commentRss><slash:comments>9</slash:comments><description>G3 台版一只（一充一电，一数据线，一耳机）+8G行卡一张+座充一个+电池一块+手机帖膜+手机膜套+1年保（原来保修还要另付费的）
总价 ￥3100.00 元整
至此，09年以悲剧结束。
希望10年有一个新的开始。
9号回家，JM说，你也太不念家了。
嗯，是，可是我不想离家太远。
就在这江南水乡，终吾一生。



特别要跟Amanda说“Sorry”，把你的机票花掉了:(&lt;img src=&quot;http://www1.feedsky.com/t1/331041918/polaris/feedsky/s.gif?r=http://14551.org/2010/02/2010-0206-g3.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041918/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041918/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>生活记事</category><category>Amanda</category><category>G3</category><pubDate>Sun, 07 Feb 2010 17:59:00 +0800</pubDate><author>摇光</author><comments>http://14551.org/2010/02/2010-0206-g3.html#comments</comments><guid isPermaLink="false">http://14551.org/?p=2394</guid><dc:creator>摇光</dc:creator><fs:srclink>http://14551.org/2010/02/2010-0206-g3.html</fs:srclink><fs:srcfeed>http://14551.org/feed/</fs:srcfeed><fs:itemid>feedsky/polaris/~7965751/331041918/5276921</fs:itemid></item><item><title>中国的新浪网很下贱</title><link>http://14551.org/2010/02/sina-in-china.html</link><content:encoded>&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt;&lt;br /&gt;
在更新这篇日志的时候，我在想，这会不会导致到以后发简历到新浪直接拒收&amp;#8230;&lt;br /&gt;
看了新浪微博的反应，嗯，很强大。&lt;br /&gt;
1、最初是绑定的博客向&lt;a href=&quot;http://t.sina.com.cn/polaris14551&quot;&gt;新浪微博&lt;/a&gt;导入了一条 “中国的新浪网很下贱”的日志，被删。&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_006.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_006-300x49.png&quot; alt=&quot;&quot; title=&quot;20100204_006&quot; width=&quot;300&quot; height=&quot;49&quot; class=&quot;alignnone size-medium wp-image-2392&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
2、接着发表微博，“原来不能说一般网站上不能说的之外，还不能说新浪坏话”，2分钟后，被删。&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_007.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_007-300x49.png&quot; alt=&quot;&quot; title=&quot;20100204_007&quot; width=&quot;300&quot; height=&quot;49&quot; class=&quot;alignnone size-medium wp-image-2391&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8211;新浪很强大分割线&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8211;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;商人 唯利益先，无可厚非。&lt;br /&gt;
新浪作为中国首屈一指的门户网站，还是希望能为社会多营造公平积极向上的氛围，多一份社会责任感，中国多一丝希望。&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;贱后低俗也是正常之事。&lt;/p&gt;
&lt;p&gt;从低俗起说，下图是我目前在&lt;a href=&quot;http://blog.sina.com.cn/u/1457020921&quot;&gt;新浪博客&lt;/a&gt;访客记录（为了更好的比较，下面还有我在&lt;a href=&quot;http://secondtwo.blog.163.com/&quot;&gt;网易博客&lt;/a&gt;的访客记录）：&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_003.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_003.png&quot; alt=&quot;&quot; title=&quot;20100204_003&quot; width=&quot;210&quot; height=&quot;476&quot; class=&quot;alignnone size-full wp-image-2382&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
新浪如何能不低俗？！&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_005.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_005-300x158.png&quot; alt=&quot;&quot; title=&quot;20100204_005&quot; width=&quot;300&quot; height=&quot;158&quot; class=&quot;alignnone size-medium wp-image-2385&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;span id=&quot;more-2381&quot;&gt;&lt;/span&gt;&lt;br /&gt;
说下贱，搬家，说白了就是采集，想当初为了赚取AdSense，多少站长想方设法为自己弄数据，最常见的就是采集了，定时批量全自动的搬迁其它站点的资料到自己的网站上，放上广告代码，做SEO，做推广，增流量，放弹窗，植病毒&amp;#8230;&lt;/p&gt;
&lt;p&gt;我一直认为，工具无好坏之分，问题在于操纵的人。&lt;/p&gt;
&lt;p&gt;新浪在博客大巴陷入困境之时，推出搬家工具，美其名曰“想保证博客的稳定与信息安全吗？快来，一键备份博客大巴文章到新浪博客！请点击进入”。&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/30ecd5efefbe8d04adafd54f.jpg&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/30ecd5efefbe8d04adafd54f-300x30.jpg&quot; alt=&quot;&quot; title=&quot;30ecd5efefbe8d04adafd54f&quot; width=&quot;300&quot; height=&quot;30&quot; class=&quot;alignnone size-medium wp-image-2386&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;新浪就是新浪，做事细致周到。不仅在博客上发日志告知搬家事宜，更会给好友发送短消息通知。&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_001.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_001-300x218.png&quot; alt=&quot;&quot; title=&quot;20100204_001&quot; width=&quot;300&quot; height=&quot;218&quot; class=&quot;alignnone size-medium wp-image-2384&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_002.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/20100204_002-300x93.png&quot; alt=&quot;&quot; title=&quot;20100204_002&quot; width=&quot;300&quot; height=&quot;93&quot; class=&quot;alignnone size-medium wp-image-2383&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;相关链接：&lt;br /&gt;
百科&lt;a href=&quot;http://baike.baidu.com/view/3224324.htm&quot;&gt;新浪搬家&lt;/a&gt;（年底会上某榜单吧。）&lt;br /&gt;
推特上的&lt;a href=&quot;http://twitter.com/search?q=%23antisina&quot;&gt;Antisina&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/331041922/polaris/feedsky/s.gif?r=http://14551.org/2010/02/sina-in-china.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041922/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041922/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://14551.org/2010/02/sina-in-china.html/feed</wfw:commentRss><slash:comments>9</slash:comments><description>Update:
在更新这篇日志的时候，我在想，这会不会导致到以后发简历到新浪直接拒收&amp;#8230;
看了新浪微博的反应，嗯，很强大。
1、最初是绑定的博客向新浪微博导入了一条 “中国的新浪网很下贱”的日志，被删。

2、接着发表微博，“原来不能说一般网站上不能说的之外，还不能说新浪坏话”，2分钟后，被删。

&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8211;新浪很强大分割线&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8212;&amp;#8211;
商人 唯利益先，无可厚非。
新浪作为中国首屈一指的门户网站，还是希望能为社会多营造公平积极向上的氛围，多一份社会责任感，中国多一丝希望。
贱后低俗也是正常之事。
从低俗起说，下图是我目前在新浪博客访客记录（为了更好的比较，下面还有我在网易博客的访客记录）：

新浪如何能不低俗？！


说下贱，搬家，说白了就是采集，想当初为了赚取AdSense，多少站长想方设法为自己弄数据，最常见的就是采集了，定时批量全自动的搬迁其它站点的资料到自己的网站上，放上广告代码，做SEO，做推广，增流量，放弹窗，植病毒&amp;#8230;
我一直认为，工具无好坏之分，问题在于操纵的人。
新浪在博客大巴陷入困境之时，推出搬家工具，美其名曰“想保证博客的稳定与信息安全吗？快来，一键备份博客大巴文章到新浪博客！请点击进入”。

新浪就是新浪，做事细致周到。不仅在博客上发日志告知搬家事宜，更会给好友发送短消息通知。


相关链接：
百科新浪搬家（年底会上某榜单吧。）
推特上的Antisina&lt;img src=&quot;http://www1.feedsky.com/t1/331041922/polaris/feedsky/s.gif?r=http://14551.org/2010/02/sina-in-china.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041922/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041922/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>sina</category><category>不明白</category><category>BlogBus</category><pubDate>Thu, 04 Feb 2010 13:24:16 +0800</pubDate><author>摇光</author><comments>http://14551.org/2010/02/sina-in-china.html#comments</comments><guid isPermaLink="false">http://14551.org/?p=2381</guid><dc:creator>摇光</dc:creator><fs:srclink>http://14551.org/2010/02/sina-in-china.html</fs:srclink><fs:srcfeed>http://14551.org/feed/</fs:srcfeed><fs:itemid>feedsky/polaris/~7965751/331041922/5276921</fs:itemid></item><item><title>2010-02-03 关于苹果</title><link>http://14551.org/2010/02/2010-02-03-about-apple.html</link><content:encoded>&lt;blockquote&gt;&lt;p&gt;&amp;#8212;苹果公司起诉了一名技术员，因为他试图拆开苹果的产品。&lt;br /&gt;
&amp;#8212;苹果公司起诉了一家IT公司，因为它们为用户提供苹果产品的越狱服务。&lt;br /&gt;
&amp;#8212; 苹果公司起诉了一个软件平台，因为上面的苹果小软件并未获得苹果认证。&lt;br /&gt;
&amp;#8212;苹果公司发布了自己的网页标准，不符合这一标准的网站，将无法被苹果产品正常访问。&lt;br /&gt;
&amp;#8212;苹果公司发布了自己的硬件标准，不符合这一标准的制造商，将会失去90%的苹果客户。&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;来源：&lt;a href=&quot;http://www.caobian.info/?p=7451&quot;&gt;http://www.caobian.info/?p=7451&lt;/a&gt;&lt;br /&gt;
&lt;span id=&quot;more-2379&quot;&gt;&lt;/span&gt;&lt;br /&gt;
新增了一个分类“天知道”，天知道？谁知道？或者，每天知道多一点，Everyday konw a little more。&lt;br /&gt;
原来如此。或许也不是如此。&lt;/p&gt;
&lt;p&gt;真亦假时假亦真，人类的真谛。&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/331041928/polaris/feedsky/s.gif?r=http://14551.org/2010/02/2010-02-03-about-apple.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041928/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041928/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://14551.org/2010/02/2010-02-03-about-apple.html/feed</wfw:commentRss><slash:comments>1</slash:comments><description>&amp;#8212;苹果公司起诉了一名技术员，因为他试图拆开苹果的产品。
&amp;#8212;苹果公司起诉了一家IT公司，因为它们为用户提供苹果产品的越狱服务。
&amp;#8212; 苹果公司起诉了一个软件平台，因为上面的苹果小软件并未获得苹果认证。
&amp;#8212;苹果公司发布了自己的网页标准，不符合这一标准的网站，将无法被苹果产品正常访问。
&amp;#8212;苹果公司发布了自己的硬件标准，不符合这一标准的制造商，将会失去90%的苹果客户。
来源：http://www.caobian.info/?p=7451

新增了一个分类“天知道”，天知道？谁知道？或者，每天知道多一点，Everyday konw a little more。
原来如此。或许也不是如此。
真亦假时假亦真，人类的真谛。&lt;img src=&quot;http://www1.feedsky.com/t1/331041928/polaris/feedsky/s.gif?r=http://14551.org/2010/02/2010-02-03-about-apple.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041928/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041928/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>天知道</category><category>Apple</category><pubDate>Wed, 03 Feb 2010 17:02:10 +0800</pubDate><author>摇光</author><comments>http://14551.org/2010/02/2010-02-03-about-apple.html#comments</comments><guid isPermaLink="false">http://14551.org/?p=2379</guid><dc:creator>摇光</dc:creator><fs:srclink>http://14551.org/2010/02/2010-02-03-about-apple.html</fs:srclink><fs:srcfeed>http://14551.org/feed/</fs:srcfeed><fs:itemid>feedsky/polaris/~7965751/331041928/5276921</fs:itemid></item><item><title>IE6，走好</title><link>http://14551.org/2010/02/goodbye-ie6.html</link><content:encoded>&lt;p&gt;早上看到Google APP发过来的邮件，为了美好的将来，决定淘汰Microsoft Internet Explorer 6.0。不过还是看看IE6的大户们，引用一下，&lt;a href=&quot;http://www.3736.net&quot;&gt;起落&lt;/a&gt;访问统计，92.38%访问者是使用的IE浏览器，其中 65.96%还是用的IE6。&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/20100203_002.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/20100203_002-300x100.png&quot; alt=&quot;&quot; title=&quot;20100203_002&quot; width=&quot;300&quot; height=&quot;100&quot; class=&quot;alignnone size-medium wp-image-2372&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/02/20100203_003.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/02/20100203_003-300x98.png&quot; alt=&quot;&quot; title=&quot;20100203_003&quot; width=&quot;300&quot; height=&quot;98&quot; class=&quot;alignnone size-medium wp-image-2371&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/331041932/polaris/feedsky/s.gif?r=http://14551.org/2010/02/goodbye-ie6.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041932/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041932/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://14551.org/2010/02/goodbye-ie6.html/feed</wfw:commentRss><slash:comments>2</slash:comments><description>早上看到Google APP发过来的邮件，为了美好的将来，决定淘汰Microsoft Internet Explorer 6.0。不过还是看看IE6的大户们，引用一下，起落访问统计，92.38%访问者是使用的IE浏览器，其中 65.96%还是用的IE6。&lt;img src=&quot;http://www1.feedsky.com/t1/331041932/polaris/feedsky/s.gif?r=http://14551.org/2010/02/goodbye-ie6.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041932/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041932/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>山起山落</category><category>ie6</category><category>不明白</category><category>google</category><pubDate>Wed, 03 Feb 2010 11:20:19 +0800</pubDate><author>摇光</author><comments>http://14551.org/2010/02/goodbye-ie6.html#comments</comments><guid isPermaLink="false">http://14551.org/?p=2370</guid><dc:creator>摇光</dc:creator><fs:srclink>http://14551.org/2010/02/goodbye-ie6.html</fs:srclink><fs:srcfeed>http://14551.org/feed/</fs:srcfeed><fs:itemid>feedsky/polaris/~7965751/331041932/5276921</fs:itemid></item><item><title>2010初 上海到桐庐的长途汽车时刻表</title><link>http://14551.org/2010/01/2010-sh-tl.html</link><content:encoded>&lt;p&gt;不知道&lt;a href=&quot;http://www.zxjt.sh.cn/&quot;&gt;上海长途客运总站&lt;/a&gt;的网站是花了多少钱制作的，居然不能查询，ASP的。咨询电话也打不通。&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/01/20100129_002.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/01/20100129_002-300x58.png&quot; alt=&quot;&quot; title=&quot;20100129_002&quot; width=&quot;300&quot; height=&quot;58&quot; class=&quot;alignnone size-medium wp-image-2367&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
查询结果来自：&lt;a href=&quot;http://www.ctnz.net/&quot;&gt;http://www.ctnz.net/&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/01/20100129_001.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/01/20100129_001-300x85.png&quot; alt=&quot;&quot; title=&quot;20100129_001&quot; width=&quot;300&quot; height=&quot;85&quot; class=&quot;alignnone size-medium wp-image-2368&quot; /&gt;&lt;/a&gt;&lt;br /&gt;
查询结果来自：&lt;a href=&quot;http://www.piaojia.cn/changtu/&quot;&gt;http://www.piaojia.cn/changtu/&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/331041935/polaris/feedsky/s.gif?r=http://14551.org/2010/01/2010-sh-tl.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041935/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041935/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://14551.org/2010/01/2010-sh-tl.html/feed</wfw:commentRss><slash:comments>2</slash:comments><description>不知道上海长途客运总站的网站是花了多少钱制作的，居然不能查询，ASP的。咨询电话也打不通。

查询结果来自：http://www.ctnz.net/

查询结果来自：http://www.piaojia.cn/changtu/&lt;img src=&quot;http://www1.feedsky.com/t1/331041935/polaris/feedsky/s.gif?r=http://14551.org/2010/01/2010-sh-tl.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041935/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041935/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>收藏分享</category><category>桐庐</category><pubDate>Fri, 29 Jan 2010 11:04:32 +0800</pubDate><author>摇光</author><comments>http://14551.org/2010/01/2010-sh-tl.html#comments</comments><guid isPermaLink="false">http://14551.org/?p=2366</guid><dc:creator>摇光</dc:creator><fs:srclink>http://14551.org/2010/01/2010-sh-tl.html</fs:srclink><fs:srcfeed>http://14551.org/feed/</fs:srcfeed><fs:itemid>feedsky/polaris/~7965751/331041935/5276921</fs:itemid></item><item><title>VirtualBox 共享文件夹设置</title><link>http://14551.org/2010/01/virtualbox-share-folders.html</link><content:encoded>&lt;p&gt;本文环境：Ubuntu 9.10，VirtualBox 3.1.2 +Win2003&lt;br /&gt;
1、安装工具包VBoxGuestAdditions.iso（设备&amp;#8211;安装增强功能）&lt;br /&gt;
2、添加固定数据空间（共享的文件夹）。&lt;br /&gt;
3、打开虚拟机Win2003，添加“映射网络驱动器”&lt;br /&gt;
&lt;a href=&quot;http://14551.org/wp-content/uploads/2010/01/20100128_008.png&quot;&gt;&lt;img src=&quot;http://14551.org/wp-content/uploads/2010/01/20100128_008-291x300.png&quot; alt=&quot;&quot; title=&quot;20100128_008&quot; width=&quot;291&quot; height=&quot;300&quot; class=&quot;alignnone size-medium wp-image-2364&quot; /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;详细教程：&lt;a href=&quot;http://www.ludou.org/virtualbox-sharedfolder.html&quot;&gt;http://www.ludou.org/virtualbox-sharedfolder.html&lt;/a&gt;&lt;/p&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/331041940/polaris/feedsky/s.gif?r=http://14551.org/2010/01/virtualbox-share-folders.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041940/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041940/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</content:encoded><wfw:commentRss>http://14551.org/2010/01/virtualbox-share-folders.html/feed</wfw:commentRss><slash:comments>1</slash:comments><description>本文环境：Ubuntu 9.10，VirtualBox 3.1.2 +Win2003
1、安装工具包VBoxGuestAdditions.iso（设备&amp;#8211;安装增强功能）
2、添加固定数据空间（共享的文件夹）。
3、打开虚拟机Win2003，添加“映射网络驱动器”

详细教程：http://www.ludou.org/virtualbox-sharedfolder.html&lt;img src=&quot;http://www1.feedsky.com/t1/331041940/polaris/feedsky/s.gif?r=http://14551.org/2010/01/virtualbox-share-folders.html&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/feedsky/polaris/331041940/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/feedsky/polaris/331041940/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><category>Ubuntu</category><category>收藏分享</category><category>virtualbox</category><pubDate>Thu, 28 Jan 2010 20:10:21 +0800</pubDate><author>摇光</author><comments>http://14551.org/2010/01/virtualbox-share-folders.html#comments</comments><guid isPermaLink="false">http://14551.org/?p=2363</guid><dc:creator>摇光</dc:creator><fs:srclink>http://14551.org/2010/01/virtualbox-share-folders.html</fs:srclink><fs:srcfeed>http://14551.org/feed/</fs:srcfeed><fs:itemid>feedsky/polaris/~7965751/331041940/5276921</fs:itemid></item></channel></rss>