flying-circus / pyfilesystem

Automatically exported from code.google.com/p/pyfilesystem
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

coreutils cp won't work #196

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
When i try to copy a file to a tahoe-lafs-mounted directory, i get the 
following:

cp: cannot create regular file 'test': No such file or directory

The strace exerpt:

open("test", O_WRONLY|O_CREAT|O_EXCL, 0644) = -1 ENOENT (No such file or 
directory)

Though dd works (and triggers the 
https://code.google.com/p/pyfilesystem/issues/detail?id=186 bug if used w/o the 
workaround):

open("test", O_WRONLY|O_CREAT|O_TRUNC, 0666) = -1 EFAULT (Bad address)

Original issue reported on code.google.com by zl29ah@gmail.com on 29 Mar 2015 at 11:29