I spent some time messing with this over the weekend. It's currently rsyncing to Amazon S3.
I installed fuse and the command line version of jungledisk.
First I had to
add the rpmforge repo. You may or may not have to do this. I could not install fuse on my system until I added this repo. You could install from source, but I wanted to yum it. I think all I installed was yum install fuse and yum install dkms-fuse. I will have to go back and look.
After fuse installed I ran "modprobe fuse"
Then you need to create a jungledisk INI file. To do this, I downloaded the USB Jungledisk version and set that up on my windows machine. I took the new INI file from Jungledisk USB and moved that to /etc/jd.ini on my CentOS server. You cannot use the full windows Jungledisk program to create the Linux INI file. You can use the USB windows version to create the INI file.
I created a /mnt/s3 directory and then ran:
./jungledisk /mnt/s3 -o config=/etc/jd.ini
Then tail -f /var/log/jungledisk.log to see what's going on. You should then be able to ls -l /mnt/s3 and see your S3 file system.
Kick off an rsync and watch for problems..
*Check the INSTALL file for details*
rsync -a --inplace /src/* /mnt/s3
I'm still messing with it, but this got me going. Not sure I'm going to use it, but I had to try.