How to make the archive with a password

Hi…
What program can I pack in a file archive and to protect the archive password?
…opensuse 13.2 kde 64 bit…

On 2014-12-20 13:26, 4scan wrote:
>
> Hi…
> What program can I pack in a file archive and to protect the archive
> password?
> …opensuse 13.2 kde 64 bit…

zip?

–encrypt
Encrypt the contents of the zip archive using a pass-
word which is entered on the terminal in response to a
prompt (this will not be echoed; if standard error is
not a tty, zip will exit with an error). The password
prompt is repeated to save the user from typing errors.


Cheers / Saludos,

Carlos E. R.
(from 13.1 x86_64 “Bottle” at Telcontar)

With the default installation of openSUSE is installed Ark, so I try to sort through the program specify the code archives but we now this does.
The terminal was really unknown, and also try to minimize install new applications.

I’m not sure what you are looking for.

I use “dar” for making backup archives. And I use the encryption option with that. The program is in the standard repo.

On 2014-12-20 14:46, 4scan wrote:
>
> With the default installation of openSUSE is installed Ark,

zip is installed by default. If you want to use Ark, you should have
made that clear in your question. I don’t use it, so I can’t help. But
it has a help menu with a manual, so I would look there.

There are other graphical archive frontends; for instance, PeaZip.

http://en.wikipedia.org/wiki/PeaZip

+++—-—-—-—-—-—-—-—-—-—-
PeaZip is a free and open-source[5] file manager and file archiver for
Windows, Linux[6] and BSD made by Giorgio Tani. It supports its native
PEA archive format (featuring compression, multi volume split and
flexible authenticated encryption and integrity check schemes) and other
mainstream formats, with special focus on handling open formats.[7][8]
It supports 181 file extensions (as of version 5.5.1).[9]

PeaZip is mainly written in Free Pascal, using Lazarus. PeaZip is
released under the terms of the GNU Lesser General Public License.
—-—-—-—-—-—-—-—-—-—-+±


Cheers / Saludos,

Carlos E. R.
(from 13.1 x86_64 “Bottle” at Telcontar)

while Ark has the ability to open password protected archives, (as far as I’m aware) it can’t create them.
You could try Q7Z (GUI for 7zip) that is in the packman repo.

unfortunately ark doesn’t have an option to set a password (there is a request in kde’s bugzilla)

You could try Q7Z (GUI for 7zip) that is in the packman repo.

that should work, there is a 64bit port of Igor’s official GUI for kde4
openSUSE Software

you can always use the -p switch from the command line (zip,rar,7zip)

p7z a -tzip -r -p<pass> docs *.odt

p7zip will make an encrypted zip docs.zip archive from all open document texts in the current directory.

First, create your archive using your favorite compacting program such as tar, zip, etc. Then, to encrypt the archive with a password, use:

openssl aes-256-cbc -salt -in <filename> -out <filename>.enc

Decrypt your encrypted archive with your password as follows:

openssl aes-256-cbc -d -in <filename>.enc -out <filename>

FYI,

Gordon