CentOS镜像使用帮助收录架构i386x86_64SRPMS收录版本56更新时间每5小时更新一次使用说明首先备份/etc/yum.repos.d/CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentO...
分类:
其他好文 时间:
2014-05-27 01:58:31
阅读次数:
283
LoadRunner测试结果分析之我见
上述测试过程的重点在于事务,而LoadRunner生成的测试结果图并不局限于事务上,其中还有是关于Vusers、Errors、Web Resources、Web
Page diagnostics的测试图。1.对于Vusers的测试图有3种:Running V....
分类:
其他好文 时间:
2014-05-24 06:09:56
阅读次数:
347
错误error:cannotopenPackagesdatabasein/var/lib/rpmCRITICAL:yum.main:Error:rpmdbopenfailed解决方法:#rm
-rf /var/lib/rpm/__db*#rpm --rebuilddb#yum clean all
分类:
其他好文 时间:
2014-05-24 04:09:52
阅读次数:
484
在Android开发中我们经常要遇到的一个问题就是数据在不同的Activity之间的共享。在Android开发中有很多种方法可以达到这个目地。这里介绍一种比较常见、又常用的一种方法就是使用剪切板。我们都有用过Window、Linux上的Copy。这里介绍的就是这种。调用服务[java]
view p...
分类:
移动开发 时间:
2014-05-24 04:07:49
阅读次数:
266
任务说明:把很多TXT文本文件中的文字全部提取出来生成一个新的TXT文件,但又不想使用反复复制和粘贴这种笨 拙、耗时的方法。任务执行:
首先,将所有文本文件都放在同一个文件夹中。然后,调出“命令提示符”窗口。如果不必按顺序合并所有TXT文件,则输入“copy *.txt
new.txt”即可任务说....
分类:
其他好文 时间:
2014-05-20 07:49:39
阅读次数:
278
一 、Cobbler简介
Cobbler是一个快速网络安装linux的服务,而且在经过调整也可以支持网络安装windows。该工具使用python开发,小巧轻便(才15k
行python代码),使用简单的命令即可完成PXE网络安装环境的配置,同时还可以管理DHCP、DNS、yum仓库、构造系统ISO...
分类:
其他好文 时间:
2014-05-19 18:27:00
阅读次数:
530
A linked list is given such that each node
contains an additional random pointer which could point to any node in the list
or null.Return a deep copy ...
分类:
其他好文 时间:
2014-05-19 15:50:28
阅读次数:
447
【题目】
Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length.
Do not allocate extra space for another array, you must do this in place with constant memory.
For example,
Given input array A ...
分类:
其他好文 时间:
2014-05-18 18:25:19
阅读次数:
272
Activities 在系统中是以 activity 栈的形式被管理的。当一个新的 activity 启动时,它将会被放到栈的顶部并变成 running activity——上一个activity 会被至于它的下面,在新 activity 存在期间它都不会到前端来。
一个 activity 有四个重要的状态:...
分类:
其他好文 时间:
2014-05-18 14:24:10
阅读次数:
318
题意:
Evaluate the value of an arithmetic expression in
Reverse Polish Notation.
Valid operators are +, -, *,
/. Each operand may be an integer or another expression.
So...
分类:
其他好文 时间:
2014-05-18 08:09:15
阅读次数:
190