Created
November 21, 2020 17:46
-
-
Save daxxog/d81f5d75e3db7f6e9b4c055bce58e74e to your computer and use it in GitHub Desktop.
Install Hamachi on Rasperry PI 4 Ubuntu 20.04 32 bit armhf
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#hamachi installer script | |
#armhf=32 bit ARM | |
#tested on Ubuntu 20.04 | |
INSTALLER_PACKAGE=logmein-hamachi_2.1.0.203-1_armhf.deb | |
if [ ! -f "${INSTALLER_PACKAGE}" ]; then | |
wget https://www.vpn.net/installers/${INSTALLER_PACKAGE} | |
fi | |
sudo apt update && sudo dpkg -i ${INSTALLER_PACKAGE} && rm ${INSTALLER_PACKAGE} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment