From owner-freebsd-questions@FreeBSD.ORG Sun Aug 31 16:19:12 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31601106567E for ; Sun, 31 Aug 2008 16:19:12 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (wojtek.tensor.gdynia.pl [IPv6:2001:4070:101:2::1]) by mx1.freebsd.org (Postfix) with ESMTP id 19EAB8FC19 for ; Sun, 31 Aug 2008 16:19:10 +0000 (UTC) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from wojtek.tensor.gdynia.pl (localhost [IPv6:::1]) by wojtek.tensor.gdynia.pl (8.14.2/8.14.2) with ESMTP id m7VGJ0Ji019331; Sun, 31 Aug 2008 18:19:00 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Received: from localhost (wojtek@localhost) by wojtek.tensor.gdynia.pl (8.14.2/8.14.2/Submit) with ESMTP id m7VGJ04a019328; Sun, 31 Aug 2008 18:19:00 +0200 (CEST) (envelope-from wojtek@wojtek.tensor.gdynia.pl) Date: Sun, 31 Aug 2008 18:19:00 +0200 (CEST) From: Wojciech Puchar To: Sasa Stupar In-Reply-To: <48BABC77.6010509@stupar.homelinux.net> Message-ID: <20080831181442.D19288@wojtek.tensor.gdynia.pl> References: <48BABC77.6010509@stupar.homelinux.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-questions@freebsd.org Subject: Re: adding new disk to the system X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 31 Aug 2008 16:19:12 -0000 > Hi! > > I have a working FBSD 7.0 and two disks in RAID-1 (gmirror). Now I want > to add another disk which will be used as file exchange disk so I don't > need it in raid-1 (not sensitive data). > Do I add new drive with standard procedure and just create a new mount > point e.g. /newdrive or do I need to do something else? what is "standard procedure" of adding drive to the system? i never heard about this unless you mean standard procedure of installing disk in PC computers - like putting inside, mounting with screws, pluggin power and signal cables etc. ;) do whatever you need and is best for you. it's unix, not windoze. if it's for file exchange, then it will be often connected and disconnected, so make some subdir, add /dev/drive /subdir ufs rw,noatime,noauto 0 0 and mount it and unmount manually when needed. note that if you need transfering data to nearby computers, fast (or gigabit) ethernet is much better idea than constantly swapping drives.