From owner-freebsd-current Fri Jan 10 03:57:50 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id DAA07578 for current-outgoing; Fri, 10 Jan 1997 03:57:50 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id DAA07572 for ; Fri, 10 Jan 1997 03:57:47 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.3/8.6.9) id WAA27192; Fri, 10 Jan 1997 22:53:40 +1100 Date: Fri, 10 Jan 1997 22:53:40 +1100 From: Bruce Evans Message-Id: <199701101153.WAA27192@godzilla.zeta.org.au> To: j@uriah.heep.sax.de, kingram@ipro.com Subject: Re: Adding Hard Drives - Prepping Cc: FreeBSD-current@FreeBSD.ORG Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >> Where do I begin? Disklabel gets me: >> >> #disklabel -r -w wd2 auto >> disklabel: /dev/rwd2c: Undefined error: 0 > >That should not happen. :) This always happens if /dev/rwd2c (the whole of BSD compatibility slice) is smaller than 8K. read() returns a short count, and disklabel doesn't understand this non-error. Tiny slices should not be created except to debug problems like this. Bruce