| Article: |
Learning the Terminal in Jaguar, Part 1 | |
| Subject: | crontab moved | |
| Date: | 2005-08-24 14:02:29 | |
| From: | WinterLavigne | |
|
Hello, I'm trying to learn a thing or two about using the terminal.
|
||
Showing messages 1 through 7 of 7.
-
crontab moved
2007-08-14 02:23:28 Semiotikus [View]
-
crontab moved
2005-09-07 01:41:04 andrewf [View]
I recieved that exact same message. Its obviously because we are using tiger. I tried going to the advised directory (/system/library/launchdaemons) but coudnt find crontab or anything about cron
could someone experienced in tiger terminal please help us? -
crontab moved
2005-10-24 06:28:24 hausmeister [View]
I had the same problem but after some guessing I found the files. It's not a crontab file anymore but instead they're in plist format (that's described in one of the later tutorials but can also be edited with pico). The files in question are called:
com.apple.periodic-daily.plist
com.apple.periodic-weekly.plist
com.apple.periodic-monthly.plist
The time format is still the same as in the original tutorial. -
crontab moved
2007-02-23 16:31:41 rupertreid [View]
I tried to find the .plist files but could not. I am using OSX 10.4.8. I would be grateful if someone would detail exactly how I can locate the .plist files and edit them in pico.
Rgds Rupert -
crontab moved
2007-08-28 17:44:40 Jonny81 [View]
Rupert,
type the following and it should get you there (I'm using OSX 10.4.10 so hopefully it is the same!)
cd /system/library/launchdaemons
This will bring you to the correct directory. If you do an ls you can see the list of files, the three which are important are:
com.apple.periodic-daily.plist
com.apple.periodic-monthly.plist
com.apple.periodic-weekly.plist
Type:
sudo cp com.apple.periodic-daily.plist com.apple.periodic-daily.plist.bak
sudo cp com.apple.periodic-monthly.plist com.apple.periodic-monthly.plist.bak
sudo cp com.apple.periodic-weekly.plist com.apple.periodic-weekly.plist.bak
in order to make backups of the files. If you look at the contents of the daily file through cat:
cat com.apple.periodic-daily.plist
you should get something like this:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.apple.periodic-daily</string>
<key>ProgramArguments</key>
<array>
<string>/usr/sbin/periodic</string>
<string>daily</string>
</array>
<key>LowPriorityIO</key>
<true/>
<key>Nice</key>
<integer>1</integer>
<key>StartCalendarInterval</key>
<dict>
<key>Hour</key>
<integer>3</integer>
<key>Minute</key>
<integer>15</integer>
</dict>
</dict>
</plist>
We find out that the files are now in XML (I have no clue why). Anyway, there are two KEY tags, one is Hour and the other is Minute. Under each of these is the associated INTEGER tag (which in this case is 3 for HOUR and 15 for MINUTE). I changed my HOUR integer tag from 3 to 20 (so it would run at 8:15pm). Haven't had any problems.
The other two files should be the same (with perhaps slightly different times).
Hope this helps and sorry if it isnt the same in OSX 10.4.8. Just make sure to backup your files! -
crontab moved
2007-08-28 17:55:55 Jonny81 [View]
Oh, sorry forgot. To edit the file, of course:
pico com.apple.periodic-daily.plist
or
sudo pico com.apple.periodic-daily.plist
if need be. You'll do the same for the other two files, just replacing the part of the filename 'daily' above with 'weekly' or 'monthly'. -
crontab moved
2007-02-23 16:31:21 rupertreid [View]
I tried to find the .plist files but could not. I am using OSX 10.4.8. I would be grateful if someone would detail exactly how I can locate the .plist files and edit them in pico.
Rgds Rupert



First of all, this is not a message from pico as some of the users suggest. It is a comment in the crontab file.
Since Tiger the system it self does not use cron to launch processes. This is now done by 'launchd'.
You can still use cron to launch you periodic tasks.
In my case i use it to make sure, a by cron launched php-script will work, since i need it to run on a linux webserver and develop on my local mac.