15 lines
463 B
Bash
15 lines
463 B
Bash
#!/usr/bin/env bash
|
|
|
|
sudo apt-get update
|
|
sudo apt-get install -y git-core expect vim
|
|
sudo apt-get install -y python-software-properties software-properties-common
|
|
sudo apt-get install -y build-essential libtool autotools-dev autoconf
|
|
sudo apt-get install -y pkg-config libevent-dev libncurses-dev
|
|
|
|
# install tmux 2.0
|
|
git clone https://github.com/tmux/tmux.git ~/tmux_source
|
|
cd ~/tmux_source
|
|
git checkout 2.0
|
|
sh autogen.sh
|
|
./configure && make && sudo make install
|