<?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: need help adding entry into inittab in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742004#M67871</link>
    <description>Hi,&lt;BR /&gt;&lt;BR /&gt;CHECK THE CURRENT RUN LEVEL BY&lt;BR /&gt;&lt;BR /&gt;# who -r&lt;BR /&gt;&lt;BR /&gt;By mistake I wrote init -r.&lt;BR /&gt;&lt;BR /&gt;Piyush</description>
    <pubDate>Tue, 11 Jun 2002 18:09:31 GMT</pubDate>
    <dc:creator>PIYUSH D. PATEL</dc:creator>
    <dc:date>2002-06-11T18:09:31Z</dc:date>
    <item>
      <title>need help adding entry into inittab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2741999#M67866</link>
      <description>I am running Services for Unix 3.0 on Microsoft NT.  On my UX 11i I added an entry in the inittab&lt;BR /&gt;syncpass:2:respawn:/usr/bin/ssod&lt;BR /&gt;I ran the init q afterwards and the process still does not start at bootup.  However it will run manually.&lt;BR /&gt;&lt;BR /&gt;Any help would be most appreciated.&lt;BR /&gt;&lt;BR /&gt;Andrew Imm</description>
      <pubDate>Tue, 11 Jun 2002 13:35:54 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2741999#M67866</guid>
      <dc:creator>Andrew Imm</dc:creator>
      <dc:date>2002-06-11T13:35:54Z</dc:date>
    </item>
    <item>
      <title>Re: need help adding entry into inittab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742000#M67867</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;change the run levels.....by default the Unix system boots to run level 3&lt;BR /&gt;&lt;BR /&gt;Check the run level by&lt;BR /&gt;&lt;BR /&gt;# init -r&lt;BR /&gt;&lt;BR /&gt;Change it to 3 and it will work&lt;BR /&gt;&lt;BR /&gt;Piyush</description>
      <pubDate>Tue, 11 Jun 2002 13:37:45 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742000#M67867</guid>
      <dc:creator>PIYUSH D. PATEL</dc:creator>
      <dc:date>2002-06-11T13:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: need help adding entry into inittab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742001#M67868</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;you can put two/three entries also&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;syncpass:234:respawn:/usr/bin/ssod &lt;BR /&gt;&lt;BR /&gt;Piyush&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Jun 2002 13:39:33 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742001#M67868</guid>
      <dc:creator>PIYUSH D. PATEL</dc:creator>
      <dc:date>2002-06-11T13:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: need help adding entry into inittab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742002#M67869</link>
      <description>You probably don't want to put this inittab; if you do, you probably want to change 'respawn' to 'once'.&lt;BR /&gt;&lt;BR /&gt;The standard way of starting a process at boot time is to create an entry in /sbin/init.d.&lt;BR /&gt;There is a template file there that you can copy and adapt to your needs. You then link the version in /sbin/init.d to start and kill scripts in /sbin/rcN.d.&lt;BR /&gt;&lt;BR /&gt;For example, let's say your script in /sbin/init.d is called 'silly'. You would then make a symbolic link in rc2.d to start the script abd a link in rc1.d to kill the script.&lt;BR /&gt;&lt;BR /&gt;e.g. ln -s /sbin/init.d/silly /sbin/rc2.d/S901silly&lt;BR /&gt;&lt;BR /&gt;ln -s /sbin/init.d/silly /sbin/rc1.d/K099silly.&lt;BR /&gt;&lt;BR /&gt;If the script is started in run-level N (the 'S' script), it should be killed (the 'K' script) in run-level N - 1. By convention, K + S = 1000; that generally brings a service up and down in correct order.&lt;BR /&gt;&lt;BR /&gt;Man rc for details.&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Jun 2002 13:46:00 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742002#M67869</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2002-06-11T13:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: need help adding entry into inittab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742003#M67870</link>
      <description>Hi Imma&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The entry should look like this :L&lt;BR /&gt;&lt;BR /&gt;syncpass:234:respawn:/usr/bin/ssod &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;if you want to run it at runlevels 2 ,3 4 and also the file /usr/bin/ssod should be excutable atleast by root.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Manoj Srivastava&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 11 Jun 2002 13:48:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742003#M67870</guid>
      <dc:creator>MANOJ SRIVASTAVA</dc:creator>
      <dc:date>2002-06-11T13:48:35Z</dc:date>
    </item>
    <item>
      <title>Re: need help adding entry into inittab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742004#M67871</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;CHECK THE CURRENT RUN LEVEL BY&lt;BR /&gt;&lt;BR /&gt;# who -r&lt;BR /&gt;&lt;BR /&gt;By mistake I wrote init -r.&lt;BR /&gt;&lt;BR /&gt;Piyush</description>
      <pubDate>Tue, 11 Jun 2002 18:09:31 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742004#M67871</guid>
      <dc:creator>PIYUSH D. PATEL</dc:creator>
      <dc:date>2002-06-11T18:09:31Z</dc:date>
    </item>
    <item>
      <title>Re: need help adding entry into inittab</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742005#M67872</link>
      <description>Thx for helping out with this.  I was able to get it operational.  Thx</description>
      <pubDate>Wed, 12 Jun 2002 13:13:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/need-help-adding-entry-into-inittab/m-p/2742005#M67872</guid>
      <dc:creator>Andrew Imm</dc:creator>
      <dc:date>2002-06-12T13:13:55Z</dc:date>
    </item>
  </channel>
</rss>

