您的位置:首页 > 运维架构 > Linux

Linux下使用tmux

2014-02-26 02:59 405 查看
1.tmux介绍

tmux是terminal multiplexer的缩写,这里multiplexer怎么翻译才好呢?

下面是英文介绍:

tmux is a terminal multiplexer:it enables a number of terminals to be created, accessed, and

controlled by from a single session。tmux may be detached from a screen and continue running

in the background, then later reattached.

when tmux is started it creates a new session with a single window and display it on screen. A

status line at the bottom of the screen shows information on the current session and is used to

enter interactive command.

A session is a single collection of pseudo terminals under the managment of tmux, Each session

has one or more windows linked to it. A window occupies the entire screen and may be split into

rectangular panes, each of which is a seperate pseudo terminal. Any number of tmux instances

may connect to a same session, and any number of windows may be present in the same session.

Once all sessions are killed, tmux exits.

2. tmux的安装

在ubuntu下,sudo apt-get install tmux。

也可以用源代码包进行安装,下载地址:http://tmux.sourceforge.net/
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: