Skip to content

Instantly share code, notes, and snippets.

@estshorter
Last active April 13, 2024 20:42
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save estshorter/c747c88cbcc53fc7318a5cf788e8fc9b to your computer and use it in GitHub Desktop.
Save estshorter/c747c88cbcc53fc7318a5cf788e8fc9b to your computer and use it in GitHub Desktop.
Install openssl on raspberry pi
#!/bin/bash -eu
OPENSSL_VER=1.1.0g
mkdir openssl
cd openssl
wget https://www.openssl.org/source/openssl-${OPENSSL_VER}.tar.gz
tar xf openssl-${OPENSSL_VER}.tar.gz
cd openssl-${OPENSSL_VER}
./config zlib shared no-ssl3
make -j4
sudo make install
cd ../../
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment