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
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)
The text was updated successfully, but these errors were encountered:
I want to transfer a whole directory from one Linux system to another.
To do this, i tried
ZipUtil.pack
on the source systemZipUtil.unpack
on the target systemThe 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)The text was updated successfully, but these errors were encountered: