tmux tutorial
This is a great tutorial about tmux quick start:
http://www.youtube.com/watch?v=wKEGA8oEWXw&noredirect=1
and its text script , just read it :)
http://timestream.net/screencasts/tmux-script.txt
Here's the very nice functionailities.
1)install tmux
2)tmux works in this way.
terminal ----- Tmux client ----| |----- Shell
terminal ----- Tmux client ----~ Tmux Server ---- ~------ Shell
terminal ----- Tmux client ----| |----- Shell
3) call tmux. PREFIX = Control + b
some shortcuts:
PREFIX + ? = tmux help
PREFIX + c = tmux create new window
PREFIX + n = next window
PREFIX + p = previous window
PREFIX + 7 = to go tmux window 7
PREFIX + [ = tmux copy mode
(space start to copy. Enter = Copy to tmux , also exists copy mode. arrow button for cursor moving)
PREFIX + ] = tmux paste mode ( can paste in any tmux window )
and so on. for more, see PREFIX + ?
4) attach tmux window
in terminal , input
$~ tmux attach # this will let you attach to the client connected with the tmux server
this well explains the chart in the section 2) above.
To get out the tmux client session, you just need
$~ tmux detach #
**************
if you want to use COPY/PASTE commands as vi in tmux, just read this http://jasonwryan.com/blog/2011/06/07/copy-and-paste-in-tmux/
tmux tutorial的更多相关文章
- GNU Parallel Tutorial
		GNU Parallel Tutorial Prerequisites Input sources A single input source Multiple input sources Linki ... 
- 不要着急改代码,先想想--centos 6.8下编译安装tmux
		诸位读者新年好,2017开年第一篇博客,请允许我先问候一下看到这篇博客的诸位.写博客是我2017年定下的目标之一,希望我会坚持下去. 最近打算尝试一下tmux这个神器,于是有了这一篇关于思维方式的Bl ... 
- 打造高效前端工作环境 - tmux
		打造高效前端工作环境 - tmux 前言 现在前端开发可不容易啊,先打开个VIM,然后再打开个lite-server,一不小心写个ES2015还要打开个gulp来做预编译,如果能把这么多个窗口放在一 ... 
- [翻译+山寨]Hangfire Highlighter Tutorial
		前言 Hangfire是一个开源且商业免费使用的工具函数库.可以让你非常容易地在ASP.NET应用(也可以不在ASP.NET应用)中执行多种类型的后台任务,而无需自行定制开发和管理基于Windows ... 
- 在tmux中的vi 上下左右键变为了ABCD等字符
		在本机上用vim编辑时,上下左右键没有问题,但是在tmux中确出现ABCD等字符. 原因是在tmux这个终端,默认做了字符转换,网上搜了很多答案,解决问题的设置是: set term=xterm 
- Django 1.7 Tutorial 学习笔记
		官方教程在这里 : Here 写在前面的废话:)) 以前学习新东西,第一想到的是找本入门教程,按照书上做一遍.现在看了各种网上的入门教程后,我觉得还是看官方Tutorial靠谱.书的弊端一说一大推 本 ... 
- tmux常用快捷键
		首先输入命令开始. $ tmux 然后,基本组合 Ctrl+b(同时按下ctrl和b),按完松开 松开后,按%(即同时按下shift和5),是水平分割 按“(即同时按shift和'),是纵向分割 按上 ... 
- centos安装tmux过程
		原文:https://gist.github.com/rothgar/cecfbd74597cc35a6018 # Install tmux on Centos release 6.5 # insta ... 
- tmux 简单命令
		tmux 大概结构图: 如果你已经安装了tmux,则输入tmux会进入tmux功能界面 0. tmux ls 列出已经存在session 1. tmux new -s foo 新建session ... 
随机推荐
- TypeScript入门
			博客园首发,转载请注明出处,多谢支持.http://www.cnblogs.com/xuema/ 一.TypeScript TypeScript是一种由微软开发的自由和开源的编程语言.它是JavaSc ... 
- ios 安装OpenFire
			1.开发xmpp官网下载 2.打开openfire.pkg 3.点击继续 4.成功安装后打开偏好设置 ->双击poenfire->弹出窗体[好] 5.随后会弹出以下这个视图 开启 strr ... 
- [Nhibernate]二级缓存
			[Nhibernate]二级缓存 目录 写在前面 文档与系列文章 二级缓存 Nhibernate二级缓存提供程序 一个例子 总结 写在前面 上篇文章介绍了nhibernate中一级缓存的相关内容,一级 ... 
- HTML5----input-datalist输入框自己主动提示功能
			效果图: <label for="word_name">字母 : </label> <input id="word_name" n ... 
- leetcode第28题--Divide Two Integers
			Divide two integers without using multiplication, division and mod operator. 分析:题目意思很容易理解,就是不用乘除法和模运 ... 
- SSIS Package to Call Web Service
			原文 SSIS Package to Call Web Service SSIS Package to Call Web Service. You can Call WebService from S ... 
- 功能和形式的反思sql声明 一个
			日前必须使用sql语句来查询数据库 但每次你不想写一个数据库中读取所以查了下反射 我想用反映一个实体的所有属性,然后,基于属性的查询和分配值 首先,须要一个实体类才干反射出数据库相应的字段, 可是開始 ... 
- javascript保留两位
			原文:javascript保留两位 //保留两位小数 //功能:将浮点数四舍五入,取小数点后2位 function toDecimal(x) { var f = parseFloat(x); if ( ... 
- 使用JQUERY操作Radio
			发展中经常使用Radio为了实现用户的选择的影响.我在该项目中使用的一些JQUERY操作Radio该方法.这里分享,对于有需要的朋友参考的. 1.变化radio选择.引发一些结果 $("in ... 
- apache 提示You don't have permission to access /test.php on this server.怎样解决
			把denty改成allow httpd.conf文件中. <Directory "cgi-bin"> AllowOverride None Options None O ... 
