tmux使用

2017-2-7 Frank 工具

安装

centos

yum install tmux

CentOs 6.9 的软件库里没有 tmux,无法安装? 解决办法:命令行输入下列命令,下载安装 epel 源
代码如下

wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
sudo rpm -Uvh remi-release-6*.rpm epel-release-6*.rpm

这样就可以安装tmux了
代码如下

yum install tmux

常用命令

按ctrl+b 之后,c创建新会话

持久保存 Tmux 会话

Continuum安装

mkdir -p ~/.tmux
cd ~/.tmux
git clone https://github.com/tmux-plugins/tmux-continuum.git
touch ~/.tmux.conf
vim ~/.tmux.conf
#添加如下
run-shell ~/.tmux/tmux-continuum/continuum.tmux

#重载配置
tmux source-file ~/.tmux.conf
#列出会话
tmux ls
#恢复会话
tmux at [-t 会话名]
#如:
tmux at -t 0
# 退出会话,后台运行
ctrl+b 后按d
# 关闭会话
tmux kill-session -t 会话名

tmux向上滚动

Ctrl-b then [then you can use your normal navigation keys to scroll around (eg. Up Arrow or PgDn). Press q to quit scroll mode.

« 上一篇:Nodejs箭头函数表达式(=>) | 下一篇:scp报错修复»

评论:

大神万岁
2017-02-10 22:34
向大神致敬

发表评论 登录

Top