<?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: newsyslog program in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688472#M54809</link>
    <description>There is a newsyslog program that I downloaded from freshmeat.net. &lt;BR /&gt;&lt;BR /&gt;When I ran the make install on the program, I get a strange message about sys_signame. I have no clue as to what it is and needed to know if anyone else encountered this problem when they installed it and what they did to fix it. &lt;BR /&gt; By the way, I'm installing thi son a K-class using 11 version 64 bit.</description>
    <pubDate>Thu, 21 Mar 2002 18:33:09 GMT</pubDate>
    <dc:creator>Ragni Singh</dc:creator>
    <dc:date>2002-03-21T18:33:09Z</dc:date>
    <item>
      <title>newsyslog program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688469#M54806</link>
      <description>Hey everyone,&lt;BR /&gt;&lt;BR /&gt;Since I didn't get the answer from anyone regarding this, I have to ask again. Has anyone installed the newsyslogd program on their Unix server and isit working?. I am having some issues installing this and would love for some assistance. Any help will be greatly appreciated.</description>
      <pubDate>Thu, 21 Mar 2002 18:22:53 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688469#M54806</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2002-03-21T18:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: newsyslog program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688470#M54807</link>
      <description>Sanman,&lt;BR /&gt;&lt;BR /&gt;What do you mean by NEW syslogd program? Where did you get it? What OS are you running?&lt;BR /&gt;&lt;BR /&gt;live free or die&lt;BR /&gt;harry</description>
      <pubDate>Thu, 21 Mar 2002 18:27:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688470#M54807</guid>
      <dc:creator>harry d brown jr</dc:creator>
      <dc:date>2002-03-21T18:27:08Z</dc:date>
    </item>
    <item>
      <title>Re: newsyslog program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688471#M54808</link>
      <description>Sanman,&lt;BR /&gt;&lt;BR /&gt;Here is some information about nesyslog under Solaris. I have not tried this tool yet:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.cert.org/security-improvement/implementations/i041.09.html" target="_blank"&gt;http://www.cert.org/security-improvement/implementations/i041.09.html&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;Shiju&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Mar 2002 18:31:26 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688471#M54808</guid>
      <dc:creator>Helen French</dc:creator>
      <dc:date>2002-03-21T18:31:26Z</dc:date>
    </item>
    <item>
      <title>Re: newsyslog program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688472#M54809</link>
      <description>There is a newsyslog program that I downloaded from freshmeat.net. &lt;BR /&gt;&lt;BR /&gt;When I ran the make install on the program, I get a strange message about sys_signame. I have no clue as to what it is and needed to know if anyone else encountered this problem when they installed it and what they did to fix it. &lt;BR /&gt; By the way, I'm installing thi son a K-class using 11 version 64 bit.</description>
      <pubDate>Thu, 21 Mar 2002 18:33:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688472#M54809</guid>
      <dc:creator>Ragni Singh</dc:creator>
      <dc:date>2002-03-21T18:33:09Z</dc:date>
    </item>
    <item>
      <title>Re: newsyslog program</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688473#M54810</link>
      <description>PSIGNAL&lt;BR /&gt;SYNOPSIS&lt;BR /&gt;     #include &lt;SIGNAL.H&gt;&lt;BR /&gt;&lt;BR /&gt;     void&lt;BR /&gt;     psignal(unsigned sig, const char *s);&lt;BR /&gt;&lt;BR /&gt;     extern const char * const sys_siglist[];&lt;BR /&gt;     extern const char * const sys_signame[];&lt;BR /&gt;&lt;BR /&gt;     #include &lt;STRING.H&gt;&lt;BR /&gt;&lt;BR /&gt;     char *&lt;BR /&gt;     strsignal(int sig);&lt;BR /&gt;&lt;BR /&gt;DESCRIPTION&lt;BR /&gt;     The psignal() and strsignal() functions locate the descriptive message string for a signal number.&lt;BR /&gt;     The strsignal() function accepts a signal number argument sig and returns a pointer to the corresponding message string.&lt;BR /&gt;     The psignal() function accepts an signal number argument sig and writes it to the standard error. If the argument s is non-NULL and does not point to the null character, s is written to the standard error file descriptor prior to the message string, immediately followed by a colon and a space.  If the signal number is not recognized (sigaction(2)), the string ``Unknown signal'' is produced.&lt;BR /&gt;&lt;BR /&gt;     The message strings can be accessed directly through the external array sys_siglist, indexed by recognized signal numbers.  The external array sys_signame is used similarly and contains short, lower-case abbreviations for signals which are useful for recognizing signal names in user input.  The defined variable NSIG contains a count of the strings in sys_siglist and sys_signame.&lt;BR /&gt;&lt;BR /&gt;I confess, I cannot make a great deal of sense of this.  This is from a BSD man page.&lt;BR /&gt;&lt;BR /&gt;The only reason I've even heard of newsyslogd is that one of the guys here is a FreeBSD Guru, and he managed to run it on an HP11.00  box after some tweaking.  It was all well beyond me, I'm afraid.&lt;BR /&gt;&lt;BR /&gt;There's likely an HPUX equivalent, but I have no idea what it may be.&lt;/STRING.H&gt;&lt;/SIGNAL.H&gt;</description>
      <pubDate>Thu, 21 Mar 2002 19:40:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/newsyslog-program/m-p/2688473#M54810</guid>
      <dc:creator>Jon Mattatall</dc:creator>
      <dc:date>2002-03-21T19:40:35Z</dc:date>
    </item>
  </channel>
</rss>

