Fastest Copy Methods ?

Joined
Apr 11, 2007
Messages
85
Reaction score
0
Points
6
Location
UK
Your Mac's Specs
iMac 20
I am trying to copy a 17,000 image / 300GB iPhoto Library to a NAS....I am looking at a Finder window that tells me it will take another 841 hours !!

Is there a faster copy method I can use ? Will a unix cp work faster than Finder ?

Follow on question....can I get a cp from Terminal to copy a file with spaces in the filename: "iPhoto Library" ?
 
Joined
Oct 22, 2007
Messages
8,967
Reaction score
287
Points
83
Location
London
Your Mac's Specs
Mac Mini Core i7 2012 | White 2009 MacBook 2 Ghz | 733 Mhz G4 Quicksilver
It should take that long - although copying lots of small files takes longer than a few large files.

Can you attach to the NAS directly, rather than airport.

AS a comparison, it did take about 24 hours for me to copy 1.5 TB of files over 100 Base T ethernet when restoring a server from a back-up
 
Joined
Mar 17, 2008
Messages
6,879
Reaction score
191
Points
63
Location
Tucson, AZ
Your Mac's Specs
Way... way too many specs to list.
Yep, the time is due to the connection to the storage device, not the copy method. Any mass copy over wifi will crawl.
 
Joined
Jul 2, 2007
Messages
3,494
Reaction score
204
Points
63
Location
Going Galt...
Your Mac's Specs
MacBookAir5,2:10.13.6-iMac18,3:10.13.6-iPhone9,3:11.4.1
Perhaps dd might add some speed. It does things a bit more directly than cp:

# dd if=/directory/with/files of=/target/directory bs=blocksize

if= Represents the source or input device.

of= Represents the target or output device.

In "terminal.app" you can run a man dd for more options.
 
Joined
Jul 2, 2007
Messages
3,494
Reaction score
204
Points
63
Location
Going Galt...
Your Mac's Specs
MacBookAir5,2:10.13.6-iMac18,3:10.13.6-iPhone9,3:11.4.1
Follow on question....can I get a cp from Terminal to copy a file with spaces in the filename: "iPhoto Library" ?

Use quotes:

cp -p "iPhoto Library" "iPhoto Library-2"
 
OP
B
Joined
Apr 11, 2007
Messages
85
Reaction score
0
Points
6
Location
UK
Your Mac's Specs
iMac 20
thanks for the insights.....the network is wired not wireless but I take your point I am waiting on serialisation time for the library and not a lot I can do to help.

If the current Finder copy fails I might just give the cp " " a whirl and if that also fails then a man dd will be my next port of call....thanks for the insights
 

Shop Amazon


Shop for your Apple, Mac, iPhone and other computer products on Amazon.
We are a participant in the Amazon Services LLC Associates Program, an affiliate program designed to provide a means for us to earn fees by linking to Amazon and affiliated sites.
Top