From owner-freebsd-bugs Sat Dec 7 14:26:15 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id OAA12939 for bugs-outgoing; Sat, 7 Dec 1996 14:26:15 -0800 (PST) Received: from irz301.inf.tu-dresden.de (irz301.inf.tu-dresden.de [141.76.1.11]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id OAA12934 for ; Sat, 7 Dec 1996 14:26:12 -0800 (PST) Received: from sax.sax.de (sax.sax.de [193.175.26.33]) by irz301.inf.tu-dresden.de (8.6.12/8.6.12-s1) with ESMTP id XAA20058; Sat, 7 Dec 1996 23:24:44 +0100 Received: (from uucp@localhost) by sax.sax.de (8.6.12/8.6.12-s1) with UUCP id XAA25162; Sat, 7 Dec 1996 23:24:43 +0100 Received: (from j@localhost) by uriah.heep.sax.de (8.8.2/8.6.9) id XAA23325; Sat, 7 Dec 1996 23:10:42 +0100 (MET) From: J Wunsch Message-Id: <199612072210.XAA23325@uriah.heep.sax.de> Subject: Re: Unable to make new root filesystem on /dev/rwd01! - Command returned status 36 To: kewleoh@hotmail.com (Michael Chapman) Date: Sat, 7 Dec 1996 23:10:42 +0100 (MET) Cc: bugs@freebsd.org Reply-To: joerg_wunsch@uriah.heep.sax.de (Joerg Wunsch) In-Reply-To: <32A73C4E.12BF@hotmail.com> from Michael Chapman at "Dec 5, 96 04:19:10 pm" X-Phone: +49-351-2012 669 X-PGP-Fingerprint: DC 47 E6 E4 FF A6 E9 8F 93 21 E0 7D F9 12 D6 4E X-Mailer: ELM [version 2.4ME+ PL17 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-bugs@freebsd.org X-Loop: FreeBSD.org Precedence: bulk As Michael Chapman wrote: > Unable to make new root filesystem on /dev/rwd01! > Command returned status 36 > > What does it mean, and what can I do to correct it? This is from the ancient mkfs.c (which actually violates the BSD style guide... exit points should not be `numbered'). /* * write a block to the file system */ wtfs(bno, size, bf) daddr_t bno; int size; char *bf; { ... n = write(fso, bf, size); if (n != size) { printf("write error: %ld\n", bno); perror("wtfs"); exit(36); } } So it looks the `write' system call fails for some reason. I guess it's an unrecovered hardware write error. Maybe the second screen (Alt-F2) will tell you more. -- cheers, J"org joerg_wunsch@uriah.heep.sax.de -- http://www.sax.de/~joerg/ -- NIC: JW11-RIPE Never trust an operating system you don't have sources for. ;-)