tmux 설치
Linux 터미널을 분할해서 쓸 때 tmux가 활용된다.
1. tmux 설치
https://github.com/tmux/tmux/wiki
위 URL에 들어가 source code 파일을 다운받아서 설치해준다.
$ tar -xvf tmux-3.0a.tar.gz $ cd tmux-3.0a $ ./configure --prefix=$HOME/local/tmux-3.0a $ make $ make install
그러나 위 명령 수행 중 dependency issue로 인해서 문제가 발생 할 수 있다.
configure: error: "libevent not found"
2. libevent 설치
위 URL에 들어가 source code 파일을 받고 다운로드하여 마찬가지로 설치해준다.
$ tar -xvf libevent-2.1.11-stable.tar.gz $ cd libevent-2.1.11 $ ./configure --prefix=$HOME/local/libevent-2.1.11 $ make $ make install
3. tmux 재설치
이제 libevent를 연결하여 다시 설치해준다.
$ cd tmux-3.0a $ ./configure --prefix=/user/km.hero.lee/local/tmux-3.0a CFLAGS="-I$HOME/local/libevent-2.1.11/include" LDFLAGS="-L$HOME/local/libevent-2.1.11/lib" $ make $ make install