博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux终端下对话
阅读量:5241 次
发布时间:2019-06-14

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

1.首先查看当前账户

[hadoop@weekend01 ~]$ who

hadoop   tty1         2016-11-14 09:31 (:0)
hadoop   pts/0        2016-11-14 09:32 (:0.0)
hadoop   pts/1        2016-11-14 09:35 (:0.0)
hadoop   pts/2        2016-11-14 09:35 (:0.0)
hadoop   pts/3        2016-11-14 09:35 (:0.0)
hadoop   pts/4        2016-11-14 09:35 (:0.0)
hadoop   pts/5        2016-11-14 09:35 (:0.0)
hadoop   pts/6        2016-11-14 09:35 (:0.0)

查询每个用户最近登陆时间lastlog

Username         Port     From             Latest

root             pts/7    192.168.1.119    Wed Nov  9 12:57:40 +0800 2016

2.向所有用户广播一跳消息

[hadoop@weekend01 ~]$ wall "Hello,everyone I am sishen,what's your name?"

Broadcast message from hadoop@weekend01 (pts/0) (Mon Nov 14 10:01:59 2016):

Hello,everyone I am sishen,what's your name?

[hadoop@weekend01 ~]$

Broadcast message from hadoop@weekend01 (pts/0) (Mon Nov 14 10:01:59 2016):

Hello,everyone I am sishen,what's your name?

这样pts/0到pts/6都可以收到这条消息

3.向指定用户发送消息,使用write命令

[hadoop@weekend01 ~]$ who

hadoop   tty1         2016-11-14 09:31 (:0)
hadoop   pts/0        2016-11-14 09:32 (:0.0)
hadoop   pts/1        2016-11-14 10:08 (:0.0)
hadoop   pts/2        2016-11-14 10:08 (:0.0)
hadoop   pts/3        2016-11-14 10:08 (:0.0)
hadoop   pts/4        2016-11-14 10:08 (:0.0)
hadoop   pts/5        2016-11-14 10:08 (:0.0)
hadoop   pts/6        2016-11-14 10:08 (:0.0)
root     pts/7        2016-11-14 10:08 (192.168.1.119)
root     pts/8        2016-11-14 10:20 (192.168.1.119)
root     pts/9        2016-11-14 10:19 (192.168.1.119)
root     pts/10       2016-11-14 10:21 (weekend06)

[root@weekend06 ~]# ssh weekend01

[hadoop@weekend01 ~]$ write root pts/10

Hello,I am sishen,What's your name?

[root@weekend01 ~]#

Message from root@weekend01 (as hadoop) on pts/9 at 10:21 ...
Hello,I am sishen,What's your name?

使用Ctrl+d来结束对话

如果不想接收消息可以使用

[root@weekend01 ~]# mesg n来关闭,这样除了root之外的信息就不会接收了

也可以使用

[hadoop@weekend01 ~]$ who

hadoop   tty1         2016-11-14 09:31 (:0)
hadoop   pts/0        2016-11-14 09:32 (:0.0)
hadoop   pts/1        2016-11-14 10:08 (:0.0)
hadoop   pts/2        2016-11-14 10:08 (:0.0)
hadoop   pts/3        2016-11-14 10:08 (:0.0)
hadoop   pts/4        2016-11-14 10:08 (:0.0)
hadoop   pts/5        2016-11-14 10:08 (:0.0)
hadoop   pts/6        2016-11-14 10:08 (:0.0)
[hadoop@weekend01 ~]$ echo  "hello ,what are you doing?" >/dev/pts/3

[hadoop@weekend04 ~]$ hello ,what are you doing?

转载于:https://www.cnblogs.com/zd520pyx1314/p/6060946.html

你可能感兴趣的文章
浅谈算法和数据结构: 一 栈和队列
查看>>
Java内部类详解
查看>>
【hdu 1429】胜利大逃亡(续)
查看>>
图论-次短路求法
查看>>
What's New for Visual C# 6.0
查看>>
ExtJs学习笔记之ComboBox组件
查看>>
关于收费软件
查看>>
getopt_long
查看>>
TensorFlow MNIST CNN 代码
查看>>
javascript之Style物
查看>>
JSON跨域解决方案收集
查看>>
SSH框架整合总结
查看>>
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
Factory Design Pattern
查看>>