Skip to content

Instantly share code, notes, and snippets.

@rothgar
Created January 19, 2017 07:03
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rothgar/a8b4c865b43ee19672360418460f903a to your computer and use it in GitHub Desktop.
Save rothgar/a8b4c865b43ee19672360418460f903a to your computer and use it in GitHub Desktop.
Compile tmate on centos 7
#!/bin/bash
set -e
yum install -y epel-release
yum makecache
yum install -y @development git cmake ruby zlib-devel openssl-devel libevent-devel ncurses-devel libssh-devel msgpack-devel
git clone https://github.com/nviennot/tmate.git
cd tmate
./autogen.sh
./configure
make
cp ./tmate /usr/bin/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment