Skip to content

Instantly share code, notes, and snippets.

View Joshua1989's full-sized avatar

Mengke Lian Joshua1989

  • Google
  • Mountain View
View GitHub Profile
@octavifs
octavifs / tmux_htop_local_install.sh
Last active March 12, 2024 16:02
Install tmux and htop statically without root
#!/bin/sh
# Script for installing tmux & htop on systems where you don't have root access.
# Inspired by https://gist.github.com/ryin/3106801
# tmux will be installed in $HOME/local/bin.
# htop will be installed in $HOME/local/bin.
# It's assumed that wget and a C/C++ compiler are installed.
# exit on error
set -e
@crobicha
crobicha / tmux_local_install.sh
Last active January 18, 2020 22:25 — 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.3