<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Automatically Start a Script at Linux Bootup</title>
	<atom:link href="http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/</link>
	<description>Tutorials, Guides, Tips, and Tricks from Everyday Experiences</description>
	<lastBuildDate>Tue, 07 Feb 2012 15:08:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Derek@TheDailyLinux</title>
		<link>http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/#comment-881</link>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
		<pubDate>Tue, 07 Feb 2012 15:08:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=883#comment-881</guid>
		<description>The IP address example was contrived.  It&#039;s not meant to be useful in any way, but rather explain how to create the startup script.</description>
		<content:encoded><![CDATA[<p>The IP address example was contrived.  It&#8217;s not meant to be useful in any way, but rather explain how to create the startup script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: allamiro</title>
		<link>http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/#comment-880</link>
		<dc:creator>allamiro</dc:creator>
		<pubDate>Tue, 07 Feb 2012 15:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=883#comment-880</guid>
		<description>But if your system for any reason get rebooted the system will change IP not sure if its a good solution how do you stop that once it runs</description>
		<content:encoded><![CDATA[<p>But if your system for any reason get rebooted the system will change IP not sure if its a good solution how do you stop that once it runs</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manny</title>
		<link>http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/#comment-558</link>
		<dc:creator>Manny</dc:creator>
		<pubDate>Fri, 02 Dec 2011 18:35:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=883#comment-558</guid>
		<description>Hi Derek,
   As per your guide, having the symbolic link on /etc/rc3.d/S10lrgenerator
worked perfectly, Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Hi Derek,<br />
   As per your guide, having the symbolic link on /etc/rc3.d/S10lrgenerator<br />
worked perfectly, Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derek@TheDailyLinux</title>
		<link>http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/#comment-557</link>
		<dc:creator>Derek@TheDailyLinux</dc:creator>
		<pubDate>Thu, 01 Dec 2011 06:07:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=883#comment-557</guid>
		<description>What&#039;s your default runlevel?  Run &#039;runlevel&#039; at the command line and see what number is returned.  It&#039;s possible that &quot;2&quot; isn&#039;t the default runlevel on your system.</description>
		<content:encoded><![CDATA[<p>What&#8217;s your default runlevel?  Run &#8216;runlevel&#8217; at the command line and see what number is returned.  It&#8217;s possible that &#8220;2&#8243; isn&#8217;t the default runlevel on your system.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manny</title>
		<link>http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/#comment-556</link>
		<dc:creator>Manny</dc:creator>
		<pubDate>Wed, 30 Nov 2011 18:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=883#comment-556</guid>
		<description>Hi DEREK, thanks for posting this and I think that is is really what I needed. But I must be doing something wrong or missing something.

I basically created new a script and I called it lrgenerator under the /etc/init.d/ directory, and the script content looks just like this:

export PRODUCT_DIR=/opt/HP/HP_LoadGenerator
export M_LROOT=$PRODUCT_DIR
export LD_LIBRARY_PATH=${M_LROOT}/bin
export PATH=${M_LROOT}/bin:$PATH
/opt/HP/HP_LoadGenerator/bin/m_daemon_setup -install

so I did the following:

chmod +x lrgenerator
ln -s /etc/init.d/lrgenerator /etc/rc2.d/S10lrgenerator

I tried to reboot the server, and tried to echo the value of M_LROOT
echo $M_LROOT
and it just comes as blank. So my take is that it didn&#039;t really run the S10lrgenerator symbolic link upon restarting the server. Can you please advise regarding this issue?
Thanks,
Manny</description>
		<content:encoded><![CDATA[<p>Hi DEREK, thanks for posting this and I think that is is really what I needed. But I must be doing something wrong or missing something.</p>
<p>I basically created new a script and I called it lrgenerator under the /etc/init.d/ directory, and the script content looks just like this:</p>
<p>export PRODUCT_DIR=/opt/HP/HP_LoadGenerator<br />
export M_LROOT=$PRODUCT_DIR<br />
export LD_LIBRARY_PATH=${M_LROOT}/bin<br />
export PATH=${M_LROOT}/bin:$PATH<br />
/opt/HP/HP_LoadGenerator/bin/m_daemon_setup -install</p>
<p>so I did the following:</p>
<p>chmod +x lrgenerator<br />
ln -s /etc/init.d/lrgenerator /etc/rc2.d/S10lrgenerator</p>
<p>I tried to reboot the server, and tried to echo the value of M_LROOT<br />
echo $M_LROOT<br />
and it just comes as blank. So my take is that it didn&#8217;t really run the S10lrgenerator symbolic link upon restarting the server. Can you please advise regarding this issue?<br />
Thanks,<br />
Manny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Setup Auto Login Using mingetty &#124; The Linux Daily</title>
		<link>http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/#comment-555</link>
		<dc:creator>Setup Auto Login Using mingetty &#124; The Linux Daily</dc:creator>
		<pubDate>Fri, 12 Mar 2010 05:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.derekhildreth.com/blog/?p=883#comment-555</guid>
		<description>[...] necessary. Instead, take a look at how to automatically run a program on system startup here: http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/. If you&#8217;d still like to login automatically, then follow the steps [...] </description>
		<content:encoded><![CDATA[<p>[...] necessary. Instead, take a look at how to automatically run a program on system startup here: <a href="http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/" rel="nofollow">http://www.thelinuxdaily.com/2010/01/automatically-start-a-script-at-linux-bootup/</a>. If you&#8217;d still like to login automatically, then follow the steps [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

