Skip to content

Instantly share code, notes, and snippets.

@Ian729
Forked from estshorter/install-openssl.sh
Created January 17, 2025 10:28
Show Gist options
  • Save Ian729/771b802e408c4a6d5ebdd17c6bee9956 to your computer and use it in GitHub Desktop.
Save Ian729/771b802e408c4a6d5ebdd17c6bee9956 to your computer and use it in GitHub Desktop.
Install openssl on raspberry pi
#!/bin/bash -eu
OPENSSL_VER=3.0.0
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