Transfering files via cat 5 cable

Soldato
Joined
1 Mar 2007
Posts
4,795
Location
Portsmouth
Highest speed iam getting is around 600KB/sec, and its taking an ageeeeeeee to transfer a few GB.

Should I be getting a quicker speed than this?
 
I read on a forum of a guy who was getting awful speeds via transfer and he solved it by running "PC Booster" and chose the auto tune feature.

Apparently it changed "MTU TTL RWIN" and his transfers were fast again.

No idea if the above works, I've never tried it so use at your own risk.
 
If a client is connected USB to the network and you are transferring from/to that client that speed is not bad. But if both are connected via Cat 5, something appears to be wrong.
 
Yes!

iirc Cat5 is good for 100mbps at least (so around 10mb per sec).
Cat6 is where you start going to 1gbps.

All the above is from memory and may not be quite right though.

Cat5e is rated to 1Gbps. Chances are any network cable bought in the last decade will be 5e not 5.
 
Are you copying the files or moving them? Moving will take longer as it deletes the file after transfer so holds things up a bit. Shouldn't be that slow mind. Antivirus set too high maybe?
 
Are you copying the files or moving them? Moving will take longer as it deletes the file after transfer so holds things up a bit. Shouldn't be that slow mind. Antivirus set too high maybe?

Both, both PC and laptop are running NOD32-not sure if the settings are to high

have you connected the PCs via a hub/switch/router or are you using a cross over cable?

Just using a cable like this connected to both machines http://www.vanlierde.ca/john/articles/MyInternetDoesntWork/html/graphics/cat5cable.jpg

no hub/switch/router

depends on what how big each file is.

If it's just a couple of huge files then you should be getting much higher speed.

If it's hundreds of little files then it sounds about right.

Most files are around 200-300MB

Thanks for your advice so far
 
Also have you tried copying through the command prompt using xcopy ? I've been recently (in about the last 10 minutes) been transferring 250GB worth of files from one computer to another and it was stating a good few hours with the windows copy box. Fire up the same task using xcopy and it gets it done in a fraction of the time.
 
Sounds likes it's connected at 10mbps.

Which OS's?
Check connection rate in task manager?

Sorry forgot to say both on win7 x64. How do you check the connection rate in TM?

Also have you tried copying through the command prompt using xcopy ? I've been recently (in about the last 10 minutes) been transferring 250GB worth of files from one computer to another and it was stating a good few hours with the windows copy box. Fire up the same task using xcopy and it gets it done in a fraction of the time.

Nah ive not, how do you do that?
 
Go into the command prompt (windows key+r then type cmd). Then use xcopy "source" "destination" and there are a lot of switches you can use, but you can check these by doing xcopy /? which will list them.

For example, I've just copied 100GB of tv shows from my main computer to my media centre one. This is going through a gigabit switch and it using around 65% of the network connection on both pcs. The switches I have used are as follows:
/e - copies all directories and sub-directories including empty ones
/v - verifies each file copied
/c - continues if it encounters an error
/r - overwrites read only files
/i - forces it to create folders which dont yet exist

The full command I type ends up being:
xcopy /e /v /c /r /i "d:\tv shows\*.*" "\\media-centre\videos\tv shows\"
That copies everything from the tv shows folder on my d:\ drive to a computer on my network called media-centre into a share called videos. Now you may have to replace 'media-centre' with the IP address of your second computer but it should still work.
 
Last edited:
Back
Top Bottom