Skip to content

Instantly share code, notes, and snippets.

View magnetogit's full-sized avatar

Erik Lehnsherr magnetogit

View GitHub Profile
@magnetogit
magnetogit / softether.sh
Last active March 31, 2018 07:54 — forked from bouroo/softether.sh
Install softether vpn server on ubuntu 16.04+
#!/usr/local/env bash
# Update system
apt-get update && apt-get -y upgrade
# Get build tools
apt-get -y install build-essential wget curl gcc make wget tzdata git libreadline-dev libncurses-dev libssl-dev zlib1g-dev
# Define softether version
RTM=$(curl http://www.softether-download.com/files/softether/ | grep -o 'v[^"]*e' | grep rtm | tail -1)
IFS='-' read -r -a RTMS <<< "${RTM}"
@magnetogit
magnetogit / ffplay-tutulive.sh
Created April 13, 2017 04:07 — forked from narate/ffplay-tutulive.sh
Playing Tutu Live video from command line
#!/bin/bash
if [ $# -eq 0 ]
then
echo "Usage : $0 url"
exit
fi
M3U8_URL=$(curl -s $1 | grep " var url" | sed 's/.*\(http.*.m3u8\).*/\1/')
@magnetogit
magnetogit / nginx.default.conf
Created November 4, 2016 14:09 — forked from sumardi/nginx.default.conf
Install PHP-FPM, Nginx & MySQL on EC2 with Amazon Linux AMI
# Install linux update, followed by GCC and Make
sudo yum -y update
sudo yum install -y gcc make
# Install Nginx and PHP-FPM
sudo yum install -y nginx php-fpm
# Install PHP extensions
sudo yum install -y php-devel php-mysql php-pdo \
php-pear php-mbstring php-cli php-odbc \