Welcome to MacForumz.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

cron on 10.5.2 server

 
Goto page 1, 2, 3, 4, 5
   Macintosh computer (Home) -> General Discussion RSS
Related Topics:
Periodic cron jobs - My jobs all mail the log file as the last step. The problem is the mail never shows the current stuff, just the previous. Is there a way to force the output to flush before sending the mail? -- Robert B. Peirce, Venetia, PA bob AT..

Is Cron still around in OSX 10.5? - I'm making a list of things I need to do before I move to 10.5 (if I do). A passing mention on the net led me to fear that cron might not exist anymore after 10.4. That seems but just in case, I'd better ask. I use cron to run things at boot..

repair disk permissions and cron - Since repairing disk seems to be a fact of life in OS X, does anyone know if cron can be set up to do this I know the command line path to launch Disk Utility, so I guess I'm wondering whether there is a separate

MAC Server - Can anyone enlighten me on how to get the MAC pc's to logon to my MAC server? I have been left in the lurch by one of our staff and could rely do with some help with this matter. I have created some user accounts on the MAC server and would like the..

ARA Server in X - Hi! Please explain me one thing. There was a very useful service in Mac OS 9 called Apple Remote Access. With its help I could share my office LAN Internet with home Mac via modem line). Is it possible to do the same thing in Mac OS..
Next:  General Discussion: Numbers won't open large Excel files?  
Author Message
Robert Peirce1

External


Since: Dec 10, 2003
Posts: 424



(Msg. 1) Posted: Mon Apr 21, 2008 11:49 am
Post subject: cron on 10.5.2 server
Archived from groups: comp>sys>mac>misc (more info?)

I still don¹t know how to create a crontab in the standard way.  Crontab
­e produces the following output:
 
$ crontab ­e
create entry
ZZ to exit
crontab: no crontab for rbp - using an empty one
crontab: temp file must be edited in place

However, it works properly on my wife's 10.5.2 client and my 10.4.11
client. Something seems not to be set correctly.

I have found a work-around.
 
1. Create a file of cron commands, cronfile.
2. crontab cronfile
 
Any time you want to update your crontab, you need to edit the local
file and use step 2 again.  This works.
 
BTW, once an actual crontab is created, the crontab ­e sequence only
produces the second line of the error message.
 
Although I can now function, I would still like to know why this doesn't
work. The man page doesn't even mention these errors and I am totally at
sea on this.

Oh, BTW, while cron works on 10.5.2 server, each command that runs
leaves an error message in /var/log/system.log, so although it is
working, it isn't working quite right. This has been mentioned by
others so it is not unique to my installation.

--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]

 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
André Berger

External


Since: May 29, 2007
Posts: 20



(Msg. 2) Posted: Mon Apr 21, 2008 9:45 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

* Robert Peirce (2008-04-21):
> I still don¹t know how to create a crontab in the standard way.  Crontab
> ­e produces the following output:
>  
> $ crontab ­e
> create entry
> ZZ to exit
> crontab: no crontab for rbp - using an empty one
> crontab: temp file must be edited in place
>
> However, it works properly on my wife's 10.5.2 client and my 10.4.11
> client. Something seems not to be set correctly.
>
> I have found a work-around.
>  
> 1. Create a file of cron commands, cronfile.
> 2. crontab cronfile

I had to do a

sudo ln -s /usr/lib/cron /var/

and use

EDITOR=nano crontab -e

b/c I'm too lazy to figure out the correct vim options on
Leopard/client

-André

--
May as well be hung for a sheep as a lamb!
Linkstation/KuroBox/HG/HS/Tera Kernel 2.6/PPC from <http://hvkls.dyndns.org>

 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
user638

External


Since: Jan 13, 2005
Posts: 918



(Msg. 3) Posted: Tue Apr 22, 2008 12:02 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <bob-A32307.07492421042008@[199.45.49.11]>,
Robert Peirce <bob.DeleteThis@peirce-family.com.invalid> wrote:

> I still don¹t know how to create a crontab in the standard way.  Crontab
> ­e produces the following output:
>  
> $ crontab ­e
> create entry
> ZZ to exit
> crontab: no crontab for rbp - using an empty one
> crontab: temp file must be edited in place
>
> However, it works properly on my wife's 10.5.2 client and my 10.4.11
> client. Something seems not to be set correctly.

I experienced the same problem, and it was because I was using my
own install of Vim <http://www.vim.com>.

I solved my problem by defining a bash shell alias that makes sure
I'm using the Mac OS X provided vi (really Vim, but as provided by
Apple):

alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'

This works every time, all the time.

Bob Harris
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Robert Peirce1

External


Since: Dec 10, 2003
Posts: 424



(Msg. 4) Posted: Tue Apr 22, 2008 12:13 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <20080421194534.GC39909@fuchs>,
AndrÂŽ Berger <andre.berger.DeleteThis@web.de> wrote:

> * Robert Peirce (2008-04-21):
> > I still don¹t know how to create a crontab in the standard way.  Crontab
> > –e produces the following output:
> >  
> > $ crontab –e
> > create entry
> > ZZ to exit
> > crontab: no crontab for rbp - using an empty one
> > crontab: temp file must be edited in place
> >
> > However, it works properly on my wife's 10.5.2 client and my 10.4.11
> > client. Something seems not to be set correctly.
> >
> > I have found a work-around.
> >  
> > 1. Create a file of cron commands, cronfile.
> > 2. crontab cronfile
>
> I had to do a
>
> sudo ln -s /usr/lib/cron /var/
>
> and use
>
> EDITOR=nano crontab -e
>
> b/c I'm too lazy to figure out the correct vim options on
> Leopard/client

The problem is not with client. That works fine and as expected. The
problem is with server.

I can edit the file alright. It just doesn't get saved in the correct
location. /var/cron is not the solution, nor is the specific editor I use.

--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
André Berger

External


Since: May 29, 2007
Posts: 20



(Msg. 5) Posted: Tue Apr 22, 2008 7:04 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

* Bob Harris (2008-04-22):
> In article <bob-A32307.07492421042008@[199.45.49.11]>,
> Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
>
> > I still don¹t know how to create a crontab in the standard way.  Crontab
> > ­e produces the following output:
> >  
> > $ crontab ­e
> > create entry
> > ZZ to exit
> > crontab: no crontab for rbp - using an empty one
> > crontab: temp file must be edited in place
> >
> > However, it works properly on my wife's 10.5.2 client and my 10.4.11
> > client. Something seems not to be set correctly.
>
> I experienced the same problem, and it was because I was using my
> own install of Vim <http://www.vim.com>.
>
> I solved my problem by defining a bash shell alias that makes sure
> I'm using the Mac OS X provided vi (really Vim, but as provided by
> Apple):
>
> alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'

I think one would have to ":set noswap" in vim

-André

--
May as well be hung for a sheep as a lamb!
Linkstation/KuroBox/HG/HS/Tera Kernel 2.6/PPC from <http://hvkls.dyndns.org>
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Robert Peirce1

External


Since: Dec 10, 2003
Posts: 424



(Msg. 6) Posted: Tue Apr 22, 2008 1:32 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <nospam.News.Bob-0DCC6B.20021621042008 DeleteThis @news.verizon.net>,
Bob Harris <nospam.News.Bob DeleteThis @remove.Smith-Harris.us> wrote:

> In article <bob-A32307.07492421042008@[199.45.49.11]>,
> Robert Peirce <bob DeleteThis @peirce-family.com.invalid> wrote:
>
> > I still don¹t know how to create a crontab in the standard way.  Crontab
> > ­e produces the following output:
> >  
> > $ crontab ­e
> > create entry
> > ZZ to exit
> > crontab: no crontab for rbp - using an empty one
> > crontab: temp file must be edited in place
> >
> > However, it works properly on my wife's 10.5.2 client and my 10.4.11
> > client. Something seems not to be set correctly.
>
> I experienced the same problem, and it was because I was using my
> own install of Vim <http://www.vim.com>.
>
> I solved my problem by defining a bash shell alias that makes sure
> I'm using the Mac OS X provided vi (really Vim, but as provided by
> Apple):
>
> alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'
>
> This works every time, all the time.
>
> Bob Harris

I just tried that and got the same

crontab: temp file must be edited in place

error. Something else is gong on here.

--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Robert Peirce1

External


Since: Dec 10, 2003
Posts: 424



(Msg. 7) Posted: Tue Apr 22, 2008 1:33 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <20080422050407.GD39909@fuchs>,
AndrÂŽ Berger <andre.berger.TakeThisOut@web.de> wrote:

> * Bob Harris (2008-04-22):
> > In article <bob-A32307.07492421042008@[199.45.49.11]>,
> > Robert Peirce <bob.TakeThisOut@peirce-family.com.invalid> wrote:
> >
> > > I still don¹t know how to create a crontab in the standard way.  Crontab
> > > –e produces the following output:
> > >  
> > > $ crontab –e
> > > create entry
> > > ZZ to exit
> > > crontab: no crontab for rbp - using an empty one
> > > crontab: temp file must be edited in place
> > >
> > > However, it works properly on my wife's 10.5.2 client and my 10.4.11
> > > client. Something seems not to be set correctly.
> >
> > I experienced the same problem, and it was because I was using my
> > own install of Vim <http://www.vim.com>.
> >
> > I solved my problem by defining a bash shell alias that makes sure
> > I'm using the Mac OS X provided vi (really Vim, but as provided by
> > Apple):
> >
> > alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'
>
> I think one would have to ":set noswap" in vim

That is an "unknown option" in vi.

--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
user638

External


Since: Jan 13, 2005
Posts: 918



(Msg. 8) Posted: Tue Apr 22, 2008 11:55 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <bob-B7DD2F.09320622042008@[199.45.49.11]>,
Robert Peirce <bob.TakeThisOut@peirce-family.com.invalid> wrote:

> In article <nospam.News.Bob-0DCC6B.20021621042008.TakeThisOut@news.verizon.net>,
> Bob Harris <nospam.News.Bob.TakeThisOut@remove.Smith-Harris.us> wrote:
>
> > In article <bob-A32307.07492421042008@[199.45.49.11]>,
> > Robert Peirce <bob.TakeThisOut@peirce-family.com.invalid> wrote:
> >
> > > I still don¹t know how to create a crontab in the standard way.  Crontab
> > > ­e produces the following output:
> > >  
> > > $ crontab ­e
> > > create entry
> > > ZZ to exit
> > > crontab: no crontab for rbp - using an empty one
> > > crontab: temp file must be edited in place
> > >
> > > However, it works properly on my wife's 10.5.2 client and my 10.4.11
> > > client. Something seems not to be set correctly.
> >
> > I experienced the same problem, and it was because I was using my
> > own install of Vim <http://www.vim.com>.
> >
> > I solved my problem by defining a bash shell alias that makes sure
> > I'm using the Mac OS X provided vi (really Vim, but as provided by
> > Apple):
> >
> > alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'
> >
> > This works every time, all the time.
> >
> > Bob Harris
>
> I just tried that and got the same
>
> crontab: temp file must be edited in place
>
> error. Something else is gong on here.

When you are editing in vi/Vim, do you have a habit of doing

:w

I have that habit, and I've found that if I do that while editing
crontab files, it screws up crontab and I get a similar message to
what you are seeing.

I think the primary problem is if the editor creates a new file
(even if it has the same name) with a different file system inode
number, then crontab gets upset.

There are modes in Vim that can use the original as a backup file
and write an updated new file with the old name, or write the
updated information to a new file and when that is safely on disk,
do renames. I think it is this behavior that upsets crontab.

So maybe you need to comb through your .vimrc (or .exrc) to see if
there is any option causing this.

If you do have a .vimrc option to cause new files to be created,
try disabling it. If that works, but you like the option, then
create a script to invoke Vim with the -u NONE option, and invoke
this crontab with "EDITOR=your_script crontab -e"

Bob Harris
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
André Berger

External


Since: May 29, 2007
Posts: 20



(Msg. 9) Posted: Wed Apr 23, 2008 6:45 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

* Robert Peirce (2008-04-22):
> In article <20080422050407.GD39909@fuchs>,
> AndrÂŽ Berger <andre.berger.DeleteThis@web.de> wrote:
>
> > * Bob Harris (2008-04-22):
> > > In article <bob-A32307.07492421042008@[199.45.49.11]>,
> > > Robert Peirce <bob.DeleteThis@peirce-family.com.invalid> wrote:
[...]
> > > > crontab: temp file must be edited in place
[...]
> > > I solved my problem by defining a bash shell alias that makes sure
> > > I'm using the Mac OS X provided vi (really Vim, but as provided by
> > > Apple):
> > >
> > > alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'
> >
> > I think one would have to ":set noswap" in vim
>
> That is an "unknown option" in vi.

That's why I wrote "vim" :)

-André

--
May as well be hung for a sheep as a lamb!
Linkstation/KuroBox/HG/HS/Tera Kernel 2.6/PPC from <http://hvkls.dyndns.org>
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Robert Peirce1

External


Since: Dec 10, 2003
Posts: 424



(Msg. 10) Posted: Wed Apr 23, 2008 11:28 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <nospam.News.Bob-435213.19554022042008.RemoveThis@news.verizon.net>,
Bob Harris <nospam.News.Bob.RemoveThis@remove.Smith-Harris.us> wrote:

> In article <bob-B7DD2F.09320622042008@[199.45.49.11]>,
> Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
>
> > In article <nospam.News.Bob-0DCC6B.20021621042008.RemoveThis@news.verizon.net>,
> > Bob Harris <nospam.News.Bob.RemoveThis@remove.Smith-Harris.us> wrote:
> >
> > > In article <bob-A32307.07492421042008@[199.45.49.11]>,
> > > Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
> > >
> > > > I still don¹t know how to create a crontab in the standard way. 
> > > > Crontab
> > > > ­e produces the following output:
> > >
> > > I experienced the same problem, and it was because I was using my
> > > own install of Vim <http://www.vim.com>.
> > >
> > > I solved my problem by defining a bash shell alias that makes sure
> > > I'm using the Mac OS X provided vi (really Vim, but as provided by
> > > Apple):
> > >
> > > alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'
> > >
> > > This works every time, all the time.
> > >
> > > Bob Harris
> >
> > I just tried that and got the same
> >
> > crontab: temp file must be edited in place
> >
> > error. Something else is going on here.
>
> When you are editing in vi/Vim, do you have a habit of doing
>
> :w

I don't think that is the issue. Crontab -e used to work before we
re-installed the OS. Something got changed, but I don't know what.

--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Jolly Roger

External


Since: Sep 09, 2006
Posts: 2935



(Msg. 11) Posted: Wed Apr 23, 2008 11:28 am
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <bob-391647.07280423042008@[199.45.49.11]>,
Robert Peirce <bob.TakeThisOut@peirce-family.com.invalid> wrote:

> Crontab -e used to work before we
> re-installed the OS. Something got changed, but I don't know what.

It may be you have a corrupt / incomplete install.

Did you upgrade, by chance?

--
Please send all responses to the relevant news group. E-mail sent to
this address may be devoured by my very hungry SPAM filter. I do not
read posts from Google Groups. Use a real news reader if you want me to
see your posts.

JR
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Dave Seaman

External


Since: Jun 25, 2003
Posts: 592



(Msg. 12) Posted: Wed Apr 23, 2008 12:09 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Wed, 23 Apr 2008 06:45:51 +0200, André Berger wrote:
> * Robert Peirce (2008-04-22):
>> In article <20080422050407.GD39909@fuchs>,
>> AndrÂ? Berger <andre.berger.RemoveThis@web.de> wrote:
>>
>> > * Bob Harris (2008-04-22):
>> > > In article <bob-A32307.07492421042008@[199.45.49.11]>,
>> > > Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
> [...]
>> > > > crontab: temp file must be edited in place
> [...]
>> > > I solved my problem by defining a bash shell alias that makes sure
>> > > I'm using the Mac OS X provided vi (really Vim, but as provided by
>> > > Apple):
>> > >
>> > > alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'
>> >
>> > I think one would have to ":set noswap" in vim
>>
>> That is an "unknown option" in vi.

> That's why I wrote "vim" :)

It's an "unknown option" in /usr/bin/vim, at least under OS X 10.5.2
client.



--
Dave Seaman
Third Circuit ignores precedent in Mumia Abu-Jamal ruling.
<http://www.indybay.org/newsitems/2008/03/29/18489281.php>
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Robert Peirce1

External


Since: Dec 10, 2003
Posts: 424



(Msg. 13) Posted: Wed Apr 23, 2008 2:46 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <jollyroger-2ECE6F.08451323042008 RemoveThis @individual.net>,
Jolly Roger <jollyroger RemoveThis @pobox.com> wrote:

> In article <bob-391647.07280423042008@[199.45.49.11]>,
> Robert Peirce <bob RemoveThis @peirce-family.com.invalid> wrote:
>
> > Crontab -e used to work before we
> > re-installed the OS. Something got changed, but I don't know what.
>
> It may be you have a corrupt / incomplete install.
>
> Did you upgrade, by chance?

Our consultant was messing with the system and got it to a state where
we had to restore from a SuperDuper backup. I agree something seems to
be corrupt, but I can't figure out what. Unfortunately, I have no idea
how to interpret the error message. What does it mean that the file
must be edited in place?

--
Robert B. Peirce, Venetia, PA 724-941-6883
bob AT peirce-family.com [Mac]
rbp AT cooksonpeirce.com [Office]
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Chris Ridd

External


Since: Jun 24, 2004
Posts: 383



(Msg. 14) Posted: Wed Apr 23, 2008 4:12 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On 2008-04-23 15:46:54 +0100, Robert Peirce
<bob.RemoveThis@peirce-family.com.invalid> said:

> In article <jollyroger-2ECE6F.08451323042008.RemoveThis@individual.net>,
> Jolly Roger <jollyroger.RemoveThis@pobox.com> wrote:
>
>> In article <bob-391647.07280423042008@[199.45.49.11]>,
>> Robert Peirce <bob.RemoveThis@peirce-family.com.invalid> wrote:
>>
>>> Crontab -e used to work before we
>>> re-installed the OS. Something got changed, but I don't know what.
>>
>> It may be you have a corrupt / incomplete install.
>>
>> Did you upgrade, by chance?
>
> Our consultant was messing with the system and got it to a state where
> we had to restore from a SuperDuper backup. I agree something seems to
> be corrupt, but I can't figure out what. Unfortunately, I have no idea

I think you have to tell the consultant to fix what he's broken.
There's a reason you're paying them mega bucks, eh?

> how to interpret the error message. What does it mean that the file
> must be edited in place?

Basically, are the contents of the existing file changing (edited in
place) or is a new file being created and given the old file's name.

In pseudo-code, is this happening:

open existing file for read/write
read everything
overwrite with different stuff
close file

or this:

open existing file for read
read everything
close file
open new file for write
write different stuff
close new file
delete existing file
rename new file as existing file

Cheers,

Chris
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
André Berger

External


Since: May 29, 2007
Posts: 20



(Msg. 15) Posted: Wed Apr 23, 2008 5:31 pm
Post subject: Re: cron on 10.5.2 server [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

* Dave Seaman (2008-04-23):
> On Wed, 23 Apr 2008 06:45:51 +0200, André Berger wrote:
> > * Robert Peirce (2008-04-22):
> >> In article <20080422050407.GD39909@fuchs>,
> >> AndrÂ? Berger <andre.berger.DeleteThis@web.de> wrote:
> >>
> >> > * Bob Harris (2008-04-22):
> >> > > In article <bob-A32307.07492421042008@[199.45.49.11]>,
> >> > > Robert Peirce <bob.DeleteThis@peirce-family.com.invalid> wrote:
> > [...]
> >> > > > crontab: temp file must be edited in place
> > [...]
> >> > > I solved my problem by defining a bash shell alias that makes sure
> >> > > I'm using the Mac OS X provided vi (really Vim, but as provided by
> >> > > Apple):
> >> > >
> >> > > alias crontab='EDITOR=/usr/bin/vi /usr/bin/crontab'
> >> >
> >> > I think one would have to ":set noswap" in vim
> >>
> >> That is an "unknown option" in vi.
>
> > That's why I wrote "vim" :)
>
> It's an "unknown option" in /usr/bin/vim, at least under OS X 10.5.2
> client.

Ouch, it's ":set noswapfile", sorry!

-André

--
May as well be hung for a sheep as a lamb!
Linkstation/KuroBox/HG/HS/Tera Kernel 2.6/PPC from <http://hvkls.dyndns.org>
 >> Stay informed about: cron on 10.5.2 server 
Back to top
Login to vote
Display posts from previous:   
   Macintosh computer (Home) -> General Discussion All times are: Pacific Time (US & Canada) (change)
Goto page 1, 2, 3, 4, 5
Page 1 of 5

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]