From owner-freebsd-bugs Fri Sep 15 07:25:13 1995 Return-Path: owner-bugs Received: (from root@localhost) by freefall.freebsd.org (8.6.12/8.6.6) id HAA06110 for bugs-outgoing; Fri, 15 Sep 1995 07:25:13 -0700 Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.34]) by freefall.freebsd.org (8.6.12/8.6.6) with ESMTP id HAA06066 for ; Fri, 15 Sep 1995 07:24:58 -0700 Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.9/8.6.9) id AAA13496; Sat, 16 Sep 1995 00:11:37 +1000 Date: Sat, 16 Sep 1995 00:11:37 +1000 From: Bruce Evans Message-Id: <199509151411.AAA13496@godzilla.zeta.org.au> To: Marcus.John@wiesbaden.netsurf.de, bde@zeta.org.au Subject: Re: Funny fdisk? Cc: freebsd-bugs@freebsd.org Sender: owner-bugs@freebsd.org Precedence: bulk The problem seems to be that /dev/wd0 after booting from the network is actually /dev/wd0c. Check you device numbers. /dev/wd0 should be (0, 65538) while /dev/wd0c is (0, 2). The high bits in device numbers are not handled correctly by tar (only 18 bits work) or cpio with the default format (only 16 bits work). High bits are silently ignored in 2.0.5 (-current prints a warning and skips the file). New cpio formats work. Bruce