Transfering files over USB2.0 (500GB)

0

I am transferring 500GB of files from an internal (SATA) HDD to a external USB disk (2.5 inch, one of those that use the power line on USB to power themselves). As of now the rate at which it's copying is 1.3MB/second and the ETA is 100 hours. It's been copying for several days now.

Why?!

I'm copying an entire users folder off windows seven with a linux live OS (the disk fails to boot up to windows so the linux is loaded in the RAM, but it's a pretty high spec computer).

The system is using only about 200MB of ram and 40% of CPU.

Is it really badly fragmented? Is it supposed to take this long? Are there a lot of symbolic links maybe? Are there any enhancements I can make to speed this up without stopping the copying?

stackOverFlew

Posted 2013-04-03T02:10:00.190

Reputation: 331

2It is possible the reduced transfer speed is related to the same reason the disk won't boot properly. – Bon Gart – 2013-04-03T02:12:28.773

hmm... might the whole disk be corrupt then? – stackOverFlew – 2013-04-03T03:12:59.730

@stackOverFlew - Its entirely possible the performance is cause by a possible hardware problem. If the disk is fragmented that could cause some problems, so verify its not fragmented, thats a simple problem to solve. – Ramhound – 2013-04-03T12:05:25.527

Answers

3

Could be a number of things - over usage of the USB controller, file size/multiple file issues, power supply issues, partition setup, and the list goes on.

The first thing I'd look at is partition setup, which in turn relates to file size and/or multiple file issues. If the external HDD is formatted FAT or FAT32, stop now, reformat the hard drive as NTFS (obviously this wipes the drive, so backup first if you need to) and start the transfer again. FAT32 has file size restrictions of 4GB, anything larger (eg. a 1080p movie rip, DVD ISO etc) and the transfer speed will drop and eventually, nothing will happen. Similar situation with multiple files, USB is serial, meaning "in-line", so if you have 5 transfers going at once, the "bus" will slow down. 1 copy = full speed, 2 copies = half speed, 3 copies = quarter speed, 4 copies = 1/8 speed and so on.

Disconnect other (not needed) USB devices during the transfer. Each device, unless externally powered, pulls +5v from the USB controller and the computers power supply. Too many USB devices and things become unstable. Likewise if the computer's power supply is not very good. DC ripple or voltage fluctuations cause instability and erratic behaviour... not just on the USB (which is the mainboard), but on almost everything. This makes fault finding very difficult. Even more so if the computer is a laptop.

EDIT: I missed a part of you're original post - the part about the booting from a Linux Live CD because Windows won't boot...

What part of the boot process does it get to? Does it BSOD or reset or freeze?

It's unlikely to be fragmentation. And I'm unsure if maybe the Linux Live CD has USB limitaions (running at full speed (12Mb/s) rather than Hi-speed (400Mb/s))... but by the sounds of it, I'd be putting my money on bad sectors on the SATA hard drive.

I know you need to backup all the data you can while the drive is still alive, buy if you can get your hands on a hard drive diagnostics disk (dependent on the manufacturer of the suspect hard drive) or use the Ultimate Boot CD - which has most HDD diag tools (http://www.ultimatebootcd.com/download.html), and run a full diagnostics test, you will likely find multiple bad sectors. These are physical parts of the disk that can no longer be read (properly) and a good indication of imminent and irrepairable hard drive failure.

If that is the case, you may have to be satisfied with getting what you can.

That said, there is no way of knowing where the bad sectors on the hard drive are and which data is affected. So you may be able to get more data by drilling into the directory structure and doing folder by folder (rather than trying to copy the whole lot in one go). If it stalls on a folder, drill into that and do sub-folder by sub-folder (or file by file) until you have worked around the bad data. Unfortunately there is nothing you can do about the data affected by a bad sector.

Let me know if you need more help or clarification.

Reece

Posted 2013-04-03T02:10:00.190

Reputation: 303

Thanks so much! The drive came formatted as NTFS by the manufacturer. There are no other copies going on at the same time. No other devices are connected and the computer is plugged in through the power supply, which I assume has a surge protector, not that it would necessarily fix the voltage fluctuations. – stackOverFlew – 2013-04-03T03:12:01.880

1You can edit your own answers at any reputation level - I've taken the liberty of doing so, and flagged for the other answer to be deleted by a moderator. SU works somewhat differently from other sites - you're encouraged to post one answer. Feel free to edit and further improve your answer, since all I did was combine them! – Journeyman Geek – 2013-04-03T03:55:20.820

regarding your question, it gets to the part where it says startup failure. thanks so much for the very detailed answer! I'll definitely check out the Ultimate Boot CD. But for now I guess I will wait for it to copy or error out. It has not error-ed out yet so I will let it keep copying. Once it's done I'll give the ultimate boot CD a go though – stackOverFlew – 2013-04-03T04:00:21.727