You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running cp -a foo ~/ouisync/repo, where ~/ouisync/repo is a mounted ouisync repo, and foo is a directory with contents I get an empty foo directory inside ~/ouisync/repo which is then synced to other peers and I get the following error:
cp: setting permissions for '/home/<user>/ouisync/phone/foo': Operation not supported
To compare, using cp -a into a regular filesystem that doesn't support *nix permissions (FAT32) results in a successful recursive copy with the following output:
cp -a foo /mnt/tmp/
cp: failed to preserve ownership for '/mnt/tmp/foo/bar/baz': Operation not permitted
cp: failed to preserve ownership for '/mnt/tmp/foo/bar': Operation not permitted
cp: failed to preserve ownership for '/mnt/tmp/foo': Operation not permitted
This is what I would expect from ouisync. It is not unusual for programs, gui or otherwise, to default to preserving permissions on copy so this effectively stops some programs from copying data into a ouisync mount.
The text was updated successfully, but these errors were encountered:
When running
cp -a foo ~/ouisync/repo
, where~/ouisync/repo
is a mounted ouisync repo, andfoo
is a directory with contents I get an emptyfoo
directory inside~/ouisync/repo
which is then synced to other peers and I get the following error:To compare, using
cp -a
into a regular filesystem that doesn't support *nix permissions (FAT32) results in a successful recursive copy with the following output:This is what I would expect from ouisync. It is not unusual for programs, gui or otherwise, to default to preserving permissions on copy so this effectively stops some programs from copying data into a ouisync mount.
The text was updated successfully, but these errors were encountered: