Gang Zhou杂记
百度空间 | 百度首页 
 
关于我
 

循规蹈矩,骨子里却很不安分.喜欢美好的事物,希望有一颗安静恬淡的心灵.
至今一事无成.
不是技术狂人,也不是什么高手,请不要把一些东西强加给我."我愿意用自己享受的一切高科技,换取与苏格拉底共度一个下午的机会."
只爱我的友人,而我的敬佩是不值钱的,这世界上让我敬佩的人和事实在多如牛毛.
一切为了自己和身边的人的幸福,至于其他的东西,对我来说没有意

我会用一个小时向你解释我是一个多么不爱说话的人

  抓虾google readerQQ邮箱鲜果哪吒

   
 
文章列表
 
2009年11月20日 星期五 17:17
转自http://zsp.javaeye.com/blog/518937
本来做一个勤勤恳恳的码农我应该学习格里戈里·佩雷尔曼前辈的作风 --- "佩雷尔曼反复说他已经退出了数学界,不再认为自己是职业数学家了。"

不过鉴于Gtalk跳出很多朋友 -- 写PHP的和写Java的 -- 很高兴的告诉我伟大的CSDN上出现了一条新闻:
[独家]Google将限制Python语言的应用 开发社区热议 http://news.csdn.net/a/20091116/214803.html

大家还是先去看看原帖 http://groups.google.com/group/unladen-swallow/browse_thread/thread/4edbc406f544643e

原帖在Unladen Swallow的论坛上。Unladen Swallow是Python的一个分支,由Google的一组开发人员组成。

我来翻译一小段:

kgn
I'm told that Google employees are being discouraged from using Python for new projects,
which seems silly given how much Python code and Python support comes out of Google.
I've hunted for more information but haven't found any.
Do you know any details, or is this just a rumor?

我听说Google不鼓励员工在新项目中用Python。
Google把如此多是Python代码和Python支持挪走听起来很傻。
我想再八卦一下,可惜没找到什么爆料。
你了解更多细节吗,又或者只是谣传。


Collin Winter

Well, simple common sense is going to limit Python's applicability when operating at Google's scale:
     it's not as fast as Java or C++, threading sucks, memory usage is higher, etc.
One of the design constraints we face when designing any new system is,
"
what happens when the load goes up by 10x or 100x?
What happens if the whole planet thinks your new service is awesome?
"
Any technology that makes satisfying that constraint harder -- and I think Python falls into this category -- *should* be discouraged if it doesn't have a very strong case made in its favor on other merits.

You have to balance Python's strengths with its weaknesses:
    your engineers may be more productive using Python,
    but if they have to work around more platform-level performance/scaling limitations as volume increases, do you come out ahead?
    etc.

恩,显而易见,一些缺陷将限制Google在做大规模时使用Python:

    没Java或是C++那么快,糟糕的线程,高的内存占用,等等。

我们开始设计任何一个新系统时,我们需要面对的问题是:

    当负载增加了10倍或者100倍系统会怎样?

    当全世界都赞叹你的新应用令人难忘时会怎么样?

在这样有高难度的挑战面前,什么技术都很难让人满意 -- 并且,我认为Python也是属于这类 -- 如果没有什么特别的应用场景,在其他方面使其将功赎罪的话,"应该"不被鼓励使用。

你需要权衡Python的优缺点:
   
    你的工程师用Python生产力会更高。

    但是,随着压力膨胀,当你不得不去面对更多平台级别的性能/可扩展性时,你能领先(问题)一步吗?
  
    等等

--------------------------------------------------------------------

点评:

到此为止,大家可以看到,其实这两人就是在随便扯扯 -- 大意就是,Python不是万能,一切都是要权衡的 -- 与那标题党的标题基本没有什么关系 。

这简直就是废话 -- 从来没有一个 Pythoner 认为 Python 是万能的 -- Python是我们伟大的胶水 -- 倒是有很多Cpper和Javaer认为自己的神是万能的。

--------------------------------------------------------------------

接着看下面的邮件,CSDN的编辑不懂Python,没搞懂Cython是什么,把它和CPython混淆了。

CPython是python的官方解释器。

Cython是用类似Python语法,给Python写C扩展的方式。

    Cython is a language that makes writing C extensions for the Python language as easy as Python itself. Cython is based on the well-known Pyrex, but supports more cutting edge functionality and optimizations.

    Cython是一种语言,让用C给Python写扩展和写Python一样容易。Cython从广为人知的Pyrex的基础上发展起来,但有更多的转换函数和优化。


事实上,Python+Cython是一种很爽的组合方式,如同 Tom Machinski 所说

"""
Specifically, if an engineer wishes to pursue a performance-intensive
project in Python, why not tell him to use Cython (or Python with some
C extensions) rather than force him to a completely different language
like Java or C++.

An engineer who picks Python as his first choice is probably familiar
enough with the language to utilize Cython / C-extension effectively,
and would probably rather do that than use any of those completely
different languages. As a bonus, Google gets a tool that's probably
easier to maintain than your common C++ codebase.

确切地说,如果一个工程师希望在Python的项目中追求性能,为什么不告诉他如何使用Cython(或蟒蛇和一些C扩展),而不是强迫他一个完全不同的语言:如Java或C + +。
  
一个Pythoner的程序员,不难熟悉运用Cython / C扩展来追求效率。而且这样做或许会比用其他完全不同的语言更合适。

同时,Google也能得到一个比C++代码库更容易维护工具。
"""

当然,一般而言,普通代码用Cython优化没什么明显效果,用它封装一些瓶颈的函数就可以了 -- 更多时候是用来把C库变成Python的库 。
庄子逍遥游有云:

    且夫水之积也不厚,则其负大舟也无力。
   
    覆杯水于坳堂之上,则芥为之舟;
   
    置杯焉则胶,水浅而舟大也。
   
    风之积也不厚,则其负大翼也无力。
   
    故九万里则风斯在下矣,
   
    而后乃今培风;背负青天而莫之夭阏者,而后乃今将图南。

有资格去设计这么大应用的时候再去指手画脚吧,Python写网站抗个日PV几KW还是很小case的。

Google怎么做,只是用来吹牛的聊资罢了,何况Python之父还在Google呢。
 
2009年11月12日 星期四 18:28

www.earthbrowser.com

今日长沙不断降雨,我就寻找了关于云层和降雨方面的软件寻找到EarthBrowser 3.2.1,它是基于adobe AIR技术开发3D气象软件

EarthBrowser有点类似于Google Earth,是一款非常出色的地理软件,通过它,你可以了解关于地震通知、天气情况和云层的分布情况。软件将以卫星云图为蓝本,你可以查看到不同地区的各种地理和气象信息。

软件允许你随时调整、旋转、放大/缩小地球视图,通过该软件中的“地球仪”可以查看到世界上知名城市(共计800多个)的天气、云层分布情况。这些卫星云图是实时更新的,大约一小时就会有一次更新,所以你看到的肯定是实时的数据。软件还支持显示地球地震信息,不但震级和地震区域都会显示出来,你甚至可以连接到该地区相关的网站,了解更详尽的内容,非常方便。EarthBrowser 可以显示昼夜变化的情况,你可以根据地球仪上显示的结果,来判定该地区是黑夜还是白昼。当然,该软件的图像分辨率没有Google Earth这么高,如果你想通过它来查看全球风光的话,还是放弃吧。

注意,该软件需要 Adobe AIR 平台支持,请先安装 Adobe AIR 平台,否则不能运行该软件

EarthBrowser操作系统要求:

  • 操作系统: Win2000/XP


你可以实时查询各地的天气状况(预报)、地震通知、云层分布情形、各地 webcam 拍摄到的图片等等。它可以让你从任何角度观看地球,可以任意旋转、放大缩小各个区域,还有地球的日夜变化也可以清楚地看到喔。EarthBrowser 的详细功能特点:

国际空间站运行位置 气象卫星……
 
2009年11月10日 星期二 14:08
德国举行的Tech·Ed 2009大会上,微软商业软件部门总裁Stephen Elop正式发布了新一代企业电子邮件服务软件“Exchange Server 2010”(版本号14.00.0639.021),以及配套的企业安全软件“Forefront Protection 2010 for Exchange Server”(版本号11.0.0677.0)。

微软称,Exchange Server 2010可让IT专业人士感到更加可靠、灵活,使用户的体验更加良好,并且可以增强对业务通信的保护。

灵活可靠 - 根据自己公司的独特需求灵活地进行部署,并通过一种简化方式帮助用户不间断地使用电子邮件。

从任意位置访问 - 用户可以从几乎所有平台、Web浏览器或设备安全自如地使用其所有通信工具(电子邮件、语音邮件、即时消息等等),从而完成更多工作。

保护和合规性 - 提供了集成的防信息丢失功能和合规工具,旨在帮助简化保护公司通信和符合法规要求的过程。

系统要求:

操作系统:Windows 7/Server 2008 R2/Vista/Server 2008

系统组件:.NET Framework 3.5、PowerShell 2.0

硬件:x64 64位Intel/AMD处理器;每服务器4GB内存

微软表示,Bank of America Corp.、Carnival Cruise Line、Global Crossing、Lifetime Products、Morgan Keegan & Co. Inc.、NEC Philips、Subaru Canada Inc.、Telekom Austria Group等客户都已经开始在部署Exchange Server 2010,且对新服务器反馈了积极结果。

Exchange Server 2010 120天试用版下载:
http://download.microsoft.com/download/D/7/B/D7BF31B6-577F-4CD3-905A-7180427F362B/Exchange2010-x64.exe



Forefront Protection 2010 for Exchange Server(FPE)通过在一个解决方案中集成来自业界领先的安全软件合作伙伴的多个扫描引擎,提供快速且有效的保护,以防范病毒、蠕虫、间谍软件和垃圾邮件。它具备全面的信息保护功能,包括与Forefront Online Protection for Exchange集成,从而可提供深度防御安全并能筛选出不符合政策规定的内容。通过与Exchange Server及核心的微软基础结构技术的集成,可提供针对Exchange环境优化的、可轻松定制的高性能防病毒和反垃圾邮件功能。

Forefront Protection 2010 for Exchange Server下载:
http://download.microsoft.com/download/D/0/6/D066488B-A945-4E41-A659-89FB4A29FC3C/forefrontexchangesetup.exe

Forefront Online Protection for Exchange下载:
http://download.microsoft.com/download/D/0/6/D066488B-A945-4E41-A659-89FB4A29FC3C/forefrontonline_setup.exe

注意:Exchange Server 2010和Forefront Protection 2010 for Exchange Server仅支持x64 64位系统,而不支持x86 32位系统。

 
2009年11月05日 星期四 17:14
#Archive.ubuntu.com更新服务器(欧洲,此为官方源,电信网通用户使用):

deb http://archive.ubuntu.com/ubuntu/ jaunty main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ jaunty-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ jaunty-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ jaunty-proposed main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu/ jaunty-backports main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ jaunty main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ jaunty-security main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ jaunty-updates main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ jaunty-proposed main restricted universe multiverse
deb-src http://archive.ubuntu.com/ubuntu/ jaunty-backports main restricted universe multiverse

#网易163更新服务器:

deb http://mirrors.163.com/ubuntu/ jaunty main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ jaunty-security main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ jaunty-updates main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ jaunty-proposed main restricted universe multiverse
deb http://mirrors.163.com/ubuntu/ jaunty-backports main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jaunty main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jaunty-security main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jaunty-updates main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jaunty-proposed main restricted universe multiverse
deb-src http://mirrors.163.com/ubuntu/ jaunty-backports main restricted universe multiverse


#Mirrors.shlug.org更新服务器(电信服务器,Ubuntu China Official Mirror, maintained by Shanghai Linux User Group):

deb http://cn.archive.ubuntu.com/ubuntu jaunty main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiverse
deb http://cn.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu jaunty main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiverse
deb-src http://cn.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse


#Mirror.lupaworld.com更新服务器(浙江省杭州市双线服务器,推荐):

deb http://mirror.lupaworld.com/ubuntu jaunty main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu jaunty-security main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu jaunty-updates main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu jaunty-backports main restricted universe multiverse
deb http://mirror.lupaworld.com/ubuntu jaunty-proposed main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu jaunty main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu jaunty-security main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu jaunty-updates main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu jaunty-backports main restricted universe multiverse
deb-src http://mirror.lupaworld.com/ubuntu jaunty-proposed main restricted universe multiverse


#厦门大学更新服务器(教育网服务器):

deb ftp://ubuntu.realss.cn/ubuntu/ jaunty main restricted universe multiverse
deb ftp://ubuntu.realss.cn/ubuntu/ jaunty-backports restricted universe multiverse
deb ftp://ubuntu.realss.cn/ubuntu/ jaunty-proposed main restricted universe multiverse
deb ftp://ubuntu.realss.cn/ubuntu/ jaunty-security main restricted universe multiverse
deb ftp://ubuntu.realss.cn/ubuntu/ jaunty-updates main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ jaunty main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ jaunty-backports main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ jaunty-proposed main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ jaunty-security main restricted universe multiverse
deb-src ftp://ubuntu.realss.cn/ubuntu/ jaunty-updates main restricted universe multiverse


#成都市 电子科技大学更新服务器(教育网,推荐校园网和网通用户使用):

deb http://ubuntu.uestc.edu.cn/ubuntu/ jaunty main multiverse restricted universe
deb http://ubuntu.uestc.edu.cn/ubuntu/ jaunty-backports main multiverse restricted universe
deb http://ubuntu.uestc.edu.cn/ubuntu/ jaunty-proposed main multiverse restricted universe
deb http://ubuntu.uestc.edu.cn/ubuntu/ jaunty-security main multiverse restricted universe
deb http://ubuntu.uestc.edu.cn/ubuntu/ jaunty-updates main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ jaunty main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ jaunty-backports main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ jaunty-proposed main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ jaunty-security main multiverse restricted universe
deb-src http://ubuntu.uestc.edu.cn/ubuntu/ jaunty-updates main multiverse restricted universe

== 如果无法解析uestc.edu.cn域名,请使用以下地址 ==

deb http://ubuntu.dormforce.net/ubuntu/ jaunty main multiverse restricted universe
deb http://ubuntu.dormforce.net/ubuntu/ jaunty-backports main multiverse restricted universe
deb http://ubuntu.dormforce.net/ubuntu/ jaunty-proposed main multiverse restricted universe
deb http://ubuntu.dormforce.net/ubuntu/ jaunty-security main multiverse restricted universe
deb http://ubuntu.dormforce.net/ubuntu/ jaunty-updates main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ jaunty main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ jaunty-backports main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ jaunty-proposed main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ jaunty-security main multiverse restricted universe
deb-src http://ubuntu.dormforce.net/ubuntu/ jaunty-updates main multiverse restricted universe


#上海市上海交通大学更新服务器(教育网,推荐校园网和网通用户使用):

deb http://ftp.sjtu.edu.cn/ubuntu/ jaunty main multiverse restricted universe
deb http://ftp.sjtu.edu.cn/ubuntu/ jaunty-backports main multiverse restricted universe
deb http://ftp.sjtu.edu.cn/ubuntu/ jaunty-proposed main multiverse restricted universe
deb http://ftp.sjtu.edu.cn/ubuntu/ jaunty-security main multiverse restricted universe
deb http://ftp.sjtu.edu.cn/ubuntu/ jaunty-updates main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ jaunty main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ jaunty-backports main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ jaunty-proposed main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ jaunty-security main multiverse restricted universe
deb-src http://ftp.sjtu.edu.cn/ubuntu/ jaunty-updates main multiverse restricted universe

#中国科学技术大学更新服务器(教育网,推荐校园网和网通用户使用):

deb http://debian.ustc.edu.cn/ubuntu/ jaunty main multiverse restricted universe
deb http://debian.ustc.edu.cn/ubuntu/ jaunty-backports main multiverse restricted universe
deb http://debian.ustc.edu.cn/ubuntu/ jaunty-proposed main multiverse restricted universe
deb http://debian.ustc.edu.cn/ubuntu/ jaunty-security main multiverse restricted universe
deb http://debian.ustc.edu.cn/ubuntu/ jaunty-updates main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ jaunty main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ jaunty-backports main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ jaunty-proposed main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ jaunty-security main multiverse restricted universe
deb-src http://debian.ustc.edu.cn/ubuntu/ jaunty-updates main multiverse restricted universe


#中国台湾 台湾大学更新服务器(推荐网通用户使用,电信PING平均响应速度41MS。强烈推荐此源,比较完整,较少出现同步问题):

deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty-updates main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty-updates main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty-backports main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty-backports main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty-security main restricted universe multiverse
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty-security main restricted universe multiverse
deb http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty-proposed main multiverse restricted universe
deb-src http://ubuntu.csie.ntu.edu.tw/ubuntu/ jaunty-proposed main restricted universe multiverse


#mirror.rootguide.org更新服务器(上海市 电信):

deb http://mirror.rootguide.org/ubuntu/ jaunty main restricted universe multiverse
deb-src http://mirror.rootguide.org/ubuntu/ jaunty main restricted universe multiverse
deb http://mirror.rootguide.org/ubuntu/ jaunty-updates main restricted universe multiverse
deb-src http://mirror.rootguide.org/ubuntu/ jaunty-updates main restricted universe multiverse
deb http://mirror.rootguide.org/ubuntu/ jaunty-backports main restricted universe multiverse
deb-src http://mirror.rootguide.org/ubuntu/ jaunty-backports main restricted universe multiverse
deb http://mirror.rootguide.org/ubuntu/ jaunty-security main restricted universe multiverse
deb-src http://mirror.rootguide.org/ubuntu/ jaunty-security main restricted universe multiverse
deb http://mirror.rootguide.org/ubuntu/ jaunty-proposed main multiverse restricted universe
deb-src http://mirror.rootguide.org/ubuntu/ jaunty-proposed main restricted universe multiverse


#台湾的官方源速度也相当不错,有时甚至快于内地的:

deb http://tw.archive.ubuntu.com/ubuntu jaunty main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiverse
deb http://tw.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-security main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-updates main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-backports main restricted universe multiverse
deb-src http://tw.archive.ubuntu.com/ubuntu jaunty-proposed main restricted universe multiverse
 
2009年11月02日 星期一 20:37



基本工作
1)第一件事自然是下载那些Ubuntu的镜像站点表,以及更新操作系统的一些补丁。“系统”->“管理”-> “更新管理器”。
2)第二件事是设置文件目录共享。就是在文件夹上点右键,在菜单中选“属性”,然后在对话框中选“共享”,那个对话框整得跟XP几乎一模一样。当然,这需要samba的支持。(sudo apt-get install samba)
3)接下来是设置时间同步。通过NTP(Network Time Protocol)同步你的时间。通过点击“系统”->“管理”-> “时间/日期”,然后选择“Keep synchronized with Internet servers”(和Internet服务器同步),于是你需要安装NTP协议。(sudo apt-get install ntp)

桌面相关
1)Application Launcher。一个相当漂亮的程序启动器(sudo apt-get install gnome-do)
2)Universal Applets。许多的桌面小程序。(sudo apt-get install universal-applets)APT Line: APT line: deb http://download.opensuse.org/repositories/home:/some-guy:/screenlets/xUbuntu_9.04/ ./
3)剪贴板管理器。方便你的拷贝粘贴操作。(sudo apt-get install parcellite)

网页浏览器
1)Google Chrome。(sudo apt-get install chromium-browser)
2)Epiphany。GNOME的集成浏览器。(sudo apt-get install epiphany-browser)

安全和隐私
1)On-The-Fly 加密。http://sd4l.sourceforge.net/
2)VPN访问。sudo apt-get install network-manager-pptp
3)Onion Routing。这个软件中最著名的就是我在文章前提到过的Tor,那个可以绕过GFW的软件。(sudo apt-get install tor tor-geoipdb)
4)防火墙。sudo apt-get install gufw
5)杀毒软件ClamAV。sudo apt-get install clamtk

系统工具
1)LiveUSB Creator。想用USB启动你的电脑吗?用UNetbootin这个工具吧。(sudo apt-get install unetbootin)
2)备份工具Back In Time。sudo apt-get install backintime-gnome
3)磁盘分区工具。GNOME Partition Editor可以帮你管理你的USB,IPOD或其它可写存储(sudo apt-get install gparted)
4)虚拟机VirtualBox。这个开源的虚拟机,还不错。sudo apt-get install virtualbox-3.0

 
     
 
 
个人档案
 
zglloo
男, 22岁
湖南 长沙 
上次登录:
9小时前
加为好友
 
   
 
最新评论
 
文章评论|照片评论


这下牛b了。
 

回复Musi_Zhang:对是来自哪里!我在开头说了
 

才发现她 @chaijingnews
 

[表情]
 

艺术有一种通灵的感觉 ps评论似乎应该放到uku视频那里:)
 
回复zzzqqq555:塔式机箱还有更大的 上了磁盘阵列就 好重好重~
 
这个。。体积好大啊
 
混沌的分型艺术~~
 
壮观!
 
大橘子
 
     
 
背景音乐
 
 
订阅我的空间
 
已有人次访问本空间
 
订阅RSS  什么是RSS?

您也想拥有这样的空间?请点此申请。
     


©2009 Baidu