From owner-freebsd-hackers Sat Nov 2 06:40:22 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id GAA27424 for hackers-outgoing; Sat, 2 Nov 1996 06:40:22 -0800 (PST) Received: from squirrel.tgsoft.com (sdts3-74.znet.com [207.167.65.74]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id GAA27400 for ; Sat, 2 Nov 1996 06:40:14 -0800 (PST) Received: (from thompson@localhost) by squirrel.tgsoft.com (8.7.5/8.6.12) id GAA01266; Sat, 2 Nov 1996 06:37:01 -0800 (PST) Date: Sat, 2 Nov 1996 06:37:01 -0800 (PST) Message-Id: <199611021437.GAA01266@squirrel.tgsoft.com> From: mark thompson To: hackers@freefall.freebsd.org In-reply-to: message from Thomas David Rivers on Fri, 1 Nov 1996 20:56:35 -0500 (EST) Subject: Re: Another data point in the daily panics... Sender: owner-hackers@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk From: Thomas David Rivers Date: Fri, 1 Nov 1996 20:56:35 -0500 (EST) Everyone - As an example of something that crashes 2.1.5 (fairly quickly, I may add) and will not likely be determined by 'crashme'. I offer the following shell script. I don't think it has anything to do with my particular problem, since the panic isn't for the same reason. I just wanted to show it as an example of a similar type of problem that crashme would not diagnose. If anyone has access to a LINUX box - I'd be interested in hearing what happens if you perform the same test there... - Dave Rivers - ---------------------- cut here ---------------- #!/bin/sh mkdir loser while true do touch loser/abc mv loser/abc loser/def done ---- Odd. My 2.1.5 machine crashes (once a month or so) while running /etc/weekly. I assume this shellscript kills the machine because of name collisions in the renames? -mark