Answer the question
In order to leave comments, you need to log in
Programs to view process traffic on Ubuntu?
You need to see the traffic of the running process on Ubuntu. What are the programs with clear UI/GUI? Preferably something as simple and intuitive as Net Monitor in Chrome Dev Tools
Answer the question
In order to leave comments, you need to log in
If the process is not started yet, you can start it as a new process and monitor it using the following
strace -f -e trace=network -s 10000 ;
If the process is already started and you know its PID you can use the following
strace -f -e trace=network -s 10000 -p ;
Then Wireshark
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question