Skip to content

Instantly share code, notes, and snippets.

View karsinkk's full-sized avatar

Karsin Kamakotti karsinkk

View GitHub Profile
@karsinkk
karsinkk / tmux_local_install.sh
Last active December 26, 2018 07:20 — forked from ryin/tmux_local_install.sh
bash script for installing tmux without root access
#!/bin/bash
# Script for installing tmux on systems where you don't have root access.
# tmux will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
TMUX_VERSION=2.8
@karsinkk
karsinkk / install_mosh_locally.sh
Created August 23, 2017 12:08 — forked from lazywei/install_mosh_locally.sh
Install mosh server without root permission
#!/bin/sh
# this script does absolutely ZERO error checking. however, it worked
# for me on a RHEL 6.3 machine on 2012-08-08. clearly, the version numbers
# and/or URLs should be made variables. cheers, zmil...@cs.wisc.edu
mkdir mosh
cd mosh