[solved] How to see "total received" "total sent" statistics from the command line?
Forum rules
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
Before you post read how to get help. Topics in this forum are automatically closed 6 months after creation.
[solved] How to see "total received" "total sent" statistics from the command line?
Is there any way to see these statistics from the command line?
Last edited by HyperBear on Tue Jun 17, 2025 10:55 am, edited 1 time in total.
Re: How to see "total received" "total sent" statistics from the command line?
Found it!
Why "octet" and not "byte"? Wikipedia tells us:
Code: Select all
netstat -s |grep Octet
The term is often used when the term byte might be ambiguous, as the byte has historically been used for storage units of a variety of sizes.
Re: [solved] How to see "total received" "total sent" statistics from the command line?
Octet is the telecomms term for 8 bits. It has nothing to do with computer memory other than both computer memory and telecommunications gear have both settled on 8 bits being a convenient size. SDLC and HDLC are still in use today, and they are completely defined in terms of octets.
https://en.wikipedia.org/wiki/Synchrono ... nk_Control
This was somewhat before the term byte almost universally came to mean 8-bit-byte (rather than other sizes) in computer architectures.
https://en.wikipedia.org/wiki/Synchrono ... nk_Control
This was somewhat before the term byte almost universally came to mean 8-bit-byte (rather than other sizes) in computer architectures.