Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

at.deny(5) [redhat man page]

AT.ALLOW(5)						     Linux Programmer's Manual						       AT.ALLOW(5)

NAME
at.allow, at.deny - determine who can submit jobs via at or batch DESCRIPTION
The /etc/at.allow and /etc/at.deny files determine which user can submit commands for later execution via at(1) or batch(1). The format of the files is a list of usernames, one on each line. Whitespace is not permitted. The superuser may always use at. If the file /etc/at.allow exists, only usernames mentioned in it are allowed to use at. If /etc/at.allow does not exist, /etc/at.deny is checked. SEE ALSO
at(1), atrun(1), cron(8), crontab(1), atd(8). Sep 1997 AT.ALLOW(5)

Check Out this Related Man Page

ATD(8)							     Linux Programmer's Manual							    ATD(8)

NAME
atd - run jobs queued for later execution SYNOPSIS
atd [-l load_avg] [-b batch_interval] [-d] [-s] DESCRIPTION
atd runs jobs queued by at(1). OPTIONS
-l Specifies a limiting load factor, over which batch jobs should not be run, instead of the compile-time choice of 0.8. For an SMP system with n CPUs, you will probably want to set this higher than n-1. -b Specifiy the minimum interval in seconds between the start of two batch jobs (60 default). -d Debug; print error messages to standard error instead of using syslog(3). -s Process the at/batch queue only once. This is primarily of use for compatibility with old versions of at; atd -s is equivalent to the old atrun command. A script invoking atd -s is installed as /usr/sbin/atrun for backward compatibility. WARNING
atd won't work if its spool directory is mounted via NFS even if no_root_squash is set. FILES
/var/spool/at The directory for storing jobs; this should be mode 700, owner daemon. /var/spool/at/spool The direcotry for storing output; this should be mode 700, owner daemon. /etc/at.allow, /etc/at.deny determine who can use the at system. SEE ALSO
at(1), atrun(1), cron(8), crontab(1), syslog(3), at.deny(5), at.allow(5). BUGS
The functionality of atd should be merged into cron(8). local Mar 1997 ATD(8)
Man Page

9 More Discussions You Might Find Interesting

1. Solaris

crontab is not working.

I have a script which name is sicaklik.sh It is in the root directory. I can run manually but I want to run automatically every 3 minutes but it is not working. WHY? #whoami root #crontab -l #ident "@(#)root 1.21 04/03/23 SMI" 3 * * * * sh ./sicaklik.sh #ls -l sicaklik*... (6 Replies)
Discussion started by: getrue
6 Replies

2. UNIX for Dummies Questions & Answers

Can't use cron or at - any other options?

I am not authorised to use cron or at to perform periodic backups. Are there any other options available that would not require elevated permissions? (8 Replies)
Discussion started by: MaindotC
8 Replies

3. Slackware

K3b permission problem

When I set up to backup /home to a DVD I am incurring a problem with K3B ver. 2.0.2 saying I (root) has insufficient privileges to access /home/myuser/hp-check.log file. It also does this to the lost+found files for /home and /opt. I am root and the file/directory has read+write privs for root.... (1 Reply)
Discussion started by: slak0
1 Replies

4. Solaris

finding crontab and permissions

hi , how/where to find crontab and permissions that whether my user id has crontab permissions or not . I need to schedule one job through one application(datastage application) which is installed on sunsolaris envirobnment. When i try to schedule job/s, i am getting error that "Error... (3 Replies)
Discussion started by: sridhardwh
3 Replies

5. UNIX for Dummies Questions & Answers

Facing issues while running a cronjob !

Hi, I am trying to run a cronjob. But while doing so I am getting the following error message :- can't open yourfile in /var/spool/cron/crontabs directory. No such file or directory How can I resolve this issue ? Please help. Thanks Please view this code tag video for... (14 Replies)
Discussion started by: acidburn_007
14 Replies

6. AIX

Ask Step create crontab

dear master, I have a question about crontab, I trying create a file. #touch myfile #vi myfile errpt >> reporterror /mydirectory that content myfile. and I try, insert at crontab -e 45 14 * * * /myderectory/myfile >> /mydirectory ... (13 Replies)
Discussion started by: williamen
13 Replies

7. UNIX for Dummies Questions & Answers

Not able to edit crontab file

Hi, I have a solaris 10 box. And I want to schedule a cronjob.But it gives the following error bash-3.2$ crontab -l crontab: can't open your crontab file. bash-3.2$ EDITOR=vi bash-3.2$ export EDITOR bash-3.2$ crontab -e crontab: can't open your crontab file. I checked in... (12 Replies)
Discussion started by: Rossdba
12 Replies

8. UNIX for Advanced & Expert Users

AT command Error

Hi I have used the AT command in my shell script to schedule the jobs. Sometimes it works fine but sometimes it throws an error, such as : at: can't change the owner of your job to you. I could not find any solution to this issue yet. If anyone can please provide any pointer what doe this... (3 Replies)
Discussion started by: MD21
3 Replies

9. Shell Programming and Scripting

At command for Linux job not working from php

I have a script .sh with a curl command in it: curl --digest "http://xxxxxxx.xxx/mail.php?email=xxxx@xxx.xx"; from terminal this works good : ./script.sh //(mail arrives in my box) from php this works good: shell_exec('./phpsc.sh'); // (mail arrives in my box) from terminal this... (13 Replies)
Discussion started by: extra93
13 Replies