Posts

Automated build and install of tmux on centos  It is usual for me to spin up a server for testing, sometimes it's only up for a couple of minutes but if I use it longer I find myself missing tmux.  Unfortunately on centos7 the available tmux is too old (1.8-4.el7) for my taste so I have a little snippet I run to build and install it. This downloads and builds the latest stable tmux release from github. #!/bin/bash yum   -y  remove tmux yum   -y   install   gcc  jq libevent-devel ncurses-devel   ORG =tmux REPO =tmux APP =tmux # If you can't get this TAG/LOCATION stuff to work they probably rearranged files over at github # Just go over to https://github.com/tmux/tmux/releases/ and download the tar.gz of the "Last release" TAG =$ ( curl  -s   -L  https: // api...