窗口复用神器tmux安装

窗口复用神器tmux安装

tmux 是一个终端复用器,这也是它命名的由来 t(terminal) mux(multiplexer),你可以在一个屏幕上管理多个终端!

Mac OSX下安装tmux

shell
1
brew install tmux

CentOS下安装tmux

安装软件依赖包

shell
1
yum install -y gcc automake libevent-devel ncurses-devel glibc-static byacc

克隆源代码

shell
1
git clone https://github.com/tmux/tmux.git

编译安装tmux

shell
1
2
3
cd tmux  
sh autogen.sh
./configure && make

编译完成后查看版本号

shell
1
2
# ./tmux -V  
tmux 3.0

移动tmux/usr/local/bin

shell
1
mv tmux /usr/local/bin

配置tmux

为了方便,我们直接使用 gpakosz/.tmux 的配置文件

shell
1
2
3
cd  
git clone https://github.com/gpakosz/.tmux.git
ln -s -f .tmux/.tmux.conf
评论

:D 一言句子获取中...

加载中,最新评论有1分钟缓存...