第 29 章 调试工具

简介:

目录

29.1. ftop - Tool to show progress of open files and file systems
29.2. strace - trace system calls and signals
29.2.1. -o file -- send trace output to FILE instead of stderr
29.3. ltrace - A library call tracer
29.4. ldd - print shared library dependencies
29.5. Valgrind
29.6. nm - list symbols from object files
29.7. objdump - display information from object files.
29.8. readelf - Displays information about ELF files.

29.1. ftop - Tool to show progress of open files and file systems

ftop 是一个显示进程打开文件的工具

Tue Jan 20 16:25:50 2015                                                                                 ftop 1.0
Processes:  47 total, 0 unreadable                                                Press h for help, o for options
Open Files: 57 regular, 0 dir, 149 chr, 0 blk, 12 pipe, 59 sock, 15 misc

_  PID    #FD  USER      COMMAND                                                                                  
-- 413    10   root      /sbin/udevd -d
|  +- 3    -rw  --	935/935      /dev/.udev/queue.bin
-- 982    7    root      auditd
|  +- 5    --W  --     3.1M/3.1M     /var/log/audit/audit.log
-- 1002   5    root      /sbin/rsyslogd -i /var/run/syslogd.pid -c 5
|  +- out  --W  --     8059/8059     /var/log/messages
|  +- err  --W  --    16443/16443    /var/log/cron
|  +- 3    -r-  --        0/0        /proc/kmsg
|  +- 4    --W  --    14976/14976    /var/log/secure
-- 1106   17   www       nginx: worker process                   
|  +- err  --W  --   538920/538920   /var/log/nginx/error.log (fd 11 for PID 1106)
		





原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。

目录
相关文章
|
5月前
|
JSON 数据库 数据格式
接口调试工具
接口调试工具
46 2
|
运维 监控 数据可视化
JVM调试命令与调试工具
JVM调试命令与调试工具
222 0
|
存储 监控 算法
代码调试技巧
代码调试技巧
|
Java C# 开发工具
9个最好用的在线编译/调试工具
电脑没有C/C++的开发环境了,只能找找在线的编译器。。IDEone不错。。。 本文要推荐9个最好用的在线编译器,以下顺序不按排名先后: 1、ideone 可以在线编译、调试C/C++,JAVA,PHP,Python,Perl,以及其他40多种编程语言。
2918 0
|
iOS开发
LLDB调试iOS应用程序
如何利用LLDB调试iOS应用程序?本文为您揭晓。
466 1
LLDB调试iOS应用程序
|
缓存 小程序 JavaScript
如何使用谷歌浏览器调试工具
如何使用谷歌浏览器调试工具
337 0
如何使用谷歌浏览器调试工具
|
Web App开发 测试技术 PHP
如何本地安装ApiPost接口调试工具
本文主要讲在谷歌应用商店不能访问(不可描述的原因)的情况下,如何安装apipost拓展。
|
C# C++ Windows
WinDbg 调试工具的使用
概述 项目接近尾声了,可是在运行时会有memory leak(内存泄露) bug.产品在运行一天后,内存增长致1.4G,而我们产品的初始内存才有70M,问题很严重,决定采用WinDbg工具来分析代码问题有原因到底在哪里. WinDbg是微软发布的一款相当优秀的源码级(source-level)调试工具,可以用于Kernel模式调试和用户模式调试,还可以调试Dump文件。
894 0
|
应用服务中间件 nginx