I want to package my application for linux, I use zip/tar.gz/7z/rar to do the compress in Windows.

Because I do the compress in Windows, so when I extract the package in Linux, the file permission is reset.

The problem is Only the tar.gz can let me extract runable files, other format (zip/7z/rar) not (the file permission is reset to 644).

So my question is how to compress my files using zip/7z/rar while reset the permission to 755.

link|improve this question

50% accept rate
feedback

2 Answers

up vote 0 down vote accepted

As far as I know, zip and rar do not store permissions, I guess 7z also doesn't do it on Windows.

So you can't actually "set" the permisisons while compressing in these formats. I'd suggest using a tar based archive for linux targets. If you absolutely need zip or rar, consider using a script that calls chmod after unpacking.

link|improve this answer
feedback

Zip does support *nix permissions, but there is no tool under Windows that lets you set them arbitrarily. It is possible to write a Python script that can set them though.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.