Differences

This shows you the differences between two versions of the page.

Link to this comparison view

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>2}} +{{tag>tmux guide compile}} {{howhard>2}} 
-====== Build tmux on centos 6 ,7 ====== +====== tmux ======
-===== Centos 7 ===== +
-<sxh bash> +
-wget https://github.com/tmux/tmux/releases/download/2.3/tmux-2.3.tar.gz+
  
-tar zxfv tmux-2.3.tar.gz+===== Goal ===== 
 +Compile tmux
  
-cd tmux-2.3+==== Steps ==== 
 +=== Library Prerequisites === 
 +<sxh bash> 
 +yum -y install libevent-devel ncurses-devel 
 +</sxh>
  
-yum install libevent-devel ncurses-devel+==== EXPORTS used to set versions ==== 
 +You can change the values here to change compiled version. 
 +<sxh> 
 +TMUX_VERSION=3.2a 
 +</sxh>
  
-./configure 
  
-make+=== Fetch tmux === 
 +<sxh bash> 
 +wget https://github.com/tmux/tmux/releases/download/${TMUX_VERSION}/tmux-${TMUX_VERSION}.tar.gz 
 +tar zxfv tmux-${TMUX_VERSION}.tar.gz 
 +cd tmux-${TMUX_VERSION} 
 +</sxh>
  
-cp tmux /usr/bin/+=== Build tmux === 
 +<sxh bash>./configure --prefix=/usr 
 +make
 </sxh> </sxh>
 +
 +=== Install tmux ===
 +<sxh bash>make install</sxh>