From owner-freebsd-jail@freebsd.org Fri Jun 9 09:23:11 2017 Return-Path: Delivered-To: freebsd-jail@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CD647BF063D for ; Fri, 9 Jun 2017 09:23:11 +0000 (UTC) (envelope-from killing@multiplay.co.uk) Received: from mail-wr0-x234.google.com (mail-wr0-x234.google.com [IPv6:2a00:1450:400c:c0c::234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 846AE84DFC for ; Fri, 9 Jun 2017 09:23:11 +0000 (UTC) (envelope-from killing@multiplay.co.uk) Received: by mail-wr0-x234.google.com with SMTP id q97so27910357wrb.2 for ; Fri, 09 Jun 2017 02:23:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=multiplay-co-uk.20150623.gappssmtp.com; s=20150623; h=subject:to:references:from:message-id:date:user-agent:mime-version :in-reply-to:content-language; bh=zMWnq0AEqRfNNJ8ODuy3OFjljZXJeylXCdtQb4ecj7s=; b=e4Zw/2CTeCdA8H/0fLfFVOfznGsDyB17g1oz+dRfblVMEykQ49kVKAgi54QmdpC6im c6bnEpFhVooGisAn0+gqUkDbZEh/vwXxLaEuzFK6PTtTsI8S0n/Ab3kMyV9UcCK1/QCO kNXPhrvP5WaYQUxerOoRgae4NdO+iCHtoeuunEtdW2HsUBDtZ2oNyPSrSJyB7coA+/9K +NN5v3wCGQS7V3rERM/cjTXXlLI4hv4mV1ggU5KeTfpJmIOB5jNA+VMljKbdAUj0FVAG hr/BDM1WixVHE/YldRus8ZtLLIV4E4VECYbhsNV5n+2HhZ4GLD9Os/Bh101pIZd+ly8b XtXQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language; bh=zMWnq0AEqRfNNJ8ODuy3OFjljZXJeylXCdtQb4ecj7s=; b=JnNo+1z5ZwT7kn+fXI9g66pkx5o9dhLa8vhXGSVz/NKaG6orl3iekHQGxjCssWuGtM GDJWk+rjEbi/tYm8S7QO86reoHXt4kawtmtrgyXiGa7hPkHUost9ipTvqGuoOLBVIHSJ G6/Of3wgNeZ/ki15kAJEK6V+AMcA8s1oUJZ/N3Qefc4KJXWHMilxkSWRov9YCtOL7pVz BjKP/La7hcgpIeXZnroZBWI3+t1eQ8fyqtFbpPFTYhd3cM30JwJXS2AP7gydb1BWgGK/ +odCvaiiOaKE7TjbFp5YE6fdTYUmmYM4/CtbnT/pfMDOE2cZrkhbGdd0Q+i+0Zo43sXj y23Q== X-Gm-Message-State: AODbwcClKugKRHmlT+sQOt+q5RmsaBoRWX5i3wDMCbYslKPQ7gFmvhij CA7+exeSyY7FR3UTCUdF1Q== X-Received: by 10.223.163.138 with SMTP id l10mr32567141wrb.35.1497000189523; Fri, 09 Jun 2017 02:23:09 -0700 (PDT) Received: from [10.10.1.111] ([185.97.61.15]) by smtp.gmail.com with ESMTPSA id t27sm546088wra.35.2017.06.09.02.23.08 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 09 Jun 2017 02:23:08 -0700 (PDT) Subject: Re: Passing a limited amount of disk devices to jails To: freebsd-jail@freebsd.org References: From: Steven Hartland Message-ID: <109608ec-2fc2-1f04-3dcc-0056f243639c@multiplay.co.uk> Date: Fri, 9 Jun 2017 10:23:08 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.1.1 MIME-Version: 1.0 In-Reply-To: Content-Language: en-GB Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-jail@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion about FreeBSD jail\(8\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jun 2017 09:23:11 -0000 You could do effectively this by using dedicated zfs filesystems per jail On 09/06/2017 09:45, Willem Jan Withagen wrote: > Hi, > > I'm writting/building a test environment for my ceph cluster, and I'm > using jails for that.... > > Now one of the things I'd be interested in, is to pass a few raw disks > to each of the jails. > So jail ceph-1 gets /dev/ada1 and /dev/ada2 (and partitions), ceph-2 > gets /dev/ada2 and /dev/ada3. > > AND I would need gpart to be able to work on them! > > Would this be possible to do with the current jail implementation on > 12-CURRENT? > > Thanx, > --WjW > > _______________________________________________ > freebsd-jail@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-jail > To unsubscribe, send any mail to "freebsd-jail-unsubscribe@freebsd.org"