Differences
This shows you the differences between two versions of the page.
| Next revision | Previous revision | ||
|
software:tmux [2016/11/24 13:58] eServices Greece created |
software:tmux [2021/11/16 09:09] (current) eServices Greece |
||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | {{howhard> | + | {{tag> |
| - | ====== | + | ====== tmux ====== |
| - | ===== Centos 7 ===== | + | |
| - | <sxh bash> | + | |
| - | wget https:// | + | |
| - | tar zxfv tmux-2.3.tar.gz | + | ===== Goal ===== |
| + | Compile | ||
| - | cd tmux-2.3 | + | ==== Steps ==== |
| + | === Library Prerequisites === | ||
| + | <sxh bash> | ||
| + | yum -y install libevent-devel ncurses-devel | ||
| + | </ | ||
| - | yum install libevent-devel ncurses-devel | + | ==== EXPORTS used to set versions ==== |
| + | You can change the values here to change compiled version. | ||
| + | < | ||
| + | TMUX_VERSION=3.2a | ||
| + | </ | ||
| - | ./configure | ||
| - | make | + | === Fetch tmux === |
| + | <sxh bash> | ||
| + | wget https:// | ||
| + | tar zxfv tmux-${TMUX_VERSION}.tar.gz | ||
| + | cd tmux-${TMUX_VERSION} | ||
| + | </ | ||
| - | cp tmux /usr/bin/ | + | === Build tmux === |
| + | <sxh bash> | ||
| + | make | ||
| </ | </ | ||
| + | |||
| + | === Install tmux === | ||
| + | <sxh bash> | ||