Linux
文章平均质量分 69
虚极静笃13
这个作者很懒,什么都没留下…
展开
-
linux proc/pid/stat解析
proc/pid/stat用于获取某一个进程的统计信息,实现过程见fs/proc/array.c的do_task_stat()1. stat数据$ adb shell cat /proc/8385/stat1557 (system_server) S 823 823 0 0 -1 1077952832 //1~92085481 15248 2003 27 166114 129684 26 30 //10~1710 -10 221 0 2284 2790821888 93087 184467原创 2021-02-24 15:58:10 · 6679 阅读 · 0 评论 -
ubuntu 编译时出现/bin/sh: 1: pushd: not found的问题
问题:在编译Makefile的时候,Makefile会使用脚本命令,调用pushd或者popd命令出现找不到的问题,错误打印如下:/bin/sh: 1: pushd: not found原因:从Ubuntu 6.10开始,默认使用dash(theDebian Almquist Shell)而不是bash(the GNUBourne-Again Shell),但Login Shell还是bash,原因是dash更快、更高效,而且它符合POSIX规范,Ubuntu在启动的时候会运行很多shell脚本,原创 2020-07-05 19:52:31 · 3070 阅读 · 0 评论 -
文件查找命令find:
http://www.cnblogs.com/mchina/archive/2012/07/02/2573313.html 下面给出find命令的主要应用示例: /> ls -l #列出当前目录下所包含的测试文件 -rw-r--r--. 1 root root 48217 Nov 12 00:57 install.log -rw-r--r--. 1 r转载 2015-08-18 14:22:52 · 400 阅读 · 0 评论