On Mon, 2018-06-11 at 01:22 -0400, Robert McBroom via users wrote:
> On 06/10/2018 09:53 PM, Samuel Sieb wrote:
> > On 06/08/2018 08:48 PM, Robert McBroom via users wrote:
> > > On 06/08/2018 10:57 PM, Robert McBroom wrote:
> > > > System is mounted with CIFS with write permission.  NAS only uses 
> > > > version 1.0.
> > > > 
> > > > Sample effects
> > > > rsync . -av /mnt/external/f27/Packages
> > > > 
> > > > rsync: mkstemp 
> > > > "/mnt/external/f27/Packages/.ffmpeg-libs-3.3.6-1.fc27.x86_64.rpm.eZUrRd"
> > > >  
> > > > failed: Permission denied (13)
> > 
> > It's likely that you can't create files that start with . on CIFS or 
> > NTFS.  Try using the "--inplace" option with rsync.
> 
> No problem with . filenames in general just in this instance the 
> transmission of the files is inhibited.  Apparently something is 
> happening with the temporary file creation.
> Using "--inplace" does the copy as desired.  There is the message about 
> the permissions which are apparently inherited from the directory.

Slightly OT: if you have admin access to the NAS you might want to
consider using rsyncd (rsync daemon) on the server side. It's much more
efficient because it doesn't require rsync on your client machine to
read entire files over the network to check for changes. Rsync does
this in order to calculate deltas, but the effect is counterproductive
when it's doing it over NFS. Using rsyncd I've measured a 10x
improvement on my system (with rsnapshot, which is built on top of
rsync).

poc
_______________________________________________
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org/message/LICTA55XD4RY5NAMB7DQN42BMK7XTCJD/

Reply via email to