setting timeout/autologout in tcsh

2007-12-25 9:34:00

My thanks to the following people:

Sean Ward <sdward@uswest.com>

Igor Schein <igor@andrew.air-boston.com>

Charlie Giannetto <giannett@lij.edu>

Paul Burry <pburry@crosskeys.com>

Frank Cusack <fcusack@voicenet.com>

Christophe Diarra <diarra@ipno.in2p3.fr>

Thomas Anders ,anders@hmi.de>

Brian Mullen <mullen@hurricane.net2.nlu.edu>

Stefan Voss <s.voss@terradata.de>

Karl Vogel <vogelke@c17mis.region2.wpafb.af.mil>

Original question:

I'm trying to set it so that all sessions that

are idle for more than 15 minutes get logged out

automatically.

I know with ksh, it's

   TMOUT=900; export TMOUT

I seem to be having some trouble with tcsh, where I

believe it's

   setenv autologout 15

It doesn't seem to work for me for tcsh... can

anyone point me in the right direction?

Summary/Solution:

As everyone pointed out, autologout is a shell

variable and not an environment variable, and

therefore, it is set as follows:

   set autologout=15

Or better yet, try:

   set autologout=(300 30)

   # auto-lock after 30 min, auto-logout after 300

minutes (5 hours)

There was also mention not to bother trying this at

the shell level as it can be disabled too easily. Use

something like untamo, which one can get from

        ftp.cc.purdue.edu.

I wanted to also mention that I did get idled (Idle

"Demon") which is also monitors and manages idle

processes. I found it somewhere on the net, if

anyone is interested in the ftp site, let me know,

and I'm sure I can dig it up.

Thanks again!

   Ju

   julienlim@rocketmail.com

_________________________________________________________

DO YOU YAHOO!?

Get your free @yahoo.com address at http://mail.yahoo.com

Comments

Got something to say?

You must be logged in to post a comment.