• liunx 查看当前谁在登陆服务器


    1.w命令

    [root@k8s-nginx1 ~]# w
     10:58:34 up 26 days, 16:59,  2 users,  load average: 0.00, 0.04, 0.06
    USER     TTY      FROM             LOGIN@   IDLE   JCPU   PCPU WHAT
    root     pts/1    10.6.0.18        10:57    1:15   0.01s  0.01s -bash
    root     pts/2    10.6.0.18        10:57    2.00s  0.05s  0.01s w

    2.who 命令

    [root@k8s-nginx1 ~]# who
    root     pts/1        2019-12-19 10:57 (10.6.0.18)
    root     pts/2        2019-12-19 10:57 (10.6.0.18)

    3.who am i 命令  显示当前用户信息

    [root@k8s-nginx1 ~]# who am i
    root     pts/1        2019-12-19 10:57 (10.6.0.18)

    4.有时候 我需要把其他人给清理下去。例如维护时

    [root@k8s-nginx1 ~]# pkill  -kill -t pts/0

    5.踢人之前是否需要跟人家通话一下。免得误会,使用w命令 我们可以看到当前有2个终端在服务器上,使用tty命令查看自己的tty信息

    [root@k8s-nginx1 ~]# tty
    /dev/pts/1

    6.可以使用echo命令和对方通话

    [root@k8s-nginx1 ~]# echo "系统维护,请下线 " > /dev/pts/2

    对方显示

    或者使用write 命令也可

  • 相关阅读:
    The Chinese Postman Problem HIT
    Chinese Postman Problem Aizu
    矩阵游戏 HYSBZ
    最大获利 HYSBZ
    asp.net+MVC--1
    -----IT男生涯————初始篇
    Permutation
    RMQ with Shifts
    Fast Matrix Operations
    "Ray, Pass me the dishes!"
  • 原文地址:https://www.cnblogs.com/caonw/p/12066652.html
Copyright © 2020-2023  润新知