PDA

View Full Version : Anybody knows how to deamonize a shell script ?



ktheking
06-22-2003, 06:13 PM
sh scriptname.sh

=> bu how to deamonize this ?

Dave_Bechtel
06-23-2003, 09:17 PM
--What do you mean by "daemonize"? Daemons stay running in the background looking for connections or facilitating I/O.

--If you just want it to run every time at boot, you can create a link to the script in the /etc/rc5.d directory.

This thread ( http://www.knoppix.net/forum/viewtopic.php?t=3138 ) may be of use.


sh scriptname.sh

=> bu how to deamonize this ?

ktheking
06-24-2003, 08:25 AM
I'd like to run a script that continiously is running ,even after quiting a knoppix session.
It's a script that contains timed actions ,mainly used for the same purpose as 'Scheduled tasks' inside windoze .

By the way isn't there something like that for KDE ?

Dave_Bechtel
06-24-2003, 07:42 PM
--You should probably investigate ' man cron '... ;-)


I'd like to run a script that continiously is running ,even after quiting a knoppix session.
It's a script that contains timed actions ,mainly used for the same purpose as 'Scheduled tasks' inside windoze .

By the way isn't there something like that for KDE ?

ktheking
06-29-2003, 12:34 PM
This sounds exactly what I need.. :D :D :D :D :D
Thanks a lot man .... (just gotta do my homework and learn to use it :roll: )

man cron :

Using cron to run programs on a schedule
cron is a Linux system process that will execute a program at a preset time. To use cron you must prepare a text file that describes the program that you want executed and the times that cron should execute them. Then you use the crontab program to load the text file that describes the cron jobs into cron.

Here is the format of a cron job file:

[min] [hour] [day of month] [month] [day of week] [program to be run]

where each field is defined as [min] Minutes that program should be executed on. 0-59. Do not set as * or the program will be run once a minute.
[hour] Hour that program should be executed on. 0-23. * for every hour.
[day of month] Day of the month that process should be executed on. 1-31. * for every day.
[month] Month that program whould be executed on. 1-12 * for every month.
[day of week] Day of the week. 0-6 where Sunday = 0, Monday = 1, ...., Saturday = 6. * for every day of the week.
[program] Program to be executed. Include full path information.


Here are some examples:

0,15,30,45 * * * * /usr/bin/foo

Will run /usr/bin/foo every 15 minutes on every hour, day-of-month, month, and day-of-week. In other words, it will run every 15 minutes for as long as the machine it running.

10 3 * * * /usr/bin/foo

Will run /usr/bin/foo at 3:10am on every day.

10 * 1 * * /usr/bin/foo

Will run /usr/bin/foo at 12:10am on the first day of the month.

10 * * 1 * /usr/bin/foo

Will run /usr/bin/foo at 12:10am on the first month of the year.

10 14 * * 1 /usr/bin/foo

Will run /usr/bin/foo at 2:10pm on every Monday.

There are more options for these. See man man crontab -S 5.

You must use crontab to load cron jobs into cron. First create a text file that uses the above rule to describe the cron job that you want to load into cron. But before you load it, type crontab -l to list any jobs that are currently loaded in crontab.

If none are listed, then it is safe to load your job. Example. If you wanted to run /usr/local/bin/foo once a day at 3:10am, then create a text file

10 3 * * * /usr/bin/foo

Save it as foo.cron. Then type crontab foo.cron. Check to see if it was loaded by typing crontab -l. It should display something like this:

# DO NOT EDIT THIS FILE - edit the master and reinstall.
# (ipwatch.cron installed on Thu Nov 18 11:48:02 1999)
# (Cron version -- $Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp $)
10 3 * * * /usr/bin/foo

If you want to edit the cron job, then edit foo.cron and then remove the existing cron job (crontab -r) and load it again (crontab foo.cron). You can have multiple jobs. Just put each different one on a seperate line in foo.cron.

contab jobs will run under the user that was in effect when you loaded the job in crontab.

See man cron, man crontab and man crontab -S 5 for more information.