How to configure the rsync daemon on FreeBSD so that I can connect to my freeNAS server. And create a module for my FreeBSD. FreeBSD is my rsync client and freenas rsync server.
krkbryant08 said:how to configure the rsync daemon on FreeBSD so that i can connect to my freeNAS server. and create a module for my freebsd. freeBSd is my rsync client and freenas rsync server
# cd /usr/ports/net/rsync
make install
freenas:~# rsync -avz kapdian@192.168.105.142::fbackup /mnt/kirk/
receiving incremental file list
sent 29 bytes received 53 bytes 164.00 bytes/sec
total size is 0 speedup is 0.00
krkbryant08 said:freenas:~# rsync -avz kapdian@192.168.105.142::fbackup /mnt/kirk/
receiving incremental file list
sent 29 bytes received 53 bytes 164.00 bytes/sec
total size is 0 speedup is 0.00
---why is it that i cannot pull the files on my freeBSD OS.
kapdian - is the username on my freeBSD
192.168.105.142 - is the ip address of my freeNAS
fbackup - is the name of the module on freeBSD
/mnt/kirk/ - is where i stored all my .tar files on my freeBSD OS.
% rsync -avz [email=kapdian@192.168.105.142]kapdian@192.168.105.142[/email]:~/fbackup/ /mnt/kirk/
rsync -avz kapdian@192.168.105.142:~/fbackup/ /mnt/kirk/
kapdian@192.168.105.142's password:
Permission denied (publickey,password).
rsync: connection unexpectedly closed (0 bytes received so far) [Receiver=3.0.7]
krkbryant08 said:It worked! But i have another problem.
When I tried to run this command
Code:rsync -avz root@192.168.105.142:/root/ ~/kirk
I cant see the tar files I stored in root on my FreeBSD.
Whats is the rsync option so that I can pull .tgz files?