<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Asking about CRON in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804740#M2478</link>
    <description>Hi choth,&lt;BR /&gt;&lt;BR /&gt;Do this in linux.&lt;BR /&gt;to turn off path MTU discovery&lt;BR /&gt;echo  1  &amp;gt;/proc/sys/net/ipv4/ip_no_pmtu_disc&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar</description>
    <pubDate>Fri, 20 Sep 2002 09:43:39 GMT</pubDate>
    <dc:creator>U.SivaKumar_2</dc:creator>
    <dc:date>2002-09-20T09:43:39Z</dc:date>
    <item>
      <title>Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804726#M2464</link>
      <description>Dear Sir,&lt;BR /&gt;&lt;BR /&gt;I used SUSE Linux 7.1. I would like to&lt;BR /&gt;use crontab to let it running my shell script but it is not working and I do not know why? Would you to help me resolving this problem? Thank you so much for your assistance. I write my script like the following:&lt;BR /&gt;&lt;BR /&gt;My test number 1:&lt;BR /&gt;Very simple testing script:&lt;BR /&gt;$ vi /root/test.sh&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;echo "How are you?"&lt;BR /&gt;$ chmod +x /root/test.sh&lt;BR /&gt;$ crontab -e&lt;BR /&gt;* * * * * root /root/test.sh&lt;BR /&gt;$ /etc/rc.d/cron restart&lt;BR /&gt;&lt;BR /&gt;My test number 2:&lt;BR /&gt;Very simple testing script:&lt;BR /&gt;$ vi /root/test1.sh&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;echo "Thank you so much for your assistance."&lt;BR /&gt;$ chmod +x /root/test1.sh&lt;BR /&gt;$ crontab -e&lt;BR /&gt;* * * * * root /root/test1.sh&lt;BR /&gt;$ /etc/rc.d/cron restart&lt;BR /&gt;&lt;BR /&gt;My test number 3:&lt;BR /&gt;Very simple testing script:&lt;BR /&gt;$ vi /root/test2.sh&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;echo "Thank you so much for your assistance."&lt;BR /&gt;$ chmod +x /root/test2.sh&lt;BR /&gt;$ vi /etc/crontab&lt;BR /&gt;* * * * * root /root/test2.sh&lt;BR /&gt;$ /etc/rc.d/cron restart&lt;BR /&gt;&lt;BR /&gt;My test number 4:&lt;BR /&gt;Very simple testing script:&lt;BR /&gt;$ vi /root/test3.sh&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;echo "Thank you so much for your assistance."&lt;BR /&gt;$ chmod +x /root/test3.sh&lt;BR /&gt;$ vi /etc/crontab&lt;BR /&gt;* * * * * /bin/sh /root/test3.sh&lt;BR /&gt;$ /etc/rc.d/cron restart&lt;BR /&gt;&lt;BR /&gt;But I have never got the message that I want it to display every minutes by using cron and I really hope that I will receive your assistance and I would like to deeply thank you so much for your help.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Choth</description>
      <pubDate>Thu, 12 Sep 2002 03:07:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804726#M2464</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-12T03:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804727#M2465</link>
      <description>Hi,&lt;BR /&gt;I think that script is executing But the problem is with echo , because it does not have current terminal to echo as it is run by&lt;BR /&gt;cron . To test do this&lt;BR /&gt;&lt;BR /&gt;$ vi /root/test.sh &lt;BR /&gt;#!/bin/sh &lt;BR /&gt;echo "How are you?" &amp;gt; /tmp/test.cron&lt;BR /&gt;$ chmod +x /root/test.sh &lt;BR /&gt;$ crontab -e &lt;BR /&gt;* * * * * root /root/test.sh &lt;BR /&gt;$ /etc/rc.d/cron restart &lt;BR /&gt;&lt;BR /&gt;Now after that time of execution of the script&lt;BR /&gt;look at this file /tmp/test.cron , does have&lt;BR /&gt;this line .How are you?. That means you cron&lt;BR /&gt;job has suceeded. &lt;BR /&gt;&lt;BR /&gt;Also look at this file for any errors.&lt;BR /&gt;/var/log/cron&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 12 Sep 2002 04:14:28 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804727#M2465</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-12T04:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804728#M2466</link>
      <description>All-over issues:&lt;BR /&gt;&lt;BR /&gt;You don't need to restart cron.  Period.&lt;BR /&gt;&lt;BR /&gt;Test number 1 problem:&lt;BR /&gt;&lt;BR /&gt;for the 'user' crontab's, you do not require a username. just:&lt;BR /&gt;&lt;BR /&gt;* * * * * /root/test.sh&lt;BR /&gt;&lt;BR /&gt;would suffice.&lt;BR /&gt;&lt;BR /&gt;Test number 2 problem:&lt;BR /&gt;&lt;BR /&gt;Same as above.&lt;BR /&gt;&lt;BR /&gt;Test number 3:&lt;BR /&gt;&lt;BR /&gt;Actually, that should have worked.  Where does root's mail get forwareded too? &lt;BR /&gt;&lt;BR /&gt;Test number 4 problem:  This wouldn't work.  The /etc/crontab requries a 'username' to run the script as.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;General rule:&lt;BR /&gt;&lt;BR /&gt;crontab -e&lt;BR /&gt;&lt;BR /&gt;user cront-tab.  Requries 5 time fields, and the program to run.  Unless otherwise specified (by re-declaring the environment variable MAILTO), all tty output will go to the user's who's crontab it is.&lt;BR /&gt;&lt;BR /&gt;/etc/crontab&lt;BR /&gt;&lt;BR /&gt;System crontabs.  Requires 5 time fields, a user field, and the program to run.  Mail will go to 'root' unless otherwise specified.&lt;BR /&gt;&lt;BR /&gt;Dumb question: does /bin/sh exist, and is it executeable? :)  Try leaving it out.  All cron routines are run using the standard shell anyway (so just putting the echo in should work).&lt;BR /&gt;&lt;BR /&gt;Another thing to try, avoiding the mail subsystems, is to try outputting the information to a file instead of to STDOUT.&lt;BR /&gt;&lt;BR /&gt;echo "[`date`] Thank you so much for your assistance." &amp;gt; /tmp/some.file&lt;BR /&gt;&lt;BR /&gt;Check /tmp/some.file for updates..&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Last resort:&lt;BR /&gt;&lt;BR /&gt;Using the time '* * * * *' should work (execute routine every minute, on the minute), but it's possible that the version of cron you are using (not sure if it's Vixie or not) does not allow it.  try setting it up to run every two minutes ('*/2 * * * *') or at a specified minute of the day.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Anyway, some things to try.  Hopefully this will help you.</description>
      <pubDate>Thu, 12 Sep 2002 04:20:06 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804728#M2466</guid>
      <dc:creator>Stuart Browne</dc:creator>
      <dc:date>2002-09-12T04:20:06Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804729#M2467</link>
      <description>Dear Sir,&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your reply. I will give you my full script like the following:&lt;BR /&gt;&lt;BR /&gt;$ vi /root/dns.sh&lt;BR /&gt;&lt;BR /&gt;#!/bin/sh&lt;BR /&gt;if [ -n "`/sbin/pidof named`" ]; then&lt;BR /&gt;        echo "`date` our DNS is fine :-)" &amp;gt; /var/log/dnsok.log&lt;BR /&gt;        (&lt;BR /&gt;        echo "From: choth &lt;CHOTH&gt;"&lt;BR /&gt;        echo "To: choth &lt;CHOTH&gt;"&lt;BR /&gt;        echo "Subject: DNS OK :-)"&lt;BR /&gt;        echo ""&lt;BR /&gt;        cat /var/log/dnsok.log&lt;BR /&gt;        ) | sendmail -fchoth@of.forum.org.kh choth@of.forum.org.kh&lt;BR /&gt;        exit 0&lt;BR /&gt;else&lt;BR /&gt;        echo "Our DNS is down on `date`" &amp;gt;&amp;gt; /var/log/dns.log&lt;BR /&gt;        echo "Our DNS is down on `date`" &amp;gt; /var/log/dnserror.log&lt;BR /&gt;        /etc/init.d/named start&lt;BR /&gt;        for ((i=0;i&amp;lt;=3;i++))&lt;BR /&gt;        do&lt;BR /&gt;                if [ -n "`/sbin/pidof named`" ]; then&lt;BR /&gt;                        exit 0&lt;BR /&gt;                else&lt;BR /&gt;                        /etc/init.d/named start&lt;BR /&gt;                fi&lt;BR /&gt;        done&lt;BR /&gt;        (&lt;BR /&gt;        echo "From: choth &lt;CHOTH&gt;"&lt;BR /&gt;        echo "Subject: DNS Status"&lt;BR /&gt;        echo "To: choth &lt;CHOTH&gt;"&lt;BR /&gt;        echo "" &lt;BR /&gt;        cat /var/log/dnserror.log &lt;BR /&gt;        ) | sendmail -fchoth@of.forum.org.kh choth@of.forum.org.kh &lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;$ chmod +x /root/dns.sh&lt;BR /&gt;and then I fire the command crontab -e&lt;BR /&gt;* * * * * /bin/sh /root/dns.sh&lt;BR /&gt;&lt;BR /&gt;The thing that I say it is not running because it does not mail to me &lt;CHOTH&gt;. When the DNS is up I can see the log file /var/log/dnsok.log but why it is not mail to me? Would you mind to help me sir?  What is the problem with my script? Thank you so much for your assistance.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Chot&lt;/CHOTH&gt;&lt;/CHOTH&gt;&lt;/CHOTH&gt;&lt;/CHOTH&gt;&lt;/CHOTH&gt;</description>
      <pubDate>Thu, 12 Sep 2002 09:07:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804729#M2467</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-12T09:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804730#M2468</link>
      <description>Hi,&lt;BR /&gt;Simply execute /root/dns.sh&lt;BR /&gt;#/root/dns.sh&lt;BR /&gt;Does it send the mail ??.&lt;BR /&gt;If not use shell debugging.&lt;BR /&gt;vi /root/dns.sh&lt;BR /&gt;remove this line&lt;BR /&gt;#!/bin/sh &lt;BR /&gt;Now&lt;BR /&gt;#sh -x /root/dns.sh&lt;BR /&gt;see any errors coming ?&lt;BR /&gt;&lt;BR /&gt;Think of using mail command instead of sendmail&lt;BR /&gt;like this&lt;BR /&gt;&lt;BR /&gt;Instead of this&lt;BR /&gt;( &lt;BR /&gt;echo "From: choth &lt;CHOTH&gt;" &lt;BR /&gt;echo "Subject: DNS Status" &lt;BR /&gt;echo "To: choth &lt;CHOTH&gt;" &lt;BR /&gt;echo "" &lt;BR /&gt;cat /var/log/dnserror.log &lt;BR /&gt;) | sendmail -fchoth@of.forum.org.kh choth@of.forum.org.kh &lt;BR /&gt;fi &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;This seems simple&lt;BR /&gt;( &lt;BR /&gt;mail -s DNS status choth@of.forum.org.kh &amp;lt; /var/log/dnserror.log&lt;BR /&gt;) &lt;BR /&gt;fi&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/CHOTH&gt;&lt;/CHOTH&gt;</description>
      <pubDate>Thu, 12 Sep 2002 09:40:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804730#M2468</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-12T09:40:41Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804731#M2469</link>
      <description>Dear Sir,&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your very useful information. I would like to ask you the last question:&lt;BR /&gt;every two minutes is */2 what about every 3 minutes is it */3, ... every n minutes */n? Is it correct or not? Thank you so much and I am looking forward to hearing from you.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Choth</description>
      <pubDate>Mon, 16 Sep 2002 07:39:05 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804731#M2469</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-16T07:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804732#M2470</link>
      <description>hi,&lt;BR /&gt;Each entry in a crontab file consists of six fields, specifying in the following order: &lt;BR /&gt;&lt;BR /&gt;  minute(s) hour(s) day(s) month(s) weekday(s) command(s)&lt;BR /&gt;The fields are separated by spaces or tabs. The first five are integer patterns and the sixth is the command to execute. The following table briefly describes each of the fields: &lt;BR /&gt;&lt;BR /&gt;Field  Value  Description  &lt;BR /&gt;minute  0-59  The exact minute that the command sequence executes  &lt;BR /&gt;hour  0-23  The hour of the day that the command sequence executes  &lt;BR /&gt;day  1-31  The day of the month that the command sequence executes  &lt;BR /&gt;month  1-12  The month of the year that the command sequence executes  &lt;BR /&gt;weekday  0-6  The day of the week that the command sequence executes (Sunday = 0, Monday = 1, Tuesday = 2, and so forth)  &lt;BR /&gt;command  Special  The complete sequence of commands to execute. The command string must conform to Bourne shell syntax. Commands, executables (such as scripts), or combinations are acceptable.  &lt;BR /&gt;&lt;BR /&gt;Each of the patterns from the first five fields may be either * (an asterisk), meaning all legal values, or a list of elements separated by commas. An element is either a number or an inclusive range, indicated by two numbers separated by a minus sign (e.g., 10-12). You can specify days with two fields: day of the month and day of the week. If you specify both of them as a list of elements, cron will observe both of them, for example: &lt;BR /&gt;&lt;BR /&gt;  0 0 1,15 * 1 /mydir/myprogram&lt;BR /&gt;&lt;BR /&gt;The cron daemon would run the program myprogram in the mydir directory on the first and fifteenth of each month, as well as on every Monday. To specify days by only one field, the other field should be set to  * , for example: &lt;BR /&gt;&lt;BR /&gt;  0 0 * * 1 /mydir/myprogram&lt;BR /&gt;&lt;BR /&gt;In the above example, the program would run only on Mondays.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2002 09:10:22 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804732#M2470</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-16T09:10:22Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804733#M2471</link>
      <description>Hi choth,&lt;BR /&gt;You have started many question threads, till&lt;BR /&gt;now you have not assigned any points to anyone.&lt;BR /&gt;&lt;BR /&gt;Assigning points is  recognising and encouraging people who helps you.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 16 Sep 2002 09:15:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804733#M2471</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-16T09:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804734#M2472</link>
      <description>Dear Sir,&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your reply. I know that it has 6 fields but all I would like to ask you just only one field "minutes". I saw it from another expert that answer to me with this question saying that */2 is for every two minutes. And then for this time I would like to ask you that (just in the minute field) */2 is for every 2 minutes, but what about every 3 minutes is it */3, ... and n minutes is it */n? Thank you so much for your answer.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Choth</description>
      <pubDate>Mon, 16 Sep 2002 09:22:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804734#M2472</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-16T09:22:45Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804735#M2473</link>
      <description>Hi choth,&lt;BR /&gt;you are right. */3 in the minutes field will cause the cron to run the script every 3 minute.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar</description>
      <pubDate>Mon, 16 Sep 2002 09:36:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804735#M2473</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-16T09:36:42Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804736#M2474</link>
      <description>hi choth ,&lt;BR /&gt;What happened to you sendmail problem ? . solved ?.&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar</description>
      <pubDate>Mon, 16 Sep 2002 09:58:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804736#M2474</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-16T09:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804737#M2475</link>
      <description>Dear Sir,&lt;BR /&gt;&lt;BR /&gt;Thank you so much for asking me about sendmail. I have not solved this problem yet and I also wrote a letter to yahoo in order to ask that problem "E=\r\n" but I did not get the answer from them yet. I have a returned mail like this and I would like you to explain me line by line because I would like to deeply know and I also  would like to solve this problem. The error is like the  following:&lt;BR /&gt;----- The following addresses had permanent fatal errors -----&lt;BR /&gt;&lt;KHMFX&gt;&lt;BR /&gt;(reason: 554 Transaction failed)&lt;BR /&gt;----- Transcript of session follows -----&lt;BR /&gt;451 4.4.1 &lt;KHMFX&gt;... reply: read error from mx1.hotmail.com.&lt;BR /&gt;... while talking to mx5.hotmail.com.:&lt;BR /&gt;&amp;gt;&amp;gt;&amp;gt; DATA&lt;BR /&gt;&amp;lt;&amp;lt;&amp;lt; 554 Transaction failed&lt;BR /&gt;554 5.0.0 &lt;KHMFX&gt;... Service unavailable&lt;BR /&gt;============================================&lt;BR /&gt;Reporting-MTA: dns; mailgw.forum.org.kh&lt;BR /&gt;Received-From-MTA: DNS; ofix.forum.org.kh&lt;BR /&gt;Arrival-Date: Wed, 18 Sep 2002 11:20:38 GMT&lt;BR /&gt;Final-Recipient: RFC822; khmfx@hotmail.com&lt;BR /&gt;Action: failed&lt;BR /&gt;Status: 5.0.0&lt;BR /&gt;Remote-MTA: DNS; mx5.hotmail.com&lt;BR /&gt;Diagnostic-Code: SMTP; 554 Transaction failed&lt;BR /&gt;Last-Attempt-Date: Wed, 18 Sep 2002 11:47:56 GMT&lt;BR /&gt;=====================================================&lt;BR /&gt;Reporting-MTA: dns; mailgw.forum.org.kh&lt;BR /&gt;Received-From-MTA: DNS; ofix.forum.org.kh&lt;BR /&gt;Arrival-Date: Wed, 18 Sep 2002 11:20:38 GMT&lt;BR /&gt;Final-Recipient: RFC822; khmfx@hotmail.com&lt;BR /&gt;Action: failed&lt;BR /&gt;Status: 5.0.0&lt;BR /&gt;Remote-MTA: DNS; mx5.hotmail.com&lt;BR /&gt;Diagnostic-Code: SMTP; 554 Transaction failed&lt;BR /&gt;Last-Attempt-Date: Wed, 18 Sep 2002 11:47:56 GMT&lt;BR /&gt;&lt;BR /&gt;Finally, I would like to deeply thank you so much for your help.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Choth&lt;/KHMFX&gt;&lt;/KHMFX&gt;&lt;/KHMFX&gt;</description>
      <pubDate>Wed, 18 Sep 2002 09:08:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804737#M2475</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-18T09:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804738#M2476</link>
      <description>Hi,&lt;BR /&gt;Refered:&lt;BR /&gt;Q3.10 -- How do I solve "collect: I/O error on connection" or "reply: read error from host.name" errors?&lt;BR /&gt;If you are just getting occasional such messages, they're probably due to a temporary network problem, or the remote host crashing or otherwise abruptly terminating the connection. If you are getting a lot of these from a single host, there is probably some incompatibility between 8.x and that host (see Q3.12 and Q3.20). If you get a lot of them in general, you may have network problems that are causing connections to get reset. &lt;BR /&gt;&lt;BR /&gt;Note that this problem is sometimes caused by incompatible values of the MTU (Maximum Transmission Unit) size on a SLIP or PPP connection. Be sure that your MTU size is configured to be the same value as what your ISP has configured for your connection. If you are still having problems, then have your ISP configure your MTU size for 1500 (the maximum value), and you configure your MTU size similarly. &lt;BR /&gt;&lt;BR /&gt;Another possibility is that you have a router/firewall filtering out all incoming ICMP messages, while your OS is doing "Path MTU discovery" (e.g. modern versions of Solaris do this by default). Path MTU discovery relies on certain ICMP messages being allowed through back to the host originating the traffic - see RFC 1191 for the details. &lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar</description>
      <pubDate>Wed, 18 Sep 2002 09:53:02 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804738#M2476</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-18T09:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804739#M2477</link>
      <description>Dear Sir,&lt;BR /&gt;You said that "Another possibility is that you have a router/firewall filtering out all incoming ICMP messages, while your OS is doing "Path MTU discovery" (e.g. modern versions of Solaris do this by default). Path MTU discovery relies on certain ICMP messages being allowed through back to the host originating the traffic- see RFC 1191 for the details". I agree with you at this point. My server uses Wireless Broadband Access and CISCO router and then my users use dailup connection to connect to my server, I think that maybe  it is related to the MTU that why I have got these errors. But how can I know about the MTU and how can I do it, would you mind explaining me about this issue? I use Wireless Broadband Access 64Mbps that means the speed of my connection to the Internet is 64Mbps. Thank you so much for your assistance.&lt;BR /&gt;&lt;BR /&gt;Best regards,&lt;BR /&gt;&lt;BR /&gt;Chot</description>
      <pubDate>Fri, 20 Sep 2002 09:19:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804739#M2477</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-20T09:19:08Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804740#M2478</link>
      <description>Hi choth,&lt;BR /&gt;&lt;BR /&gt;Do this in linux.&lt;BR /&gt;to turn off path MTU discovery&lt;BR /&gt;echo  1  &amp;gt;/proc/sys/net/ipv4/ip_no_pmtu_disc&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar</description>
      <pubDate>Fri, 20 Sep 2002 09:43:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804740#M2478</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-20T09:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804741#M2479</link>
      <description>Dear Sir,&lt;BR /&gt;&lt;BR /&gt;Thank you so much for your assistance. To turn off path MTU discovery                 echo 1 &amp;gt;/proc/sys/net/ipv4/ip_no_pmtu_disc&lt;BR /&gt;What about turning on the path MTU, is it &lt;BR /&gt;echo 0 &amp;gt; /proc/sys/net/ipv4/ip_no_pmtu_disc?&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Choth&lt;BR /&gt;</description>
      <pubDate>Sat, 21 Sep 2002 02:00:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804741#M2479</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-21T02:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804742#M2480</link>
      <description>Hi,&lt;BR /&gt;you are right.&lt;BR /&gt;&lt;BR /&gt;echo 1 - disable&lt;BR /&gt;echo 0 - enable &lt;BR /&gt;&lt;BR /&gt;To keep the setting even after rebooting the&lt;BR /&gt;system. please do this.&lt;BR /&gt;Alternatively add the following line to /etc/sysctl.config and then run sysctl -p. This will ensure that this option is set on reboot. &lt;BR /&gt;&lt;BR /&gt;net.ipv4.ip_no_pmtu_disc=1&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 21 Sep 2002 02:42:13 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804742#M2480</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-21T02:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804743#M2481</link>
      <description>Dear Sir,&lt;BR /&gt;&lt;BR /&gt;I have already fired the command:&lt;BR /&gt;$ echo 1 &amp;gt; /proc/sys/net/ipv4/ip_no_pmtu_disc&lt;BR /&gt;And then I will see how it works and I will tell you tomorrow. I see in /etc/sendmail.cf file and I configure like this:&lt;BR /&gt;O PostMasterCopy=choth@of.forum.org.kh,porheng@of.forum.org.kh&lt;BR /&gt;I would like all the mails or errors ..etc... that mails to postmaster go to choth@of.forum.org.kh and porheng@forum.org.kh. Am I right or wrong with this configuration? One more think I receive the "E=\r\n" from Yahoo again and I do not why? Would you mind recommended me what should I do to solve this problem? Thank you so much for your assistance and I am looking forward to hearing from you.&lt;BR /&gt;&lt;BR /&gt;Regards,&lt;BR /&gt;&lt;BR /&gt;Chot</description>
      <pubDate>Mon, 23 Sep 2002 10:18:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804743#M2481</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-23T10:18:38Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804744#M2482</link>
      <description>Hi,&lt;BR /&gt;PostMasterCopy option will send a copy of error&lt;BR /&gt;mails and other notification messages to forwarded to the specified email address.&lt;BR /&gt;choth@of.forum.org.kh&lt;BR /&gt;It is a good option to use and you are right.&lt;BR /&gt;I think you can try deleting E=/r/n in sendmail.cf and see that makes any difference.&lt;BR /&gt;&lt;BR /&gt;Get back with results (with path MTU&lt;BR /&gt;disbled).&lt;BR /&gt;&lt;BR /&gt;regards,&lt;BR /&gt;&lt;BR /&gt;U.SivaKumar&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Sep 2002 10:28:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804744#M2482</guid>
      <dc:creator>U.SivaKumar_2</dc:creator>
      <dc:date>2002-09-23T10:28:59Z</dc:date>
    </item>
    <item>
      <title>Re: Asking about CRON</title>
      <link>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804745#M2483</link>
      <description />
      <pubDate>Fri, 27 Sep 2002 01:39:59 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/asking-about-cron/m-p/2804745#M2483</guid>
      <dc:creator>Chan Choth PUTH</dc:creator>
      <dc:date>2002-09-27T01:39:59Z</dc:date>
    </item>
  </channel>
</rss>

