<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Linux Explore &#187; Message on Linux terminal</title>
	<atom:link href="https://blog.linuxexplore.com/category/message-on-linux-terminal/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.linuxexplore.com</link>
	<description>Exploring Linux</description>
	<lastBuildDate>Mon, 07 Apr 2014 00:30:50 +0000</lastBuildDate>
	<language>en-US</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.0.38</generator>
	<item>
		<title>Configure syslog to print the Security violation alarm on user terminal (via Linux Explore)</title>
		<link>https://blog.linuxexplore.com/2010/06/20/configure-syslog-to-print-the-security-violation-alarm-on-user-terminal-via-linux-explore/</link>
		<comments>https://blog.linuxexplore.com/2010/06/20/configure-syslog-to-print-the-security-violation-alarm-on-user-terminal-via-linux-explore/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 17:47:28 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[Message on Linux terminal]]></category>
		<category><![CDATA[Linux Security]]></category>
		<category><![CDATA[Rsyslog]]></category>
		<category><![CDATA[rsyslog.conf]]></category>
		<category><![CDATA[Syslog]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/2010/06/20/configure-syslog-to-print-the-security-violation-alarm-on-user-terminal-via-linux-explore/</guid>
		<description><![CDATA[Open the /etc/rsyslog.conf file for syslog configuration in fedora Linux (some linux like CentOS has /etc/syslog.conf). It will show the something similar as given below: # Log all kernel messages to the console. # Logging much else clutters up the screen. #kern.*                                                 /dev/console # Log anything (except mail) of level info or higher. # Don&#8217;t&#8230;]]></description>
				<content:encoded><![CDATA[<blockquote style="overflow:hidden;"><p>Open the /etc/rsyslog.conf file for syslog configuration in fedora Linux (some linux like CentOS has /etc/syslog.conf). It will show the something similar as given below: # Log all kernel messages to the console. # Logging much else clutters up the screen. #kern.*                                                 /dev/console # Log anything (except mail) of level info or higher. # Don&#8217;t log private authentication messages! *.info;mail.none;authpriv … <a title="Configure syslog to print the Security violation alarm on user terminal" href="http://linuxexplore.com/2009/09/15/configure-syslog-to-print-the-security-violation-alarm-on-user-terminal/" target="_blank">Read More: Configure syslog to print the Security violation alarms </a></p></blockquote>
<p>via <a title="Linux Explore" href="http://linuxexplore.com" target="_blank">Linux Explore</a></p>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2010/06/20/configure-syslog-to-print-the-security-violation-alarm-on-user-terminal-via-linux-explore/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Message on Linux terminal</title>
		<link>https://blog.linuxexplore.com/2010/05/22/message-on-linux-terminal/</link>
		<comments>https://blog.linuxexplore.com/2010/05/22/message-on-linux-terminal/#comments</comments>
		<pubDate>Fri, 21 May 2010 19:51:36 +0000</pubDate>
		<dc:creator><![CDATA[linuxexplore]]></dc:creator>
				<category><![CDATA[Linux Explore Tips & Tricks]]></category>
		<category><![CDATA[Message on Linux terminal]]></category>
		<category><![CDATA[cat]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[echo]]></category>
		<category><![CDATA[Linux hacks]]></category>
		<category><![CDATA[Linux Howto]]></category>
		<category><![CDATA[Linux Tips]]></category>
		<category><![CDATA[Linux Tricks]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[notify-send]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[wall]]></category>
		<category><![CDATA[write]]></category>

		<guid isPermaLink="false">http://linuxexplore.wordpress.com/?p=235</guid>
		<description><![CDATA[Few interesting commands which can be used to send the messages on other terminal or network: 1. wall: This command is used to broadcast a message on all terminals. For e.g.: wall "Hello, message testing" or cat msg.txt &#124; wall 2. write: This command is used to send message to a user &#38; selected terminal&#8230;]]></description>
				<content:encoded><![CDATA[<p>Few interesting commands which can be used to send the messages on other terminal or network:</p>
<p>1. wall:</p>
<p>This command is used to broadcast a message on all terminals.</p>
<p>For e.g.:</p>
<pre>wall "Hello, message testing"
</pre>
<p>or</p>
<pre>cat msg.txt | wall</pre>
<p>2. write:</p>
<p>This command is used to send message to a user &amp; selected terminal of a user.</p>
<p>For e.g.:</p>
<pre>echo "Hello, message testing" |&nbsp;write rahul
</pre>
<p>or</p>
<pre>echo "Hello, message testing" |&nbsp;write rahul pts/0</pre>
<p>or</p>
<pre>cat msg.txt | write rahul pts/0</pre>
<p>or</p>
<pre>write rahul pts/0 &lt;&lt; EOF
Hello, message testing
EOF</pre>
<p>3. echo:</p>
<p>echo command can also used to send messages on selected terminal.</p>
<p>For e.g.:</p>
<pre>echo "Hello, message testing" &gt; /dev/pts/0</pre>
<p>4. cat:</p>
<p>cat can also write on a selected terminal similar to echo command.</p>
<p>For e.g.:</p>
<pre>cat /dev/pts/0
Hello, message testing
CTRL+D</pre>
<p>5. notify-send:</p>
<p>It can send the desktop notifications.</p>
<p>For e.g.: From gnome terminal,</p>
<pre>notify-send "Hello, message testing"</pre>
<p>From any terminal</p>
<pre>export DISPLAY=:0 &amp;&amp; notify-send "Hello, message testing"</pre>
<p>From SSH,</p>
<pre>ssh &lt;host&gt; export DISPLAY=:0 &amp;&amp; notify-send "Hello, message testing"</pre>
]]></content:encoded>
			<wfw:commentRss>https://blog.linuxexplore.com/2010/05/22/message-on-linux-terminal/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>
