centos 7 安装tmux
tmux 能够保存你当前进行的会话,对于处理了一部分的工作,过后可以继续开展,同时,tmux 支持分屏,分屏后,可以实现一个屏幕修改程序,一个屏幕观察运行效果。如果有事要暂时离开的时候,可以退出当前会话,等到方便了,可以恢复上次会话,继续进行未完成的工作。如果使用的使mac,则配合iterm2,效果更佳。在centos7下,安装tmux步骤如下
1. 安装 ncurses-devel
yum -y install ncurses-devel
2. 安装 libevent-dev
yum -y install libevent-devel
3. 安装tmux
如果系统已经安装有git,则可以直接从github上clone tmux的源码进行安装,具体操作步骤如下
3.1. 获取tmux 的源码
git clone https://github.com/tmux/tmux.git
进入目录
cd tmux
执行
sh autogen.sh
执行过程中可能会报中不到 aclocal 命令的错误,此时可安装 automake 后再执行 autogen.sh
yum install -y automake
编译并安装tmux
./configure && make
4 简单使用
tmux new -s sessionName
创建 tmux会话tmux ls
列出所有tmux 已有的会话tmux a -t sessionName
打开指定会话- tmux命令前缀快捷键
ctrl+b
(可根据需要改为其他的快捷键,我的mac改为了ctr+x); 前缀+d; 退出当前会话 - 命令前缀 + ", 横向分屏; 命令前缀+% 纵向分屏
相关推荐
89550191 2020-08-09
ccjjyy 2020-05-21
大大丶 2019-09-10
85473363 2019-06-29
sctq 2019-06-25
flyyuge 2019-06-21
asmallrabbit 2019-06-20
skyyws 2019-06-20
朴有天虹 2019-06-20
87201844 2019-01-27
88143553 2018-07-30
hyfcomeon 2018-07-27
鹰之翔 2017-10-19
肖舸NoSQLt架构 2016-11-17
dusiliang 2016-09-20
86981538 2016-06-12
chenying 2015-09-08
85520694 2015-08-30
老甘的可读区 2015-06-23