From owner-freebsd-questions Tue Dec 17 18:49:40 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id SAA11417 for questions-outgoing; Tue, 17 Dec 1996 18:49:40 -0800 (PST) Received: from bitbucket.edmweb.com (bitbucket.edmweb.com [204.244.190.9]) by freefall.freebsd.org (8.8.4/8.8.4) with SMTP id SAA11410 for ; Tue, 17 Dec 1996 18:49:36 -0800 (PST) Received: (from steve@localhost) by bitbucket.edmweb.com (8.6.12/8.6.12) id SAA02079; Tue, 17 Dec 1996 18:49:25 -0800 Date: Tue, 17 Dec 1996 18:49:22 -0800 (PST) From: Steve Reid To: Kory Hamzeh cc: freebsd-questions@FreeBSD.ORG Subject: Re: Are 2 drives better than 1? In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk > I'm trying to put a high performance freebsd system together and I have a > question. Would it be faster to have 2 scsi drives, one for root, swap, > and /usr and the other for /home, or 1 drive and put everything one it? All other things being equal, multiple drives are certainly faster than a single drive. With two drives, you can make two accesses (almost?) simultaneously, whereas with one drive you have to wait for the read head to finish accessing the first file before it can move to read the second file. The more drives the better, provided you can split up your directory structure appropriately. You could even use ccd so that the filesystem is automatically and transparently split evenly between the disks, but that kinda puts all your eggs in one basket.