I want to transfer a whole directory from one Linux system to another.
To do this, i tried
ZipUtil.pack on the source system
- transfer the bytes (Stream them to the target system)
- and
ZipUtil.unpack on the target system
The Problem is, I don't want to retain file system permissions and it does not work with my setup (POSIX Operation not Permitted).
Currently there seems to be no way to disable it?
(I wrote a custom Unpacker as a workaround)