Quickest Way To Move 160GB?

Bob, correct me here if Im wrong, but TAR isnt a windows file ... its Linux...

This process is also available for the windows platform although you would have been correct a few years ago. You can also get gzip and many other linux utilities for windows based boxes.

You will find a collection of GNU utilities (including gzip and tar) ported to Windows here:

Native Win32 ports of some GNU utilities

You can also use 7-zip to create a tarball (file ext .tar) or purchase a product called Wintar.
 
Last edited:

My Computer My Computer

At a glance

Windows 7 Ultimate x64Q6600 @2.4ghz (G0 stepping)8 gb OCZ vista essential sli PC-6400Dual 9800gt in SLI mode
Computer Manufacturer/Model Number
Systemax N2000 Gaming PC
OS
Windows 7 Ultimate x64
CPU
Q6600 @2.4ghz (G0 stepping)
Motherboard
XFX nforce 680i LT
Memory
8 gb OCZ vista essential sli PC-6400
Graphics Card(s)
Dual 9800gt in SLI mode
Sound Card
Integrated 8.1 High Definition Audio
Monitor(s) Displays
Dual Sceptre x246w 24 inch monitors
Screen Resolution
1920 x 1200 each monitor
Hard Drives
500 GB SATA II / 7500 rpm
PSU
Cooler Master Real Power Pro 1250W
Case
N2000 server tower
Cooling
Thermaltake Bigwater 760 is
Keyboard
MS Intelitype 6000 v2.0
Mouse
MS Intelipoint 6000
Internet Speed
Wi-power 1.5GB up / 512k down
Other Info
Windows 7 Ultimate x64, Windows 7 Pro x64, Windows Home Premium X86, Windows XP pro, Windows Home Server x86, Ubuntu 10.4 x86 and x64, Ubuntu server 10.4, SQL Server 2005, MySQL 5.0
Without in any way wishing to play down others' suggestions, I don't believe file compression or "cabification" is going to make any difference in your scenario (two local drives). In fact, it would take (far) longer to first compress 160GB into a tight ball, then copy, then decompress on the target drive. That strategy is valid under certain circumstances - very slow network links for example - but the "bandwidth" of the underlying hardware between the source and destination is not the primary bottleneck in this instance. Instead, what's important is the way your chosen copy tool breaks up data into segments and invokes OS functionality to copy it across.
I agree, avoid compression. It will take long to compress and uncompress than it would to just move them.

Not quite accurate...compressing data on the box prior to transmitting over data lines will be faster than sending uncompressed data over a usb or even broadband depending on size of file. I agree that for small files there will not be any savings (and it may take longer to compress/decompress) but as files get larger the savings multiply. compression can result in 30%-50% smaller files, (sometimes even more) unless the files have fixed field length date fields instead of variable length data fields, which can substantially reduce the time/bandwidth required to move a file. Running a compression or decompression natively is extremely fast unless you are using a really old box. Furthermore you don't need to decompress the files at storage end unless you want/need access to the contents there.

I do agree that the easy way is to send it native (The original post specified fastest way to send 160gb, not ease of process).
 
Last edited:

My Computer My Computer

At a glance

Windows 7 Ultimate x64Q6600 @2.4ghz (G0 stepping)8 gb OCZ vista essential sli PC-6400Dual 9800gt in SLI mode
Computer Manufacturer/Model Number
Systemax N2000 Gaming PC
OS
Windows 7 Ultimate x64
CPU
Q6600 @2.4ghz (G0 stepping)
Motherboard
XFX nforce 680i LT
Memory
8 gb OCZ vista essential sli PC-6400
Graphics Card(s)
Dual 9800gt in SLI mode
Sound Card
Integrated 8.1 High Definition Audio
Monitor(s) Displays
Dual Sceptre x246w 24 inch monitors
Screen Resolution
1920 x 1200 each monitor
Hard Drives
500 GB SATA II / 7500 rpm
PSU
Cooler Master Real Power Pro 1250W
Case
N2000 server tower
Cooling
Thermaltake Bigwater 760 is
Keyboard
MS Intelitype 6000 v2.0
Mouse
MS Intelipoint 6000
Internet Speed
Wi-power 1.5GB up / 512k down
Other Info
Windows 7 Ultimate x64, Windows 7 Pro x64, Windows Home Premium X86, Windows XP pro, Windows Home Server x86, Ubuntu 10.4 x86 and x64, Ubuntu server 10.4, SQL Server 2005, MySQL 5.0
Not quite accurate...compressing data on the box prior to transmitting over data lines will be faster than sending uncompressed data over a usb or even broadband depending on size of file. I agree that for small files there will not be any savings (and it may take longer to compress/decompress) but as files get larger the savings multiply. compression can result in 30%-50% smaller files, (sometimes even more) unless the files have fixed field length date fields instead of variable length data fields, which can substantially reduce the time/bandwidth required to move a file. Running a compression or decompression natively is extremely fast unless you are using a really old box. Furthermore you don't need to decompress the files at storage end unless you want/need access to the contents there.

I do agree that the easy way is to send it native (The original post specified fastest way to send 160gb, not ease of process).

By way of manly experiment...

Source: [local drive] W:\MX\*.* (about 4.6GB worth of various media files)
Dest: [local drive] V:\
Machine: unadulterated Q6600 with 8GB of RAM running W7x64

First, a straight robocopy, uncompressed:

Code:
W:\>robocopy w:\mx v:\mx *.* /E /MT:8
...
Total Copied Skipped Mismatch FAILED Extras
Dirs : 35 35 0 0 0 0
Files : 831 831 0 0 0 0
Bytes : 4.683 g 4.683 g 0 0 0 0
Times : 0:21:53 0:02:09 0:00:00 0:00:16

Two minutes and nine seconds for the copy.
Effective throughput without compression: ~37 MBytes/sec.

================================================

Now using (command-line) 7-zip to first compress those same data with the default compression settings:

Code:
C:\Program Files\7-Zip>7z a -r w:\ w:\MX\

It took 27 minutes (frickin' thing doesn't do stats by default and I couldn't be bothered doing it again) to produce this archive:

Code:
W:\>dir .7z*
 Volume in drive W is Mirror
 Volume Serial Number is A4F5-EDC0
 Directory of W:\
16-Oct-09  12:07 PM     4,911,076,674 .7z
               1 File(s)  4,911,076,674 bytes
               0 Dir(s)  32,615,526,400 bytes free

Now copying that across to the second drive, again using Robocopy:

Code:
               Total    Copied   Skipped  Mismatch    FAILED    Extras
    Dirs :         1         0         1         0         0         0
   Files :         1         1         0         0         0         0
   Bytes :   4.573 g   4.573 g         0         0         0         0
   Times :   0:03:21   0:00:50                       0:00:00   0:00:50

Total time taken: 27min + 0:50 = 27:50
Effective throughput with compression: ~2.8 MBytes/sec

The compression strategy would be worthwhile if we were traversing a "wet string" network link. For local-to-local copies it's counter-productive. My technique may be questionable, but even if the "with compression" results were an order of magnitude better they'd still fail to beat the uncompressed copy.
 

My Computer My Computer

At a glance

Win7x64
Computer Manufacturer/Model Number
Multiple machines in various stages of decomposition.
OS
Win7x64
Your Machine: unadulterated Q6600 with 8GB of RAM running W7x64

27 min to compress the 4.6gb file? I think something is wrong there.

My machine: also unadulterated Q6600 with 8GB of RAM running W7x64 :D
You've got to love a good thing.

Using gzip compressed 7.5gb of ISO's in a little over 5 min (20% compression rate, I would expect better from basic documents but who knows). I will give you the fact that for 160gb native transfer will probably meet or exceed the speed of compressing and then transmitting to a usb/firewire attached drive. I'm actually used to doing Databases.

I bow to your proof :cry: although I think gzip is a better compression tool.
I DO use 7zip myself for normal zip/unzip and find it a good and worthy tool.

Thanks for making me check this out, having a hard time talking around my foot....I learned something tonight. I will have to check out the robocopy product although I get those speeds without it.
 

My Computer My Computer

At a glance

Windows 7 Ultimate x64Q6600 @2.4ghz (G0 stepping)8 gb OCZ vista essential sli PC-6400Dual 9800gt in SLI mode
Computer Manufacturer/Model Number
Systemax N2000 Gaming PC
OS
Windows 7 Ultimate x64
CPU
Q6600 @2.4ghz (G0 stepping)
Motherboard
XFX nforce 680i LT
Memory
8 gb OCZ vista essential sli PC-6400
Graphics Card(s)
Dual 9800gt in SLI mode
Sound Card
Integrated 8.1 High Definition Audio
Monitor(s) Displays
Dual Sceptre x246w 24 inch monitors
Screen Resolution
1920 x 1200 each monitor
Hard Drives
500 GB SATA II / 7500 rpm
PSU
Cooler Master Real Power Pro 1250W
Case
N2000 server tower
Cooling
Thermaltake Bigwater 760 is
Keyboard
MS Intelitype 6000 v2.0
Mouse
MS Intelipoint 6000
Internet Speed
Wi-power 1.5GB up / 512k down
Other Info
Windows 7 Ultimate x64, Windows 7 Pro x64, Windows Home Premium X86, Windows XP pro, Windows Home Server x86, Ubuntu 10.4 x86 and x64, Ubuntu server 10.4, SQL Server 2005, MySQL 5.0
Quickest way to move it you say....

Just lift up the HD from original spot, and place it down in new spot!

I know, sorry couldn't resist.
 

My Computer My Computer

At a glance

Win 7 Ultimate x64Intel i7 950 OC'd @ 4.0Ghz (SpeedStep ON)3x2GB Patriot Extreme Viper II Sector 7 DDR3 ...ATI MSI 5870 900mhz/1300mhz
OS
Win 7 Ultimate x64
CPU
Intel i7 950 OC'd @ 4.0Ghz (SpeedStep ON)
Motherboard
ASUS P6X58D-E BIOS 0303
Memory
3x2GB Patriot Extreme Viper II Sector 7 DDR3 @ 1600mhz
Graphics Card(s)
ATI MSI 5870 900mhz/1300mhz
Sound Card
Onboard Realtek ALC889
Monitor(s) Displays
2 X 24" BenQ G2412HD
Screen Resolution
1920x1080p
Hard Drives
Intel X25-M 80 GB (SSD)
W.D. Caviar Black 1TB (SATA)
Seagate Barricuda 1TB (SATA)
Seagate Barricuda 80GB (SATA)
PSU
Corsair AX850
Case
Antec 1200
Cooling
Lots and Lots of Air!
Keyboard
Razer Lycosa
Mouse
Microsoft Sidewinder
Internet Speed
25Mbps/1Mbps
27 min to compress the 4.6gb file? I think something is wrong there.

Yeah, it was downright painful. I don't think it's broken though. 7zip just seems rather aggressive in its default compression, and the fact that the content was not particularly compressible probably didn't help.

... although I think gzip is a better compression tool.
I DO use 7zip myself for normal zip/unzip and find it a good and worthy tool.

I picked 7zip for the test mostly for its independence from Windows itself, and for its good reputation. I doubt any compression utility could do it 20 times faster, which is what it would take to approach the uncompressed throughput.

Thanks for making me check this out, having a hard time talking around my foot....I learned something tonight. I will have to check out the robocopy product although I get those speeds without it.

Thank you for an interesting discussion :)

Robocopy is built into the OS. That by itself is worth a lot to me, given my own typical usage patterns.
 

My Computer My Computer

At a glance

Win7x64
Computer Manufacturer/Model Number
Multiple machines in various stages of decomposition.
OS
Win7x64
Hi all

Have I missed something here - but why not use something like Acronis - it will back up FILES as well as entire Disk Images (partitons).

1) start TI.
2) Select Data
3) click against folders you want to copy
4) backup to external HDD using with highest compression ratio
5) restore to target disk

job done -- won't take that long either.

Cheers
jimbo
 

My Computer My Computer

At a glance

Linux CENTOS 7 / various Windows OS'es and se...Intel i7 Intel i58GB, 16GBOn Motherboard
Computer type
PC/Desktop
Computer Manufacturer/Model Number
Custom built, several laptops HP/ASUS
OS
Linux CENTOS 7 / various Windows OS'es and servers
CPU
Intel i7 Intel i5
Memory
8GB, 16GB
Graphics Card(s)
On Motherboard
Sound Card
Realtek HD audio
Monitor(s) Displays
Apple Cinema display, Samsung LCD
Screen Resolution
1920 X 1080
Hard Drives
4 X 1TB SATA
Mouse
Toshiba wireless laser
Internet Speed
> 20MB up
Back
Top