From owner-freebsd-questions@FreeBSD.ORG Tue Jul 29 09:10:03 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C27AA37B401 for ; Tue, 29 Jul 2003 09:10:03 -0700 (PDT) Received: from webserver.get-linux.org (adsl-64-161-78-226.dsl.lsan03.pacbell.net [64.161.78.226]) by mx1.FreeBSD.org (Postfix) with SMTP id F291843F3F for ; Tue, 29 Jul 2003 09:10:02 -0700 (PDT) (envelope-from root@webserver.get-linux.org) Received: (qmail 4887 invoked by uid 0); 29 Jul 2003 16:10:25 -0000 Date: Tue, 29 Jul 2003 09:10:25 -0700 From: Joshua Oreman To: Darryl Hoar Message-ID: <20030729161025.GB4647@webserver> References: <006901c355eb$0b914090$0701a8c0@darryl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <006901c355eb$0b914090$0701a8c0@darryl> User-Agent: Mutt/1.4.1i cc: questions@freebsd.org Subject: Re: Calling all raid experts X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 29 Jul 2003 16:10:04 -0000 On Tue, Jul 29, 2003 at 10:26:19AM -0500 or thereabouts, Darryl Hoar wrote: > Greetings, > I need to build a file server for our marketing departments documents > and images. I want to use Freebsd. Since the data is large, and > backups would be difficult I was wondering if RAID would be a solution. > > I thought that RAID 5 would be the ticket, but after reading up on it, > maybe not. > > Isn't RAID 5 the one where if a disk fails, you plug a new one it and it > regenerates the lost data ? You have two main choices: RAID-1 and RAID-5. If N is the number of disks and M is the size of the smallest disk, then... RAID-1 will give you M amount of space. As long as one disk still works, you can have multiple disks fail at the same time; just replace them and your data's back. Reads execute at N times the speed of single-drive reads. Writes are normal speed. RAID-5 will give you M*(N-1) amount of space. If one disk fails, you can replace it with no loss of data. But if two disks fail at the same time, your data's toast. Reads execute at about N times the speed of single-drive reads. Writes are slower than normal speed. -- Josh > > thanks, > Darryl > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"