lf network manager app

Questions about applications and software
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Locked
niubboxp

lf network manager app

Post by niubboxp »

i'm looking for a noob friendly program which allow me to see what process/programs do network activity, and hold the log

i'd like to know which programs/process have the network access (if is possible splitted data between lan and wan) and how many data they down/up

does exist a program like that?

thank you
Last edited by LockBot on Wed Dec 28, 2022 7:16 am, edited 1 time in total.
Reason: Topic automatically closed 6 months after creation. New replies are no longer allowed.
User avatar
kc1di
Level 18
Level 18
Posts: 8181
Joined: Mon Sep 08, 2008 8:44 pm
Location: Maine USA

Re: lf network manager app

Post by kc1di »

Hi niubboxp,

In this case the terminal/commad line is your friend :)
Take a look at this page which give several terminal commads and a few programs that can help you track network activity.
http://searchdatacenter.techtarget.com/ ... nnectivity
Good Luck
Easy tips : https://easylinuxtipsproject.blogspot.com/ Pjotr's Great Linux projects page.
Linux Mint Installation Guide: http://linuxmint-installation-guide.rea ... en/latest/
Registered Linux User #462608
niubboxp

Re: lf network manager app

Post by niubboxp »

I dont know why but i cant read the link
User avatar
kc1di
Level 18
Level 18
Posts: 8181
Joined: Mon Sep 08, 2008 8:44 pm
Location: Maine USA

Re: lf network manager app

Post by kc1di »

Don't know it works here in both chrome and Firefox.
Easy tips : https://easylinuxtipsproject.blogspot.com/ Pjotr's Great Linux projects page.
Linux Mint Installation Guide: http://linuxmint-installation-guide.rea ... en/latest/
Registered Linux User #462608
User avatar
greerd
Level 6
Level 6
Posts: 1060
Joined: Sat Jul 31, 2010 10:58 am
Location: Nova Scotia, Canada

Re: lf network manager app

Post by greerd »

niubboxp wrote:I dont know why but i cant read the link
Yea, I get a 'Registration is unavailable' message from them.

You could use 'netstat', a command line utility that should be installed by default, if not it should be in the repos.
Example using netstat, watch -d -n0 "netstat -a | grep ESTA" will give an updating list of all established connections.
EDIT: 'ctrl-c' to quit.

See BinaryTides.com for more info.
niubboxp

Re: lf network manager app

Post by niubboxp »

greerd wrote:
niubboxp wrote:I dont know why but i cant read the link
Yea, I get a 'Registration is unavailable' message from them.

You could use 'netstat', a command line utility that should be installed by default, if not it should be in the repos.
Example using netstat, watch -d -n0 "netstat -a | grep ESTA" will give an updating list of all established connections.
EDIT: 'ctrl-c' to quit.

See BinaryTides.com for more info.
this is an interesting command thanks, the only "problem" is don't tell me wich apps are enstabilishing the connection, there is a way to see the application name and also generate a file log where i can see which app enstabilish a connection?
for example
2017-1-28 firefox sended 50mb received 400mb (wan)
2017-1-28 transmission sended 5mb received 200mb (wan)
2017-1-28 cups sended 1mb received 1mb (lan)

something like that of course if more info should be avalaible should be nice
User avatar
greerd
Level 6
Level 6
Posts: 1060
Joined: Sat Jul 31, 2010 10:58 am
Location: Nova Scotia, Canada

Re: lf network manager app

Post by greerd »

niubboxp wrote:
greerd wrote:
niubboxp wrote:I dont know why but i cant read the link
Yea, I get a 'Registration is unavailable' message from them.

You could use 'netstat', a command line utility that should be installed by default, if not it should be in the repos.
Example using netstat, watch -d -n0 "netstat -a | grep ESTA" will give an updating list of all established connections.
EDIT: 'ctrl-c' to quit.

See BinaryTides.com for more info.
this is an interesting command thanks, the only "problem" is don't tell me wich apps are enstabilishing the connection, there is a way to see the application name and also generate a file log where i can see which app enstabilish a connection?
for example
2017-1-28 firefox sended 50mb received 400mb (wan)
2017-1-28 transmission sended 5mb received 200mb (wan)
2017-1-28 cups sended 1mb received 1mb (lan)

something like that of course if more info should be avalaible should be nice
You can add the -p option to the above example watch -d -n0 "netstat -ap | grep ESTA" (Get process name/pid and user id) for user only. But you would probably want to sudo it sudo watch -d -n0 "netstat -ap | grep ESTA" to show all processes.
Not sure about the logging though.
User avatar
greerd
Level 6
Level 6
Posts: 1060
Joined: Sat Jul 31, 2010 10:58 am
Location: Nova Scotia, Canada

Re: lf network manager app

Post by greerd »

EDIT: added '-e' option to both commands to show user.

You can unwrap the 'watch' command to get a one-shot display sudo netstat -ape | grep ESTA to get 'established' connections or sudo netstat -ape | grep LIST for 'listening'.
Locked

Return to “Software & Applications”