码迷,mamicode.com
首页 > 其他好文 > 详细

后台执行screen使用心得

时间:2015-06-06 23:41:19      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:screens   socket   

  1. 安装

    yum -y install screen

  2. 创建一个新的窗口

    screen -S lxh

  3. 断开会话

    关闭secureCRT或xshell窗口即可,或者关机 技术分享

  4. 列出会话

    root@samba ~$screen -ls
    There is a screen on:
        21764.lxh    (Detached)
    1 Socket in /var/run/screen/S-root.

  5. 重新连接会话

    root@samba ~$screen -r 21764

    也可通过会话名连接
    root@samba ~$screen -r lxh

  6. 杀死screen进程

    root@samba ~$screen -ls
    There are screens on:
            21850.lxh       (Attached)
            21764.lxh       (Attached)
    2 Sockets in /var/run/screen/S-root.
    root@samba ~$kill 21850
    root@samba ~$screen -ls
    There is a screen on:
            21764.lxh       (Attached)
    1 Socket in /var/run/screen/S-root.

   


本文出自 “也曾鲜衣怒马年少时” 博客,请务必保留此出处http://xoyabc.blog.51cto.com/7401264/1659236

后台执行screen使用心得

标签:screens   socket   

原文地址:http://xoyabc.blog.51cto.com/7401264/1659236

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!