Displaying 1 result from an estimated 1 matches for "someotherfold".
Did you mean:
someotherfile
2009 Feb 08
0
rsync over ftp problem
...everything is in a bash script):
1. I mount the ftp location with curlftps with:
curlftpfs -o user=myusernamec@mydomain.com:mypassword ftp://ftp.mydomain.com
~/ftp_backups
2. I then try to sync the files
rsync -a -r --no-o --no-g --safe-links --exclude=mkstemp --progress
/somefolder ~/ftp_backups/someotherfolder/
and it all goes bonkers in the form of this error:
rsync: mkstemp "/someotherfolder/.prova.txt.2NZFm5" failed: Operation not
supported (95)
I believe this has something to do with all files in the ftp mount being
owned by root instead of my user, but at this point I don't know wh...