On Mon, Aug 25, 2003 at 01:10:48PM +0800, Didier Casse wrote:
> Hello all,

> I've been wondering whether there's a command in Linux to test
> the Bandwidth Speed directly. Up to now I've been using the site

Try wget of ncftpget. Both have a nifty on screen speed-o-meter. Just
find a large file somewhere -- anywhere.  

[EMAIL PROTECTED] tmp]$ wget http://atl.speakeasy.net/300k
--14:29:37--  http://atl.speakeasy.net/300k  => `/tmp/300k`
Connecting to 192.168.10.1:8118... connected.
Proxy request sent, awaiting response... 200 OK

Length: 435,000 [text/plain]

100%[==========================================>] 435,000  152.26K/s ETA 00:00


or a simple bash script to monitor:

#!/bin/bash
# 

IFS=' :\n'
device=eth0
# Adjust to compensate for bash's long-in-the-tooth overhead.
correction=920000

bytes () {
 bytes=( $(grep $device /proc/net/dev) )
 echo ${bytes[1]}
}


clear
while :; do
 last=`bytes`
 usleep  $correction
 tput cup 0 0
 printf "%+8s %s" $((`bytes`-$last)) " bytes per second"
done

> www.aspeedtest.com to verify my broadband internet connection speed. I've
> seen some scripts in Google but I have seen direct commands for it.
> 
> Some software on Windows claim to boost internet speed by 220%!!! Just

I've recently seen claims at 1-3" penis enlargement in my mailbox. So I
know how tempting such bullish claims can be! 3" sounds like a lot, I
guess, but as a percentage its not such a big deal, so I am passing on
this stuff for now...

> Can we boost Internet connection speed in Linux? If the answer is "yes",
> then how? Thanks for the help.

Windows users are assumed to be hung up on dialup, and thus Uncle Bill
sets them up that way. Linux is more set up for macho LAN type speeds, so
the typical MS weenie-shortcomings don't exist. 

The only likely benefit you'll get is if you have a highbandwidth
connection with typically high latency round-trips (such as Orient ->
USA). Then you can adjust the TCP receive window upwards and see if
that helps. For most of us, there is no need.

-- 
Hal Burgiss
 


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to