From owner-freebsd-hackers@FreeBSD.ORG Thu Aug 21 12:04:59 2003 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1808316A4BF for ; Thu, 21 Aug 2003 12:04:59 -0700 (PDT) Received: from meketrex.pix.net (meketrex.pix.net [192.111.45.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id A781343FE0 for ; Thu, 21 Aug 2003 12:04:53 -0700 (PDT) (envelope-from lidl@meketrex.pix.net) Received: (from lidl@localhost) by meketrex.pix.net (8.11.6/8.11.6) id h7LJ4mi15930 for freebsd-hackers@freebsd.org; Thu, 21 Aug 2003 15:04:48 -0400 (EDT) Date: Thu, 21 Aug 2003 15:04:48 -0400 From: "Kurt J. Lidl" To: freebsd-hackers@freebsd.org Message-ID: <20030821150448.A15808@pix.net> References: <20030821183421.GN85538@numachi.com> <20030821183944.GA87316@ussenterprise.ufp.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030821183944.GA87316@ussenterprise.ufp.org>; from bicknell@ufp.org on Thu, Aug 21, 2003 at 02:39:44PM -0400 Subject: Re: dd to floppies broken? X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Aug 2003 19:04:59 -0000 On Thu, Aug 21, 2003 at 02:39:44PM -0400, Leo Bicknell wrote: > fd0 is block buffered. Try: > > dd bs=18k of=/dev/rfd0c if=memtest86-2.9/precomp.bin > > I forget why, but 18k maximizes performance on (some?) floppies. Because a 1440 kbyte floppy has 80 tracks, and it's double sided. Thus, 9kbyte per side, both sides get done at once == 18k per track. So, you schedule a full track of data to be written at one go, the head seeks, and you start the next transfer to the device. -Kurt