是否已经安装screen
screen -version
安装
• ubuntu
apt-get install screen
• CentOS
yum install screen
常用命令
screen -S name | 创建一个终端管理器 |
screen -ls | 查看现有的终端管理器 |
screen -r name | 重新打开终端管理器 |
screen -d name | 最小化已经打开的终端管理器 |
screen -dr name | 最小化打开的终端管理器并重新打开 |
screen -dms namecommand | 临时创建一个终端管理器,并执行命令 |
操作快捷键
ctrl + A + C | 创建一个终端 |
ctrl + A + D | 最小化终端管理器 |
ctrl + A + N | 切换到下一个终端 |
ctrl + A +P | 切换到上一个终端 |
ctrl + A + A | 切换到上一次使用的终端 |
ctrl + D | 关闭终端/退出终端管理器 |