T
T
Taras Serevann2017-11-02 02:47:22
linux
Taras Serevann, 2017-11-02 02:47:22

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

2 answer(s)
L
longclaps, 2017-11-02
@longclaps

Wireshark

S
sergeysakirkin, 2018-10-29
@sergeysakirkin

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 question

Ask a Question

731 491 924 answers to any question