Skip to content

Instantly share code, notes, and snippets.

View boeddeker's full-sized avatar

Christoph Boeddeker boeddeker

  • Paderborn University
View GitHub Profile
@boeddeker
boeddeker / install-user-mosh.sh
Created January 26, 2018 10:12 — forked from ViViDboarder/install-user-mosh.sh
Mosh is great, but sometimes the remote server you're accessing doesn't have it installed or doesn't give you sudo access. This script will install mosh as a user.
#! /bin/bash
# Make a directory to hold local libs and bins
mkdir -p ~/usr/local
# Get protobuf
wget https://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz
# Extract protobuf
tar -xvzf protobuf-2.5.0.tar.gz
cd protobuf-2.5.0