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