Tmux on lxplus - part I

(This is actually a prequel to “Tmux on lxplus - part II”, despite being uploaded after it)

The tmux version on CERN’s lxplus is very old, 1.8. Since version 2.0 tmux has a host of neat new features, which makes it worth the pain of installing it locally. Here are the steps I took to get tmux 2.3 running on my lxplus setup.

  • Download everything (tmux requires libevent and ncurses)

      $ mkdir -p $HOME/tmux_tmp
      $ mkdir -p $HOME/local
      $ cd $HOME/tmux_tmp
      $ wget https://github.com/tmux/tmux/archive/2.3.tar.gz
      $ wget https://github.com/downloads/libevent/libevent/libevent-2.0.19-stable.tar.gz
      $ wget ftp://ftp.gnu.org/gnu/ncurses/ncurses-5.9.tar.gz
    
  • Install libevent

      $ tar zxvf libevent-2.0.19-stable.tar.gz
      $ cd libevent-2.0.19-stable
      $ ./configure —-prefix=$HOME/local —-disable-shared
      $ make
      $ make install
      $ cd ..
    

After the make command you might get some errors related to building the man or documentation, but you can ignore it and move on to make install.

  • Install ncurses

      $ tar zxvf ncurses-5.9.tar.gz
      $ cd ncurses-5.9
      $ export CPPFLAGS=“-P"
      $ ./configure —-prefix=$HOME/local —-enable-symlinks
      $ make
      $ make install
      $ cd ..
    

Here again you might get some errors while compiling, but they seem to be all related to the man command so you should be able to ignore them. The export CPPFLAGS line is to avoid another compilation error (see here). —enable-symlinks is also required to avoid yet another error (see here).

  • Install tmux

      $ tar xzvf 2.3.tar.gz
      $ cd tmux-2.3
      $ ./autogen.sh
      $ mkdir -p build; cd build
      $ ../configure CFLAGS="-I$HOME/local/include -I$HOME/local/include/ncurses" LDFLAGS="-L$HOME/local/lib -L$HOME/local/include/ncurses -L$HOME/local/include" CPPFLAGS="-I$HOME/local/include -I$HOME/local/include/ncurses" --prefix=$HOME/tmux_tmp/tmux-2.3
      $ make
      $ cp tmux $HOME/local/bin
    
  • Clean up

      $ rm -rf $HOME/tmux_tmp
    
  • Add local bin to $PATH

      $ export PATH=$HOME/local/bin:$PATH
    

(ideally add this line to ~/.bash_profile so it gets executed every time)

Done! Now just source the bash_profile again and run tmux!

Source: adapted from tmux_local_install.sh script at https://gist.github.com/ryin/3106801

(See lxplus version from https://gist.github.com/pablodecm/151e90af9787e8340562)

Associate Research Scholar / Dicke Fellow in Physics

I search for dark matter.