.bashrc的一个环境变量 PS1='[\[\033[01;32m\]\h:\[\033[01;34m\]\w\[\033[00m\]]\n\$ '
查看文件大小 du -h
查看文件在文件系统中的信息 df
查看动态库的内部符号 nm -D
查看进程号 ps -aux
查看进程树 pstree
grep -rl DEBUG | xargs perl -pi -e "s|内容|\/\/内容|g"
注释当前有DEBUG字段的文件内的所有含有“内容”的部分fuck_the_GFW.sh#!/usr/bin/expect -f
set timeout 30
spawn ssh -D 7070 -l colleague 204.12.234.13
expect "password: "
send "vlctech\r"
interact
cscope生成索引文件 find . -name "*.h" -o -name "*.c" -o -name "*.cc" > cscope.files
cscope -Rbkq -i cscope.files
禅道因为某些进程占用服务而无法使用的问题
用netstat -lntp | grep :80 找出占用80端口的进程
例如:
[root@localhost ~]# netstat -lntp | grep :80
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 3040/nginx
这里的程序名就是nginx
尝试用killall [程序名],看能不能关闭他。
例如:killall nginx
如果不行,用ps 找出他的PID,
例如:
[root@localhost ~]# ps aux | grep nginx | grep -v grep
root 5406 0.0 0.2 5996 756 ? Ss 03:32 0:00 nginx: master process /usr/local/webserver/nginx/sbin/nginx
这里的pid是 5406
然后用kill命令关掉它。
例如:kill 5406
PS:如果是通过apt-get安装的apache,可以尝试通过/etc/init.d/[程序名] stop 停止进程,或者
通过chkconfig [程序名] off 关闭开机启动。
redhat系统导入KEY
http://www.liusuping.com/ubuntu-linux/Redhat-linux-centos-yum.html