From owner-freebsd-questions@FreeBSD.ORG Sun May 17 22:50:17 2015 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BD687A4 for ; Sun, 17 May 2015 22:50:17 +0000 (UTC) Received: from cdptpa-oedge-vip.email.rr.com (cdptpa-outbound-snat.email.rr.com [107.14.166.232]) by mx1.freebsd.org (Postfix) with ESMTP id 105FD188E for ; Sun, 17 May 2015 22:50:16 +0000 (UTC) Received: from [75.187.32.8] ([75.187.32.8:35114] helo=raspberrypi.bildanet.com) by cdptpa-oedge03 (envelope-from ) (ecelerity 3.5.0.35861 r(Momo-dev:tip)) with ESMTP id E4/95-00632-B6919555; Sun, 17 May 2015 22:42:52 +0000 Received: from [192.168.1.53] (helo=baho-utot.bildanet.com) by raspberrypi.bildanet.com with esmtp (Exim 4.84) (envelope-from ) id 1Yu7Gl-00075U-HK for freebsd-questions@freebsd.org; Sun, 17 May 2015 18:42:51 -0400 Message-ID: <5558E12C.1050106@columbus.rr.com> Date: Sun, 17 May 2015 14:42:52 -0400 From: Baho Utot User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: freebsd-questions@freebsd.org Subject: ZFS raidz X-RR-Connecting-IP: 107.14.168.142:25 X-Cloudmark-Score: 0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.20 X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 May 2015 22:50:17 -0000 I have created a ZFS raidz file system. Created like this: The partitions are all the same and the drives are three identical drives. # zpool create storage raidz /dev/ada1p1 /dev/ada2p1 /dev/ada3p1 # zpool status pool: storage state: ONLINE scan: none requested config: NAME STATE READ WRITE CKSUM storage ONLINE 0 0 0 raidz1-0 ONLINE 0 0 0 ada1p1 ONLINE 0 0 0 ada2p1 ONLINE 0 0 0 ada3p1 ONLINE 0 0 0 The filesystems created |# zfs create storage/home| |||# zfs create storage/ports| || |||# zfs set compression=gzip storage/home| |||# zfs set compression=gzip storage/ports| || |||# zfs set mountpoint=/usr/home storage/home| |||# zfs set mountpoint=/usr/ports storage/ports| Can addtional drive(s) be added to it? What are the downfalls if I add drives?