Skip to content

Instantly share code, notes, and snippets.

@lain0
Forked from DPS0340/install.sh
Created February 25, 2025 22:28
Show Gist options
  • Select an option

  • Save lain0/0cd4da284c4f423d2f46aac761eace66 to your computer and use it in GitHub Desktop.

Select an option

Save lain0/0cd4da284c4f423d2f46aac761eace66 to your computer and use it in GitHub Desktop.

Revisions

  1. @DPS0340 DPS0340 created this gist Feb 3, 2023.
    9 changes: 9 additions & 0 deletions install.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    # download binary openssl packages from Impish builds
    wget http://ports.ubuntu.com/pool/main/o/openssl/openssl_1.1.1f-1ubuntu2_arm64.deb
    wget http://ports.ubuntu.com/pool/main/o/openssl/libssl-dev_1.1.1f-1ubuntu2_arm64.deb
    wget http://ports.ubuntu.com/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_arm64.deb

    # install downloaded binary packages
    sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_arm64.deb
    sudo dpkg -i libssl-dev_1.1.1f-1ubuntu2_arm64.deb
    sudo dpkg -i openssl_1.1.1f-1ubuntu2_arm64.deb