FreeBSD >Sending a Message to All Users on a System

by nixcraft [Last updated: November 20, 2006]

You can use the wall command to send a message to every user on a system. General syntax of wall command is as follows:
wall
Message
Message
...
....
..
When the message is complete, press Control-D.

1) To display message "Disk failure system will be down for 30 minute" to all users use wall as follows:
# wall
Disk failure system will be down for 30 minute
--UNIX Admin
--MyCorp.com

When the message is complete, press Control-D (CTRL+D) to send message to all user.

2) To display message "Web server under DOS attack, come to IDC # 3" to all WHEEL group member use wall command with –g option as follows:
# wall –g wheel
Web server under DOS attack, come to IDC # 3 to investigate matter further.
-- IT HEAD

When the message is complete, press Control-D (CTRL+D) to send message to all user.

Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Previous post: FreeBSD > Sending a Message to an Individual User

Next post: FreeBSD >Sending a Message to All Users on a Remote UNIX/Linux/FreeBSD System