
Linux 学习
文章平均质量分 67
batizty2001
这个作者很懒,什么都没留下…
展开
-
ls
ls -R 将文件夹递归的显示出来 ls -R /home/tuoyu/Desktop/Hasm-Geo/ 会将/home/tuoyu下所有文件夹的所有文件按照文件夹形式显示出来下面是例子 会比较长!!!/home/tuoyu/Desktop/Hasm-Geo/:binCSparseincludeMakefileMakefile.exol原创 2010-01-05 00:19:00 · 339 阅读 · 0 评论 -
proc 文件内容 翻译中
proc - process information pseudo-filesystemDESCRIPTION The proc filesystem is a pseudo-filesystem which is used as an inter- face to kernel data structures. It is commonly mounted at /proc. Most of it is read-only, but some翻译 2010-09-07 14:11:00 · 1845 阅读 · 0 评论 -
strace man page
<br /><br />STRACE(1) STRACE(1)<br /> <br /> <br /> <br />NAME<br /> strace - trace system calls and signals<br /> <br />SYNOPSIS<br /> strace [ -dffhiqrtttTvxx ] [ -acolumn ] [ -eex翻译 2010-09-08 09:33:00 · 550 阅读 · 0 评论 -
man system()
<br />SYSTEM(3) Linux Programmer's Manual SYSTEM(3)<br /><br /><br /><br />NAME<br /> system - execute a shell command<br /><br />SYNOPSIS<br /> #include <stdlib.h><br /><br /> int system(const c原创 2010-09-14 19:14:00 · 807 阅读 · 0 评论 -
Getopt函数 man的翻译
GETOPT(3) Linux Programmer's Manual GETOPT(3)NAME getopt, getopt_long, getopt_long_only, optarg, optind, opterr, optopt - Parse command-line optionsSYNOPSIS #include int getopt(int argc,翻译 2010-09-13 17:16:00 · 785 阅读 · 0 评论 -
系统调用相关---参数传递方式
<br />2. 系统调用陷入内核后作的参数传递过程 <br />当进程执行系统调用时,先调用系统调用库中定义某个函数,该函数通常被展开成前面提到的_syscallN的形式通过INT 0x80来陷入核心,其参数也将被通过寄存器传往核心。 <br />在这一部分,我们将介绍INT 0x80的处理函数system_call。 <br />思考一下就会发现,在调用前和调用后执行态完全不相同:前者是在用户栈上执行用户态程序,后者在核心栈上执行核心态代码。那么,为了保证在核心内部执行完系统转载 2010-08-31 10:35:00 · 2040 阅读 · 0 评论 -
LINUX 编译内核选项 向作者致敬
<br />Linux 2.6.19.x 内核编译配置选项简介作者:金步国版权声明<br />本文作者是一位自由软件爱好者,所以本文虽然不是软件,但是本着 GPL 的精神发布。任何人都可以自由使用、转载、复制和再分发,但必须保留作者署名,亦不得对声明中的任何条款作任何形式的修改,也不得附加任何其它条件。您可以自由链接、下载、传播此文档,但前提是必须保证全文完整转载,包括完整的版权信息和作译者声明。其他作品<br />本文作者十分愿意与他人共享劳动成果,如果你对我的其他翻译作品或者技术文章有兴趣,可以在如下位原创 2010-08-24 15:15:00 · 12218 阅读 · 1 评论 -
Intel manual appendix a 说明intel可以监控到的事件
<br />APPENDIX APERFORMANCE-MONITORING EVENTSThis appendix lists the performance-monitoring events that can be monitored withthe Intel 64 or IA-32 processors. The ability to monitor performance events and theevents that can be monitored in these pr原创 2010-08-23 16:42:00 · 650 阅读 · 0 评论 -
Intel manual appendix a 说明intel可以监控到的事件
<br />APPENDIX APERFORMANCE-MONITORING EVENTSThis appendix lists the performance-monitoring events that can be monitored withthe Intel 64 or IA-32 processors. The ability to monitor performance events and theevents that can be monitored in these pr原创 2010-08-23 16:41:00 · 545 阅读 · 0 评论 -
IBM utrace ptrace uprobes论文
<br /><br />Ptrace, Utrace, Uprobes: Lightweight, Dynamic Tracing of User Apps<br />Jim Keniston Ananth Mavinakayanahalli Prasanna Panchamukhi<br />IBM IBM IBM<br />jkenisto@us.ibm.com ananth@in.ibm.com prasanna@in.ibm.com<br />Vara Prasad<br />IBM<br />va原创 2010-08-23 16:04:00 · 1098 阅读 · 0 评论 -
IBM utrace ptrace uprobes论文
<br /><br />Ptrace, Utrace, Uprobes: Lightweight, Dynamic Tracing of User Apps<br />Jim Keniston Ananth Mavinakayanahalli Prasanna Panchamukhi<br />IBM IBM IBM<br />jkenisto@us.ibm.com ananth@in.ibm.com prasanna@in.ibm.com<br />Vara Prasad<br />IBM<br />va原创 2010-08-23 16:04:00 · 1562 阅读 · 0 评论 -
time man page
<br /> <br /> <br />TIME(7) Linux Programmer's Manual TIME(7)<br /> <br />NAME<br /> time - overview of time and timers<br /> <br />DESCRIPTION<br /> Real time and process time<br /> Real time is define原创 2010-08-13 11:02:00 · 382 阅读 · 0 评论 -
ptrace manpage 中文翻译下
Ptrace man syscall linux trace翻译 2010-08-12 10:27:00 · 1042 阅读 · 0 评论 -
uname
uname 参数列表 -a, --all print all information, in the following order: -s, --kernel-name print the kernel name -n, --nodename print the network node hostname -r, --kernel-release print the原创 2010-01-05 00:25:00 · 403 阅读 · 0 评论 -
du
du命令 查看当前目录的文件以及占用空间情况du -h 会按照最合适的单位显示,否则会按照KB来显示du原创 2010-01-05 00:23:00 · 388 阅读 · 0 评论 -
vim常用配置
linux vi(vim)常用命令汇总首先介绍一下 vim. vi 是 unix/linux 下极为普遍的一种文本编辑器,大部分机器上都有. vi 有各种变种, 在不同的机器上常用不同的变种软件. 其中 vim 比较好用也用得比较广泛. vim 是 ViIMproved 的缩写, 表示更好的 vi. 本文就说些其中比较有用, 比较常用的命令, 若能熟练运用这些命令,那么会发现编原创 2010-01-05 00:51:00 · 1594 阅读 · 0 评论 -
file
file命令 很实用不知道文件是干嘛的情况下,直接使用file就OK了原创 2010-01-05 00:23:00 · 357 阅读 · 0 评论 -
Gcc 参数解释
<br />NAME<br />gcc,g++-GNU工程的C和C++编译器(egcs-1.1.2)<br />总览(SYNOPSIS)<br />gcc[option|filename ]...<br />g++[option|filename ]...<br />警告(WARNING)<br />本手册页内容摘自GNU C编译器的完整文档,仅限于解释选项的含义.<br />除非有人自愿维护,否则本手册页不再更新.如果发现手册页和软件之间有所矛盾,请查对Info文件, Info文件是权原创 2010-09-08 15:21:00 · 531 阅读 · 0 评论