Skip to main content
arch linux doesn't work either
Source Link
Jack O'Connor
  • 10.7k
  • 4
  • 51
  • 54

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

Unfortunately, at least on Ubuntu, the zlib subcommand is disabled in the default build configuration (--no-zlib --no-zlib-dynamic), so you would need to compile openssl from source to use it. But it is enabled by default on Arch, for example.

Edit: Seems like the zlib command is no longer supported on Arch either. This answer might not be useful anymore :(

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

Unfortunately, at least on Ubuntu, the zlib subcommand is disabled in the default build configuration (--no-zlib --no-zlib-dynamic), so you would need to compile openssl from source to use it. But it is enabled by default on Arch, for example.

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

Unfortunately, at least on Ubuntu, the zlib subcommand is disabled in the default build configuration (--no-zlib --no-zlib-dynamic), so you would need to compile openssl from source to use it. But it is enabled by default on Arch, for example.

Edit: Seems like the zlib command is no longer supported on Arch either. This answer might not be useful anymore :(

it's not always disabled
Source Link
Jack O'Connor
  • 10.7k
  • 4
  • 51
  • 54

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

Unfortunately, at least on Ubuntu, the zlib subcommand is disabled in the default build configuration (--no-zlib --no-zlib-dynamic) in the default build configuration;, so unless you compile openssl from source andyou would need to compile ./configureopenssl accordingly — no luck this way downfrom source to use it. But it is enabled by default on Arch, for example.

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

Unfortunately, the zlib subcommand is disabled (--no-zlib --no-zlib-dynamic) in the default build configuration; so unless you compile openssl from source and ./configure accordingly — no luck this way down.

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

Unfortunately, at least on Ubuntu, the zlib subcommand is disabled in the default build configuration (--no-zlib --no-zlib-dynamic), so you would need to compile openssl from source to use it. But it is enabled by default on Arch, for example.

added 223 characters in body
Source Link
ulidtko
  • 15.3k
  • 10
  • 57
  • 90

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

Unfortunately, the zlib subcommand is disabled (--no-zlib --no-zlib-dynamic) in the default build configuration; so unless you compile openssl from source and ./configure accordingly — no luck this way down.

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

You can do this with the OpenSSL command line tool:

openssl zlib -d < $IN > $OUT

Unfortunately, the zlib subcommand is disabled (--no-zlib --no-zlib-dynamic) in the default build configuration; so unless you compile openssl from source and ./configure accordingly — no luck this way down.

Source Link
Jack O'Connor
  • 10.7k
  • 4
  • 51
  • 54
Loading