D-Link Forums

The Graveyard - Products No Longer Supported => D-Link Storage => DNS-323 => Topic started by: beefy314 on January 26, 2010, 06:59:39 AM

Title: Fastest way to transfer files from vol 1 to vol 2
Post by: beefy314 on January 26, 2010, 06:59:39 AM
What's the fastest way to transfer files from volume 1 to volume 2?

i tried to remove the drive and put it on a dock however, windows doesn't recognize the hard rive even after installing IFS drive software
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: AKFubar on January 26, 2010, 09:39:24 AM
I think I remember seeing this before on this forum.  I think a direct copy from volume one to volume two is the fastest.  That is by using the "copy" or "move" in Windows - I don't think this goes out on the network.  As soon as you go out to the network the transfer is slower.
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: pudeldoodle on January 26, 2010, 10:05:17 AM
using telnet you can copy directly from one disk to the other (both being in the DNS-323).

this is honestly the fastest way to do it, but don't expect a progress bar though!

++
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: fordem on January 26, 2010, 01:47:54 PM
I think I remember seeing this before on this forum.  I think a direct copy from volume one to volume two is the fastest.  That is by using the "copy" or "move" in Windows - I don't think this goes out on the network.  As soon as you go out to the network the transfer is slower.

ANY & EVERY file manipulation from one disk to the other done using the Windows explorer will cross the network twice, once coming and once going - you need to remember where the manipulation is being done - ask this question - is the data being manipulated on the same host where the data is stored?  if the answer is no, then it's crossing the network.

The fastest way to move data from one disk to the other is to telnet into the box and use the appropriate linux commands - and since D-Link does not telnet access, you'll have to hack the box to make it happen.
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: gunrunnerjohn on January 26, 2010, 03:24:49 PM
The fastest way to move data from one disk to the other is to telnet into the box and use the appropriate linux commands - and since D-Link does not telnet access, you'll have to hack the box to make it happen.
Of course, the "hack" is pretty benign, and is easy to do. :)
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: beefy314 on January 27, 2010, 03:52:16 AM
Now this will be a problem as i'm new to linux  :-\

Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: fordem on January 27, 2010, 04:26:55 AM
Now this will be a problem as i'm new to linux  :-\

Taking that into consideration, you now have two options - spend the time to learn a little linux - or spend the time transferring the data.
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: pudeldoodle on January 30, 2010, 10:46:09 AM
beefy,

install fun_plug, install then activate telnet. (http://wiki.dns323.info/howto:fun_plug)
install a small software called Putty.

Use Putty to telnet your box.

when you have telnet access you can navigate your box from its OS (linux),
"ls" will show you the files/folder in the actual folder you are in
"cd" will allow you to go to a folder, "cd mnt" for example, then cd HD_xx, cd your folder (Case sensitive!)

hitting TAB key will complete the name of the file/folder you're typing, if you have a folder called azerty, type cd aze then push TAB, it will complete the name.

you will find your disks in /mnt, with names like HD_a1, HD_b1
spot your files and remember their path (with ls and cd)

then you can move file using "mv", like this:

mv /mnt/HD_xx/your folder(/your file) /mnt/HD_xx/your folder/

voilą! I hope it's understandable

Let me know!

Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: beefy314 on January 31, 2010, 08:32:33 AM
Thanks pudeldoodle for a guide that i can understand  :)
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: gunrunnerjohn on January 31, 2010, 08:40:00 AM
Note the previous post is moving the files, if you want to copy them, use the CP command.
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: pudeldoodle on February 01, 2010, 09:18:04 AM
thanks for the clarification gunrunner, but I assumed that transferring files was moving them :D
So indeed to copy it's cp
Beefy, no problem for the "guide" ;-)
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: gunrunnerjohn on February 01, 2010, 10:53:23 AM
If I had a nickel for every time someone said one term and really meant something else... ;)  Just figured it would make sure the expected result was obtained.

FWIW, I routinely copy files between locations, even when I'm moving them.  That way, if something goes wrong during the move, I haven't scrambled the source files and I can try again. :)
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: pudeldoodle on February 02, 2010, 11:59:31 PM
;-)  ::)  ;D
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: beefy314 on March 08, 2010, 01:58:36 AM
How do I go to a directory with 2 words and a space in between them?

I couldn't "cd" or copy a directory with two words for example "HD Movies"
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: gunrunnerjohn on March 08, 2010, 05:13:39 AM
Did you put the name in double quotes?
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: beefy314 on March 08, 2010, 09:06:30 AM
No.. the name of the directory is HD Movies and i can't seem to go to the directory with the command cd
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: dosborne on March 08, 2010, 09:55:35 AM
How do I go to a directory with 2 words and a space in between them?

I couldn't "cd" or copy a directory with two words for example "HD Movies"

Type the first letter or two of the directory "cd HD" then press the TAB key to autofill in the rest. Or, use "cd HD*".

As a regular practice, it is recommended that you don't use spaces as they can cause all sorts of issues. Use an underscore or some other character whenever possible.
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: beefy314 on March 08, 2010, 10:16:46 AM
Thanks dosborne! That tab helped alot!
Title: Re: Fastest way to transfer files from vol 1 to vol 2
Post by: slipgate on March 08, 2010, 10:00:29 PM
I set up a scheduled FTP job to copy from one volume to another.  I'm not sure if that used the internal loopback adapter, or if it actually went out to the network and back.  There's no progress bar, and I'm not sure if it was much faster than copying to my PC and back.  Anyone else tried it?