linux
stephen80
这个作者很懒,什么都没留下…
展开
-
安装 python2.6.2
由于 pm4trac 需要json.先安装 simplejson , 修改pm.py : import simplejson as json ,不好使。只能升级。下载tar ./configure --prefix=/usr/local/python26 makesudo make installsudo mv /usr/local/bin/python /...原创 2009-09-17 12:12:23 · 70 阅读 · 0 评论 -
bash script programming
复习:所有内容按字符处理,除非 expr字符串连接,不用操作符test ,[ ] = 要注意空格 空格 if test 2 -gt 1 ; then echo "aa" ; fi;if [ 2 -gt 1 ]; then echo "aa" ; fi;这里, ; 表示了换行一个例子:例: 计算1到5的平方 #!/bin/sh # #Filena...原创 2011-05-04 14:47:02 · 177 阅读 · 0 评论 -
mount, mkfs 备忘
//查看fdisk -l //mountmount -t ext3 /dev/sdb1 /home// 出现这个错误//Disk /dev/sdb doesn't contain a valid partition table//分区fdisk /dev/sdbnp1// 格式化mkfs -t ext3 /dev/sdb1 ...原创 2011-04-25 15:12:32 · 124 阅读 · 0 评论 -
mount disk
su/sbin/fdisk -lfdisk /dev/sdbn, p,1, ,保存完成后重启服务器/dev/sdb1mkfs -t ext3 -c /dev/sdb1 手工 mountmount /dev/sdb1 /e/自动挂载vi /etc/fstab/dev/sdb1 /e ext3 default...原创 2010-06-30 14:27:18 · 189 阅读 · 0 评论 -
vim regular expression
对于 regular expression 的summary;1.quantifier greedy, 尽可能多的匹配 * relunctant ,尽可能短的匹配 ? 与 option 没有关系 possisive , 唯一的可能 + 2.alternation (ab|cd) 与 group 没有关系...2010-02-26 11:23:05 · 159 阅读 · 0 评论 -
vim
http://blog.csdn.net/alexwoo0501/article/details/48852679学到一个技巧set path+=/projects/invent/**/include.gf f*set fileencodings=utf-8,gb2312,gb18030,gbk,ucs-bom,cp936,latin1set encoding=...原创 2009-08-25 17:47:23 · 105 阅读 · 0 评论 -
用yum 安装 gnuplot-py
1. 如果 python 升级了, yum 不能用, 会报 No module named yum . 把 /usr/bin/yum 脚本第一行 #! /usr/bin/python 改到旧版本2. 运行 yum search gnuplot 报错 no access to //var/log/yumcache yum 需要 sudo 运行3. 如果某个 rep...原创 2010-07-09 15:35:37 · 315 阅读 · 0 评论 -
svn 技巧, diff and patch
add neededsvn st | awk '/^?/ {print "svn add " $2}' |shremove should removed svn st | awk '/^!/ {print "svn rm " $2}' |shdiff --exclude='.svn' -Nur oldDir newDir > a.diff在oldDir...2009-08-10 17:15:37 · 175 阅读 · 0 评论 -
linux performance tuning
学习了以下工具。top, load vmstat 2 3 ,iostat,mpstat,ps.pidstat -d 2 ,pidstat -r ,lsof strace sar, sar -o sart 10 5000 >/dev/null 2>&1 &oprofile . ps -el |awk '{ if ( $6 > (0)) { pr...原创 2010-01-19 15:23:09 · 181 阅读 · 0 评论 -
mysql 自动启动,和 best practice
/etc/init.d/mysql restarthttp://drupalsh.cn/Linux-apache-mysql-autostart * 确保/etc/rc.d/init.d/mysqld 存在,用service mysqld start能够正常启动 * 运行命令:chkconfig --add mysqld * 运行命令: chkconfig...原创 2009-11-11 10:58:43 · 90 阅读 · 0 评论 -
screen note
http://www.cyberciti.biz/tips/linux-screen-command-howto.htmlhttp://www.cyberciti.biz/tips/top-linux-monitoring-tools.htmlcreen command TaskCtrl+a c Create new windowCtrl+a k Kill the cur...原创 2009-11-04 10:05:03 · 120 阅读 · 0 评论 -
nginx 简单配置
如何用nginx 发表一个文件 ?1.修改nginx.conf 增加: 66 server { 67 listen 80; 68 server_name iece.jd.com; 69 70 location / { 71 ...原创 2013-10-29 15:49:29 · 146 阅读 · 0 评论