Top "Strace" questions

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

Unable to "strace -p" on a running JBoss process

I am trying to use "strace -p" to attach to an already running JBoss process. JBoss is using the 1.5.0_15 Java …

linux jboss strace
ltrace equivalent for osx?

osx has the really powerful dtrace/ktrace/dtruss tools - however i'm not willing to invest the time necessary to …

linux macos dtrace strace
strace tmux output redirected to a file

I want to check which files does tmux touch when it is launched (not just the list of open files …

io-redirection strace
Tracing calls to a shared library

I am developing a program under Linux. For debugging purposes I want to trace all calls from my program to …

shared-libraries trace strace
How to capture network traffic from a specific android application.

I have read a paper which proposes an approach to capture network traffic from a specific android application.It says "…

android networking traffic strace
How does strace work?

It can trace all system calls used. But what differs a sys_call from a normal call??

system-calls strace
strace: order of <unfinished ...> and <... resumed>

I'm writing a script that analyzes file access traced with strace. The trace contains some calls which have been interrupted …

linux strace
strace to monitor Dockerized application activity

My goal is to monitor which ports are opened and closed by a multi-process application. My plan is to run …

sockets docker port strace
Show complete arguments in strace even in curly brackets

I know the -s option should display longer arguments, but it doesn't work always (probably because of those curly brackets …

linux strace
Difference between gdb, valgrind, strace, ltrace and apport

I'm looking for the difference between the following debugging tools. What are those? E: On the off chance that somebody …

debugging gdb valgrind strace ltrace