如何在 Windows 和 Ubuntu 上运行的局域网上发送消息

如何在 Windows 和 Ubuntu 上运行的局域网上发送消息

在 Windows 中,我们可以使用命令在同一个 LAN 上发送消息net send,但是如何在 Ubuntu 中做到这一点?

答案1

要发送给一个用户,请查看write命令。来自相关手册页:

 The write utility allows you to communicate with other users, by copying
 lines from your terminal to theirs.

 When you run the write command, the user you are writing to gets a mes‐
 sage of the form:

       Message from yourname@yourhost on yourtty at hh:mm ...

 Any further lines you enter will be copied to the specified user's termi‐
 nal.  If the other user wants to reply, they must run write as well.

 When you are done, type an end-of-file or interrupt character.  The other
 user will see the message ‘EOF’ indicating that the conversation is over.

要发送给多个用户,请查看wall命令:

 Wall displays the contents of file or, by default, its standard input, on
 the terminals of all currently logged in users. The command will cut over
 79 character long lines to new lines. Short lines are white space padded
 to have 79 characters. The command will always put carriage return and
 new line at the end of each line.

 Only the super-user can write on the terminals of users who have chosen
 to deny messages or are using a program which automatically denies mes‐
 sages.

同样相关的是mesg命令:

   Mesg  controls  the  access to your terminal by others.  It's typically
   used to allow or disallow other users to write to  your  terminal  (see
   write(1)).

相关内容