Skip to content

Commit

Permalink
Create openssl_1.1.1a.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
LoBrol committed Jul 28, 2023
1 parent 9ade3a7 commit e9af852
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions openssl_1.1.1a.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/sh



sudo apt remove openssl
sudo rm -rf /usr/include/openssl

wget https://ftp.openssl.org/source/old/1.1.1/openssl-1.1.1a.tar.gz --no-check-certificate
tar zxvf openssl-1.1.1a.tar.gz
cd openssl-1.1.1a
./config
make
sudo make install


sudo rm -rf /usr/bin/openssl
sudo ln -s /usr/local/bin/openssl /usr/bin/openssl
sudo ldconfig

0 comments on commit e9af852

Please sign in to comment.