Unfortunately no one can be told what fun_plug is - you have to see it for yourself.
You are not logged in.
I have a iomega Home Media Network Hard Drive ( 1Tb) that has content about 600gb. Is it possible to set dns-313 with fun plugin to copy on it self all the content from iomega drive? The transfering with computer is so slow and i was wondering if it could be done without using computer, like tell dns with telnet to start copying all the files and after 1 day it would have done it , without the computer?
Hope I make some sense and someone could help me, I don´t have usb cable that I could attach the dns to iomega drive with that.
Tried mounting the iomega but without luck.
Last edited by mc_mice (2009-10-19 00:43:19)
Offline
definitely. depending on what the the iomega devices supports you could you ftp, scp, nfs, samba, rsync etc. i guess i would use rsync because it's very reliable, but it's probably not supported. the eaiest would be mounting the iomega with nfs or samba and then just cp'ing inside a screen session.
Offline
How can I mount with DNS? I tired to mount the folder on the iomega but it says no such file or directory
mount /dev/sd5 \\192.168.0.39\movie\movie
Am I way off? Help out a linux noob
Tried rsync, I think it is not supported, or can it be used without mounting?
Last edited by mc_mice (2009-10-19 14:55:22)
Offline
suppose you have loaded the cifs module on the dns-323 the syntax would be
mkdir /mnt/tmp
mount -t cifs -o user=user,passoword=pass \\iomegahost\directory /mnt/tmp
# then maybe:
cp -R /mnt/tmp/* /mnt/HD_a2/
Offline
thanks, managed with this and the other cifs help
Mine did worked with these commands:
mkdir -p /mnt/folder/
mount -t cifs //192.168.1.2/SharedFolder -o username=login,password=pass /mnt/folder/
then cp ..
Last edited by mc_mice (2009-10-19 23:49:12)
Offline