deb是debian linus的安装格式,跟red hat的rpm非常相似,最基本的安装命令是:dpkg -i file.debdpkg 是Debian Package的简写,是为Debian 专门开发的套件管理系统,方便软件的安装、更新及移除。所有源自Debian的Linux发行版都使用dpkg...
分类:
其他好文 时间:
2014-06-28 22:23:17
阅读次数:
255
这么好的东西,不拿来出分享,我对不起原作者呀。可是我这里不知道作者是谁,感谢在先了。ed2k://|file|%5BIBM%E8%BD%AF%E4%BB%B6%E7%B3%BB%E5%88%97%5D.IBM.Rational.Rose.Enterprise.v7.0-TFTISO.bin|6210...
分类:
其他好文 时间:
2014-06-21 09:51:00
阅读次数:
152
一、安装tkinter在Linux中python默认是不安装Tkinter模块,[root@li250-193 ~]# pythonPython 2.6.6 (r266:84292, Feb 22 2013, 00:00:18) [GCC 4.4.7 20120313 (Red Hat 4.4.7-...
分类:
编程语言 时间:
2014-06-21 08:57:04
阅读次数:
284
环境:RedHat Linux Enterprise 6+Virtual Box 4.1使用过DOS命令的人 都应该知道,我们可以使用type命令来查看一个文件的内容。在Linux下有五个相 关的命令,功能各有千秋,不过它们都象type命令一样,只能用来查看文本文件 。1.cat命令cat命令是最象...
分类:
系统相关 时间:
2014-06-20 22:11:12
阅读次数:
342
判断如下程序的最终输出值: import java.util.*;public class Quest{ public static void main(String[] args){ String[] colors = {"blue", "red", "green", "yellow", "ora...
分类:
其他好文 时间:
2014-06-20 15:07:00
阅读次数:
174
??
Where Can the UML Be Used
The UML is intended primarily for software-intensive systems. It has been used effectively for such domains as
Enterprise information systems
Banking and financial ser...
分类:
其他好文 时间:
2014-06-18 11:53:00
阅读次数:
190
原题如下,意思就是说无序数组(由0,1,2组成),一遍扫描,把数组整理成0,1,2这样的序列。
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red,...
分类:
其他好文 时间:
2014-06-18 07:12:43
阅读次数:
174
去掉拼写检查:windows->preferences->General->Editors->Text Editors->Spelling 将“Enable spell checking”前的勾取消掉,就不进行拼写检查了。
去掉验证:windows->preferences->MyEclipse Enterprise Workbench->Validation 保留Manual,将Build列的...
分类:
系统相关 时间:
2014-06-18 06:29:12
阅读次数:
351
二、mod_python
1.性能
使用mod_python的主要优势在于比传统CGI更高的性能。
一个测试,使用在Pentium
1.2GHz的机器上运行Red Hat Linux 7.3。使用4种类型的脚本,基于标准的CGI导入模块(以典型的Python
CGI脚本开始),然后输出'Hello!',测试10000次请求作为基准。
标准CGI:...
分类:
编程语言 时间:
2014-06-18 00:31:40
阅读次数:
408
除了不能继承enum之外,可将其看做一个常规类。甚至可以有main方法。
注意:必须先定义enum实例,实例的最后有一个分号。
下面是一个例子:返回对实例自身的描述,而非默认的toString返回枚举实例的名字。
public enum Color {
RED("红色", 1), GREEN("绿色", 2), BLANK("白色", 3), YELLO("黄色", 4);...
分类:
编程语言 时间:
2014-06-17 16:18:31
阅读次数:
482