[18450] in Athena Bugs
Re: sun4 8.4.15: apparent xcb machine hang
daemon@ATHENA.MIT.EDU (John Hawkinson)
Fri Oct 20 14:26:29 2000
Message-Id: <200010201826.OAA00912@x15-cruise-basselope.mit.edu>
To: Alex Coventry <alex_c@MIT.EDU>
cc: bugs@MIT.EDU, ocschwar@MIT.EDU
In-Reply-To: Your message of "Fri, 20 Oct 2000 13:30:18 EDT."
<200010201730.NAA02136@mary-kay-commandos.mit.edu>
Date: Fri, 20 Oct 2000 14:26:25 -0400
From: John Hawkinson <jhawk@MIT.EDU>
In message <200010201730.NAA02136@mary-kay-commandos.mit.edu>, Alex Coventry wr
ites:
>
>It seems likely that I'm responsible for xcb hanging, as the zephyr
>server was under the impression that I was still logged in after 12.08
>(people sent me zephyrs that ended up the same place your lap goes when
>you stand up.) Could this snippet from my .logout file have caused this
>problem? If so, is there something similar I could do that would be
>less disruptive?
>
># Remove my stuff from /tmp
>find /tmp -user $LOGNAME -type f -print | xargs rm -f
While it might initially seem that removing your session_gate_pid
file might be problematic, in reality, the above command should
do basicly nothing on most Athena workstations since /tmp is a symlink
and you don't specify -follow. e.g.:
[x15-cruise-basselope!jhawk] ~> find /tmp -print
/tmp
[x15-cruise-basselope!jhawk] ~> find /tmp -follow -print
/tmp
/tmp/.pcmcia
/tmp/.pcmcia/pcram
/tmp/.X11-unix
/tmp/.X11-unix/X0
/tmp/.X11-unix/X1
...
--jhawk