发布时间:2013-04-02 08:40:44
01-.tar格式解包:[*******]$ tar xvf filename.tar打包:[*******]$ tar cvf filename.tar dirname(注:tar是打包,不是压缩!)
02-.gz格式解压1:[*******]$ gunzip filename.gz解压2:[*******]$ gzip -d filename.gz压 缩:[*******]$ gzip filename03-.tar.gz格式解.........【阅读全文】
发布时间:2013-01-28 09:19:37
查看进程对应的线程ps -lf 5629得到进程的pid:ps -ef | grep process_name | grep -v "grep" | awk '{print $2}'查看进程的所有线程# ps mp 6648 -o thread,tiduser %cpu pri scnt wchan user system tidroot 0.0 - - - - - -root 0.0 24 - - - - 6648root 0.0 21 - - - - 6650root 1.0 24 - - - - 14214root 0.........【阅读全文】
发布时间:2013-01-28 09:18:48
linux下获取占用cpu资源最多的10个进程,可以使用如下命令组合:ps aux|head -1;ps aux|grep -v pid|sort -rn -k 3|headlinux下获取占用内存资源最多的10个进程,可以使用如下命令组合:ps aux|head -1;ps aux|grep -v pid|sort -rn -k 4|head命令组合解析(针对cpu的,men也同样道理):ps aux|head -1;ps aux|gr.........【阅读全文】