Skip to content

Instantly share code, notes, and snippets.

@joulgs
Last active April 7, 2026 08:31
Show Gist options
  • Select an option

  • Save joulgs/c8a85bb462f48ffc2044dd878ecaa786 to your computer and use it in GitHub Desktop.

Select an option

Save joulgs/c8a85bb462f48ffc2044dd878ecaa786 to your computer and use it in GitHub Desktop.
How install libssl1.1 on ubuntu 22.04
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb
sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb
@franklyngomes

Copy link
Copy Markdown

Thanks

@dsalazarCazanhas

Copy link
Copy Markdown

Thanks, it worked on
NAME="Ubuntu"
VERSION="24.04.2 LTS (Noble Numbat)"

@ianmustafa

Copy link
Copy Markdown

Amazing, thanks. For anyone who needs the ARM version can do:

wget http://ports.ubuntu.com/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_arm64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.23_arm64.deb

version bumped to libssl1.1_1.1.1f-1ubuntu2.24_arm64.deb

in case of another version bumps, check the directory of the file: http://ports.ubuntu.com/pool/main/o/openssl and look for libssl1.1_*_arm64.deb

@Jeffabri

Jeffabri commented Jun 5, 2025

Copy link
Copy Markdown

I’ve been stuck on this for two full days, and your simple solution helped me so much.
Thank you — I truly appreciate it!

@pedrohstaub

Copy link
Copy Markdown

thanks, saved me hours of debbuging

@M4G3N74

M4G3N74 commented Jul 16, 2025

Copy link
Copy Markdown

thank you!

@Kakatuahitam

Copy link
Copy Markdown

Amazing, thanks. For anyone who needs the ARM version can do:

wget http://ports.ubuntu.com/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.23_arm64.deb
sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.23_arm64.deb

version bumped to libssl1.1_1.1.1f-1ubuntu2.24_arm64.deb

in case of another version bumps, check the directory of the file: http://ports.ubuntu.com/pool/main/o/openssl and look for libssl1.1_*_arm64.deb

this really works! need only to check on the dir and download, install then restart. thank you

@matheusvetor

Copy link
Copy Markdown
sudo apt-get install -y software-properties-common
sudo apt-add-repository -y ppa:rael-gc/rvm
sudo apt-get install -y libssl-dev=1.1.1l-1ubuntu1.4

@Kyle-png

Kyle-png commented Nov 4, 2025

Copy link
Copy Markdown

Thank you for this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment