yadayada / acd_cli

An unmaintained command line interface and FUSE filesystem for Amazon (Cloud) Drive
Other
1.35k stars 167 forks source link

fuse cp issue #498

Closed repnzscasb closed 7 years ago

repnzscasb commented 7 years ago

Mounted using: acd_cli -dd -nl mount -fg acd

acd $ mkdir test
acd $ cd test
test $ dd if=/dev/zero of=f1 bs=1M count=1
1+0 records in
1+0 records out
1048576 bytes (1.0 MB) copied, 1.03823 s, 1.0 MB/s
test $ ls -l
total 0
-rwxrwxrw- 1 root root 1048576 Dec  7 19:33 f1
test $ cp f1 f2
cp: failed to extend ‘f2’: Function not implemented
test $ ls -l
total 0
-rwxrwxrw- 1 root root 1048576 Dec  7 19:33 f1
-rwxrwxrw- 1 root root       0 Dec  7 19:34 f2
test $ rm f2
test $ cat f1 > f2
test $ md5sum f1 f2
b6d81b360a5672d80c27430f39153e2c  f1
b6d81b360a5672d80c27430f39153e2c  f2
yadayada commented 7 years ago

You should use cp --sparse=never.