
utility&tool
文章平均质量分 54
Lanttor
Lanttor的技术博客
展开
-
git配置
抄袭莱温斯基的,特此声明。 $ cat git-config.sh #! /bin/shgit-config user.name "Guo Shaobei"git-config user.email shaobei.guo@gmail.comgit-config core.editor vimgit-config core.pager "less -N"git-co原创 2009-11-02 16:50:00 · 655 阅读 · 0 评论 -
crontab格式
http://www.toplee.com/blog/380.html基本格式 :* * * * * command分 时 日 月 周 命令第1列表示分钟1~59 每分钟用*或者 */1表示第2列表示小时1~23(0表示0点)第3列表示日期1~31第4列表示月份1~12第5列标识号星期0~6(0表示星期天)第6列要运行的命令crontab文转载 2012-03-30 14:48:14 · 1670 阅读 · 0 评论 -
bugzilla安装使用总结
说明:使用的bugzilla版本为bugzilla 4.0.21. bugzilla的安装请参考http://www.bugzilla.org/docs/2. bugzilla的配置安装好bugzilla后,会提示你输入一个管理员的邮件帐号和密码。使用这个帐号登录bugzilla,然后在Parameters页面进行配置。3. bugzilla发送原创 2011-12-29 15:24:02 · 996 阅读 · 0 评论 -
ubuntu mantis 安装配置
http://blog.youkuaiyun.com/kay_wyong/article/details/6695457下面为ubuntu下mantis 的安装详细过程一、环境搭建1、apache服务器安装sudo apt-get install apache22、php5安装 sudo apt-get install php53、apache和php5的关联 sudo转载 2012-02-03 16:45:03 · 1044 阅读 · 0 评论 -
mount debugfs on Linux
<br />mount -t debugfs none /sys/kernel/debug/原创 2011-02-24 11:25:00 · 5566 阅读 · 0 评论 -
Hack milestone2手记1
<br /><br />一时冲动,花了一笔银子买来一部milestone2水货。<br />milestone2的硬件规格是相当不错的,motorola的品质在硬件上。<br />好吧,那就开始玩吧。<br /><br />1. 获取root权限<br />在网上搜到了两种方法: 1)使用z4root工具 2)使用superoneclick工具<br />在我的手机上,第1种方法失败,第2种方法成功。<br /><br />这里只记录成功的方法:<br />首先,要阅读下面的原创 2011-02-27 14:44:00 · 1177 阅读 · 0 评论 -
Linux 串口工具kermit
<br />原文:http://blog.21ic.com/user1/5823/archives/2009/60254.html<br /> <br />安装 <br />-------------------------------------- <br /> # apt-get install ckermit<br /> 修改kermit的配置文件 <br /><br />配置 <br />-------------------------------------- <br /> 下转载 2010-06-12 16:51:00 · 2144 阅读 · 0 评论 -
使用串口进行文件传输
如果你的开发板没有网口的话,target与host之间传输数据是件麻烦的事;target指的是你的嵌入式开发板;host指的是你的PC host。串口是每个开发板必须的,所以这里介绍使用串口传输文件的方法。当然,首先你的开发板要支持lrzsz包。从host到target进行文件传输:1.在target上的console输入:rz2.ctrl-a z打开minicom原创 2010-01-05 21:25:00 · 6993 阅读 · 0 评论 -
shell脚本:批量添加文件后缀名
写了一个脚本,给当前目录下的所有文件添加某个后缀名(.txt),并进行某些文件属性的转换。写的不是很简练,也不完整。但是看起来简单,够用。 #! /bin/shfind $PWD | while read ido if [ -d $i ]; then continue fi test1=`echo $i原创 2010-01-05 21:28:00 · 3577 阅读 · 0 评论 -
iperf工具
原帖:http://www.51testing.com/?uid-145083-action-viewspace-itemid-61375 简介(m%D3e2h*N)x#nu7_2s$H9O0 iperf是一个 TCP/IP 和 UDP/IP 的性能测量工具,能够提供网络吞吐率信息,以及抖动、丢包率、最大段和最大传输单元大小等统计信息,从而能够帮助我们转载 2009-11-03 16:55:00 · 1262 阅读 · 0 评论 -
使用vim+cscope组合,搭建编程环境
1. Download the latest vim version and build it as follows steps:./configure --prefix=/home/tools //安装目录--enable-perlinterp //perl集成--enable-p原创 2009-11-02 16:46:00 · 1101 阅读 · 0 评论 -
Ubuntu 10.40 vncserver 安装和设置
http://www.cnblogs.com/wishmiss/archive/2010/09/26/1834956.html转载 2012-06-05 14:43:09 · 1675 阅读 · 0 评论