diff options
author | https://me.yahoo.com/a/uSGZkc1_k._MfptG8E4Hsqx6tUJaerbXGQ--#ac79f <Andreas_Leitz@web> | 2012-11-19 21:46:49 +0000 |
---|---|---|
committer | admin <admin@branchable.com> | 2012-11-19 21:46:49 +0000 |
commit | b5899cfa5563e530210754d3fd1bfe887070b963 (patch) | |
tree | c14fded2e530a9358161a407f73a488858a18090 | |
parent | 82cb340c3603d899daaac505d286eb80f3c46ed4 (diff) |
-rw-r--r-- | doc/forum/Special_remote_without_chmod.mdwn | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/forum/Special_remote_without_chmod.mdwn b/doc/forum/Special_remote_without_chmod.mdwn new file mode 100644 index 000000000..46ace443b --- /dev/null +++ b/doc/forum/Special_remote_without_chmod.mdwn @@ -0,0 +1,12 @@ +Apparently, the tablet computer I'm using (Galaxy Tab 2, non-rooted) does not export the sd cards via mass storage protocol (UMS) any more. In order to be able to use a special remote for my mp3-files, I installed an ftp/ssh server on the tablet device and used curlftpfs/sshfs (fuse file systems) to mount the sd cards on my local Linux machine. In this way, it is is quite easy to setup the special remote (e.g. "git-annex initremote galaxy-tab type=directory directory=$HOME/mnt/galaxy-tab encryption=none"). + +Problems arise, when files are transferred to the special remote. From the logs of the ftp server, I can see that the actual copy operation is successful (the data is written to the file system), but the subsequent "chmod" that changes the permissions to read-only fails. The output on the console of a "git-annex copy -t galaxy-tab" is + + copy 01 some.mp3 (to galaxy-tab...) + failed + git-annex: copy: 1 failed + + +Therefore my question: is it possible to perform a file transfer to a special remote (type=directory) without the final "chmod"-operation? + +Thank you. |