Skip to content

Instantly share code, notes, and snippets.

@joulgs
Created May 11, 2024 07:29
Show Gist options
  • Save joulgs/da0303bba460f1cedbd7fdf3fa8a426f to your computer and use it in GitHub Desktop.
Save joulgs/da0303bba460f1cedbd7fdf3fa8a426f to your computer and use it in GitHub Desktop.
How install libssl1.1 on debian 11

Installing libssl1.1 on Debian

To install libssl1.1 on Debian, follow these steps:

  1. Access the Download Page: Visit the download page at: libssl1.1 - Debian Bullseye

  2. Choose Your CPU Architecture:

image

Select your CPU architecture. In most cases, the amd64 architecture is used.

  1. Copy the Download Link:

image

Copy one of the download links. For example, we'll use http://ftp.us.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_amd64.deb.

  1. Download and Install:

Open your terminal and execute the following commands:

wget http://ftp.us.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1w-0+deb11u1_amd64.deb
sudo dpkg -i libssl1.1_1.1.1w-0+deb11u1_amd64.deb

Replace your_link with the link you copied in step 3.

This will download the package and install libssl1.1 on your system.

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