But vixie-cron is already installed on my Fedora 7.praka123 said:in debian based distros,vixie-cron(default) executable is set SUID(set user id) bit,so that every user can use it. as root,set suid bit for /usr/bin/crontab
remmmemmmba:suid/sgid is hopefully secure as major distros like debian,ubuntu and many are using it with binaries.so,install sxid package if ur paranoid on security! *linux.cudeso.be/linuxdoc/sxid.php
below is how to set suid/sgid :
*www.howtoforge.org/linux_setting_suid_sgid_bits
-rwsr-sr-x 1 root root 309K 2007-09-11 14:43 /usr/bin/crontab
crontab -e
crontab -l
praka123 said:^then ur supposed to be able to run all binaries which are executable
for eg:
u can open a terminal and run:
and follow the instructions as per man 5 crontab to schedule.Code:crontab -e
BUT make sure service "cron" is enabled.
^will display scheduled.Code:crontab -l
CRONTAB(1) CRONTAB(1)
NAME
crontab - maintain crontab files for individual users (ISC Cron V4.1)
SYNOPSIS
crontab [-u user] file
crontab [-u user] [-l | -r | -e] [-i] [-s]
DESCRIPTION
Crontab is the program used to install, deinstall or list the tables used to drive the cron(8) daemon in
ISC Cron. Each user can have their own crontab, and though these are files in /var/spool/ , they are not
intended to be edited directly. For SELinux in mls mode can be even more crontabs - for each range. For
more see selinux(8).
If the cron.allow file exists, then you must be listed therein in order to be allowed to use this com-
mand. If the cron.allow file does not exist but the cron.deny file does exist, then you must not be
listed in the cron.deny file in order to use this command. If neither of these files exists, only the
super user will be allowed to use this command.
man page fcrontab(1) said:A user can install a fcrontab if he is listed in the /usr/local/etc/fcron.allow and not (unless by the keyword all) listed in /usr/local/etc/fcron.deny (see section "files" below). If neither fcron.allow nor fcron.deny exist, all users are allowed. None of these files have to exist, but if they do, the deny file takes precedence.