docker-netatalk icon indicating copy to clipboard operation
docker-netatalk copied to clipboard

Having problems moving large files

Open tkodev opened this issue 8 years ago • 3 comments

Moving large folder errors out: not enough free space (I have over 500 GB).

screen shot 2017-09-06 at 11 41 05 pm

Might be a netatalk issue? Anyone have any ideas?

tkodev avatar Sep 07 '17 03:09 tkodev

screen shot 2017-09-07 at 2 39 40 pm

Here's how the remaining space looks. The share partition should be 1.83 TB, my linux system / partition is 28.7 gb - I guess it's getting the wrong free space info.

tkodev avatar Sep 07 '17 18:09 tkodev

Maybe you have configured disk quota or something of the likes.

Could you provide the result of the following command docker exec -ti <netatalk container id> df -h?

Might be that the docker you’re using does not support such large volumes or something like that. I myself have it successfully running with multiple 3TB volume shares.

On 7 Sep 2017, at 05.42, Tony Ko [email protected] wrote:

Moving 5gb+ folder errors out: not enough free space (I have over 50 GB).

Might be a netatalk issue? Anyone have any ideas?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

cptactionhank avatar Sep 07 '17 19:09 cptactionhank

In case others search answer for the issue, for me it was solved by using separate share with volume pointing to mount point of host of drive.

So in docker run command i have now: --volume /media/my-volume:/shares/my-volume

instead of: /media:/shares

in afp.conf: [elements-hfsplus] path = /shares/elements-hfsplus

instead of: [shares] path = /shares/

volkovpishet avatar Jan 08 '22 09:01 volkovpishet