博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos: Screen tips
阅读量:5123 次
发布时间:2019-06-13

本文共 866 字,大约阅读时间需要 2 分钟。

Install

yum install screen

Useful screen commands

List a particular users screen sessions:

screen -list username/ (the forward slash is important)

List your own active screen sessions:

screen -ls

Re-attach to a specific users screen and session:

screen -x username/shared-session

Start a screen session and give it a unique name:

screen -S somename

Detach from a running screen session leaving it running in the background:

Hit the key combination: Control + A/a + D/d (not case sensitive)

Re-attach to a specific screen you've named:

screen -R somename

Power detach a screen that you are logged into from another location:

This is helpful if you've been accidentally disconnected from ssh while in a remote screen session and it's still attached.

screen -D somename

Delete Screen:

screen -S session_name -X quit

转载于:https://www.cnblogs.com/ilovewindy/p/4597315.html

你可能感兴趣的文章
C# 类(10) 抽象类.
查看>>
Vue_(组件通讯)子组件向父组件传值
查看>>
jvm参数
查看>>
STM32单片机使用注意事项
查看>>
swing入门教程
查看>>
好莱坞十大导演排名及其代表作,你看过多少?
查看>>
hihocoder1187 Divisors
查看>>
Azure 托管镜像和非托管镜像对比
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
前端监控
查看>>
clipboard.js使用方法
查看>>
移动开发平台-应用之星app制作教程
查看>>
leetcode 459. 重复的子字符串(Repeated Substring Pattern)
查看>>
永远的动漫,梦想在,就有远方
查看>>
springboot No Identifier specified for entity的解决办法
查看>>
【BZOJ1565】 植物大战僵尸
查看>>
浅谈 unix, linux, ios, android 区别和联系
查看>>
51nod 1428 活动安排问题 (贪心+优先队列)
查看>>
中国烧鹅系列:利用烧鹅自动执行SD卡上的自定义程序(含视频)
查看>>