After all this time no on could say on here what command to use to copy with rsync from the NASLite to a Linux box.
With help from a person that uses rsync a lot. He showed me how to use it. So with this one line command it started to copy every thing in Disk-0 !
Code:
rsync -av 192.168.2.80::Disk-0 .
This will copy every thing to the folder you did the command in.
He showed me how you can list all the folders it shares out with a command like this:
Code:
rsync 192.168.2.80::
Or could put it's name like this
Code:
rsync NASLite::
He said because the NASLite is a server you use the two ":".
It looks like you can't use the name but only the IP.
You can list the folders like this:
Code:
rsync 192.168.2.80::Disk-0/
Then if you just want to copy a folder like this:
Code:
rsync -av 192.168.2.80::Disk-0/test .
Or if you just want to test what it will do add a -n in like this:
Code:
rsync -avn 192.168.2.80::Disk-0/test .
That would copy every thing in test folder on the NASLite to the folder your in when you type the rsync command. Or they call it the mirror in NASLite.
A big thank you to Brian who told me how to use this in email. But he don't have a NASLite.
-Raymond Day