系统配置为Centos 5.5
x85版,使用yum安装httpd对于没有安装vim的,可以使用此命令安装: yum -y install
vim-enhanced配置httpd.conf文件: vim
/etc/httpd/conf/httpd.conf(1)指定apache的监听对应端口,如图示...
分类:
其他好文 时间:
2014-05-10 08:31:44
阅读次数:
340
1. :w 后面可以加文件名2. 使用hjkl
来移动光标,当然你也可以使用箭头。j就是向下的箭头,k是向上,h向左, l向右3. :help →
显示相关命令的帮助。你也可以就输入:help而不跟命令。(退出帮助需要输入:q)4. cw替换从光标开始到一个单词结束的字符, cc替换光标所在...
分类:
其他好文 时间:
2014-05-10 07:38:55
阅读次数:
290
vi/vim 中可以使用 :s
命令来替换字符串。该命令有很多种不同细节使用方法,可以实现复杂的功能,记录几种在此,方便以后查询。 :s/vivian/sky/ 替换当前行第一个 vivian
为 sky :s/vivian/sky/g 替换当前行所有 vivian 为 sky :n,$...
分类:
其他好文 时间:
2014-05-10 06:30:02
阅读次数:
213
Substring时间限制:1000 ms | 内存限制:65535 KB难度:1描述You
are given a string input. You are to find the longest substring of input such
that the reversal of the ...
分类:
其他好文 时间:
2014-05-10 06:20:56
阅读次数:
257
原题地址:http://www.cnblogs.com/x1957/p/3373994.html题意:Given
an array of integers, every element appearstwiceexcept for one. Find that single
one.要求:线性时间复...
分类:
编程语言 时间:
2014-05-10 05:22:27
阅读次数:
408
原题地址:http://oj.leetcode.com/problems/single-number-ii/题意:Given
an array of integers, every element appearsthreetimes except for one. Find that
single ...
分类:
编程语言 时间:
2014-05-10 03:01:41
阅读次数:
413
经过不懈努力,终于把vi搞的有点人样了,现在备份.vimrc奶奶的,新手们啊,血的教训啊,如果说一寸光阴一寸金的话,那么我已经失去了很多金了提请你们,当出现不是vim命令^M,你们可以set
fileformats=unix,但是前辈提醒你,你一定不要向我一样偷懒粘贴复制,一定要用手打进去,然后再去...
分类:
其他好文 时间:
2014-05-09 23:20:26
阅读次数:
358
phpize可以往php种追加新的模块
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script....
分类:
Web程序 时间:
2014-05-09 21:06:27
阅读次数:
375
find / –name sqlplus iostat –d 2 iostat和iowait详细解说
如果你想对硬盘做一个IO负荷的压力测试可以用如下命令 time dd if=/dev/zero bs=1M count=2048 of=direct_2G
此命令为在当前目录下新建一个2G的文件 我...
分类:
系统相关 时间:
2014-05-09 20:31:22
阅读次数:
547
BFS。 1 #include 2 #include 3 #include 4
#include 5 using namespace std; 6 7 #define INF 0x3fffffff 8 9 typedef struct
node_st {10 int x, y, ...
分类:
其他好文 时间:
2014-05-09 20:18:48
阅读次数:
339