RE: running program in background

2002-02-28 Thread Rev. David P. Giffen
I run seti@home myself. Seti has a -nice flag for running it in the back ground. What I did is set up a cron job with the following statement in it. 0 * * * * cd /home/seti1/setiathome; ./setiathome -graphics -nice 19 > /dev/null 2> /dev/null This is almost straight out of the README file. I ad

Re: running program in background

2002-02-27 Thread Hidong Kim
OK. Devon wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Wednesday 27 February 2002 10:03 pm, Hidong Kim wrote: > > > The & will run the job in the background. But if you log out of your > > session, I think the job will die. If you use nohup, your job will > > continu

Re: running program in background

2002-02-27 Thread Devon
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wednesday 27 February 2002 10:03 pm, Hidong Kim wrote: > The & will run the job in the background. But if you log out of your > session, I think the job will die. If you use nohup, your job will > continue to run after you log out, as long as t

Re: running program in background

2002-02-27 Thread Hidong Kim
Devon wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On Wednesday 27 February 2002 09:38 pm, Julian Opificius wrote: > > Could somebody please remind me how to run a program (in this case, > > SETI) from the command line such that it will stay running when I close > > the window?

Re: running program in background

2002-02-27 Thread David Talkington
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 David Talkington wrote: >>Also, is there a way I can dynamically alter the amount of processor time a >>given program will take? > >man nice. Sorry, if by "dynamically" you mean an already-running process, then you want 'man renice'. - -d - --

Re: running program in background

2002-02-27 Thread Devon
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Wednesday 27 February 2002 09:38 pm, Julian Opificius wrote: > Could somebody please remind me how to run a program (in this case, > SETI) from the command line such that it will stay running when I close > the window? In the case of seti: cd seti

Re: running program in background

2002-02-27 Thread David Talkington
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Julian Opificius wrote: >Could somebody please remind me how to run a program (in this case, SETI) >from the command line such that it will stay running when I close the window? Tacking & at the end of the command line may do it. >Also, is there a

Re: running program in background

2002-02-27 Thread Hidong Kim
Julian Opificius wrote: > > Could somebody please remind me how to run a program (in this case, SETI) > from the command line such that it will stay running when I close the window? nohup > > Also, is there a way I can dynamically alter the amount of processor time a > given program will tak

running program in background

2002-02-27 Thread Julian Opificius
Could somebody please remind me how to run a program (in this case, SETI) from the command line such that it will stay running when I close the window? Also, is there a way I can dynamically alter the amount of processor time a given program will take? I wish I could remember all this stuff. L