Top "Strace" questions

strace is a Linux/UNIX tool for logging and analysing the system calls made by a user-side process.

How to interpret strace output?

I need to profile the performance of an application for which I am using strace. However, I do not really …

c linux operating-system system-calls strace
How to trace per-file IO operations in Linux?

I need to track read system calls for specific files, and I'm currently doing this by parsing the output of …

linux file-io filesystems trace strace
Why STRACE shows EAGAIN (Resource temporarily unavailable)

Following is the sequence I am getting socket(PF_INET, SOCK_STREAM, IPPROTO_IP) = 7 setsockopt(7, SOL_TCP, TCP_NODELAY, [1], 4) = 0 setsockopt(7, …

linux tcp strace
Get all modules/packages used by a python project

I have a python GUI application. And now I need to know what all libraries the application links to. So …

python linux pyinstaller strace
poll system call timeout

Attaching strace shows a lot of these messages: poll([{fd=5, events=POLLIN}, {fd=6, events=POLLIN}, {fd=7, events=POLLIN}, {fd=8, events=…

linux system-calls strace
Failure to connect to SQl Server from Linux

I am trying to connect to SQL Server 2008 on CentOS 5.8. I am using unixODBC 2.3.0 and SQL Server ODBC Driver (www.…

sql-server-2008 unixodbc strace isql sqlncli
How can I get dtrace to run the traced command with non-root priviledges?

OS X lacks linux's strace, but it has dtrace which is supposed to be so much better. However, I miss …

macos root dtrace strace
Android: How to strace an app using ADB shell am start

I need help on stracing Android apps in the SDK emulator. Here is my setup: I have an Android SDK …

android shell runtime adb strace
How to quit strace when attached to a process?

[root@woyo test]# strace -o /tmp/lsof.strace -p 5625 Process 5625 attached - interrupt to quit q Anyone knows?

strace
How to decode this information from strace output

I wrote a small go script and traced it using strace though this script, I am trying to fetch audit …

c go audit strace netlink