From owner-freebsd-bugs Mon Mar 31 20:25:53 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id UAA07797 for bugs-outgoing; Mon, 31 Mar 1997 20:25:53 -0800 (PST) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by freefall.freebsd.org (8.8.5/8.8.5) with ESMTP id UAA07791 for ; Mon, 31 Mar 1997 20:25:49 -0800 (PST) Received: (from bde@localhost) by godzilla.zeta.org.au (8.8.5/8.6.9) id OAA04493; Tue, 1 Apr 1997 14:23:10 +1000 Date: Tue, 1 Apr 1997 14:23:10 +1000 From: Bruce Evans Message-Id: <199704010423.OAA04493@godzilla.zeta.org.au> To: dbx@atmos.washington.edu, freebsd-bugs@freefall.freebsd.org Subject: Re: kern/3156: Floppy disk copy freezes Sender: owner-bugs@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > Also, you should never, _never_ use the block device for raw file > data. > > When I use the character device for the floppy copy, everything works > smoothly. Maybe my setup is the prime example of why one "should never, > _never_ use the block device for raw file data." :( Did you use the same block size (2K) that is used for the block device? dd's default block size of 512 bytes is too small for almost everything except floppies (it is adequate for floppies, at least on machines at least as fast as a 486/33, since floppies are so slow). The block device's fixed block size of 2K is also too small for almost everything. Bruce