From owner-freebsd-questions Fri Jun 14 08:05:18 1996 Return-Path: owner-questions Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id IAA21290 for questions-outgoing; Fri, 14 Jun 1996 08:05:18 -0700 (PDT) Received: from gatekeeper.fsl.noaa.gov (gatekeeper.fsl.noaa.gov [137.75.131.181]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id IAA21285 for ; Fri, 14 Jun 1996 08:05:14 -0700 (PDT) Received: from emu.fsl.noaa.gov (kelly@emu.fsl.noaa.gov [137.75.60.32]) by gatekeeper.fsl.noaa.gov (8.7.5/8.7.3) with ESMTP id PAA27006; Fri, 14 Jun 1996 15:05:13 GMT Message-Id: <199606141505.PAA27006@gatekeeper.fsl.noaa.gov> Received: by emu.fsl.noaa.gov (1.40.112.3/16.2) id AA170494712; Fri, 14 Jun 1996 09:05:12 -0600 Date: Fri, 14 Jun 1996 09:05:12 -0600 From: Sean Kelly To: kline@tera.com Cc: questions@freebsd.org In-Reply-To: <199606132221.PAA06142@athena.tera.com> (message from Gary Kline on Thu, 13 Jun 1996 15:21:44 -0700 (PDT)) Subject: Re: still hanging up... Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk >>>>> "Gary" == Gary Kline writes: Gary> No, not using Netscape. Usually typing in Gary> mail/elm on the remote site, my workstation, when things Gary> lock up. Not always, but often. Maybe some kind of IRQ conflict? Is your system on a network? Can you telnet/rlogin and poke around? Alternatively, you could plug in a terminal or a spare computer running some term I/O software to one of your serial ports and log in there. Gary> I know zip about tcl.... am a real newbie re Gary> X-hacking. That's a good idea: a simple X-app that would do Gary> a shutdown. Point-and-click shutdown! ha... Yep! ------------------------------------------------------------------------ #!/usr/local/bin/wish foreach action {Shutdown Reboot Halt} { pack [button .[string tolower $action] -text $action \ -command "do_it $action"] -fill x } proc do_it {action} { switch -exact -- $action { Shutdown { set arg "" } Reboot { set arg "-r" } Halt { set arg "-h" } } eval exec shutdown $arg now "Keyboard's stuck again!" } ------------------------------------------------------------------------ Gary> Anybody think it could be that my /usr fs is nearing Gary> its over-full lim? qv: [deletia] Looks like plenty of space to me. I'm out of ideas. Good luck! -- Sean Kelly NOAA Forecast Systems Laboratory kelly@fsl.noaa.gov Boulder Colorado USA http://www-sdd.fsl.noaa.gov/~kelly/