LoginSignup
0
1

More than 3 years have passed since last update.

tmuxをUbuntu18.04LTSにインストールする手順

Last updated at Posted at 2019-07-31

libeventをインストールする

git clone git@github.com:libevent/libevent.git
cd libevent
./autogen.sh
./configure
make
make install

libeventのPATHを通す

# 一時的にPATHを通す
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:/usr/local/lib"

source ~/.profile # ターミナルを再起動せずに変更を反映させる
```

ncursesをインストールする

cd /tmp
curl -O https://invisible-mirror.net/archives/ncurses/ncurses-6.1.tar.gz
tar -zxvf ncurses-6.1.tar.gz
cd ncurses-6.1
./configure
make
make install

tmuxをインストールする

git clone git@github.com:tmux/tmux.git
cd tmux
sh autogen.sh
./configure && make
make install

References

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1