Skip to content

Instantly share code, notes, and snippets.

@daxxog
Created November 21, 2020 17:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daxxog/d81f5d75e3db7f6e9b4c055bce58e74e to your computer and use it in GitHub Desktop.
Save daxxog/d81f5d75e3db7f6e9b4c055bce58e74e to your computer and use it in GitHub Desktop.
Install Hamachi on Rasperry PI 4 Ubuntu 20.04 32 bit armhf
#!/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