例子
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| # 创建名字为test的实例
screen -S test
# 改名
ctrl+a, A
# 左右分屏(‘或’的符号)
ctrl+a, |
# 切换屏幕
ctrl+a, tab
# 创建新窗口(以及改名)
ctrl+a, c
# 上下分屏(以及改名,切换屏幕,创建新窗口)
ctrl+a, S
|
常用命令
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| # 接着最上面的命令
# 列出所有实例
screen -ls
# attach一个Detached的实例
screen -r [name]
# attach一个已经Attached的实例
screen -x [name]
# Detached当前实例
ctrl+a, d
# kill当前实例
ctrl+a, k
exit
# 关闭当前焦点所在的屏幕区块
ctrl+a, X
# 关闭除当前区块之外其他的所有区块
ctrl+a, Q
|
配置
1
2
3
| # vim /etc/screenrc
altscreen on
caption always "%{.bW}%-w%{.rW}%n %t%{-}%+w %=%H %Y-%m-%d %c %p"
|
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.