From owner-freebsd-virtualization@freebsd.org Tue Sep 6 15:49:13 2016 Return-Path: Delivered-To: freebsd-virtualization@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 D7224BC6437 for ; Tue, 6 Sep 2016 15:49:13 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from alto.onthenet.com.au (alto.OntheNet.com.au [203.13.68.12]) by mx1.freebsd.org (Postfix) with ESMTP id 9AF021F9 for ; Tue, 6 Sep 2016 15:49:13 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from iredmail.onthenet.com.au (iredmail.onthenet.com.au [203.13.68.150]) by alto.onthenet.com.au (Postfix) with ESMTPS id EA820206A8DA for ; Wed, 7 Sep 2016 01:48:54 +1000 (AEST) Received: from localhost (iredmail.onthenet.com.au [127.0.0.1]) by iredmail.onthenet.com.au (Postfix) with ESMTP id E5DB8280A24 for ; Wed, 7 Sep 2016 01:48:54 +1000 (AEST) X-Amavis-Modified: Mail body modified (using disclaimer) - iredmail.onthenet.com.au Received: from iredmail.onthenet.com.au ([127.0.0.1]) by localhost (iredmail.onthenet.com.au [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id medsblpGQi1C for ; Wed, 7 Sep 2016 01:48:54 +1000 (AEST) Received: from Peters-MacBook-Pro-2.local (unknown [166.177.251.103]) by iredmail.onthenet.com.au (Postfix) with ESMTPSA id B675B2808FE; Wed, 7 Sep 2016 01:48:49 +1000 (AEST) Subject: Re: bhyve and dynamic allocation To: Grzegorz Junka References: <862088a4-6934-4a03-cc1c-4b27154b9bb2@gjunka.com> Cc: freebsd-virtualization@freebsd.org From: Peter Grehan Message-ID: <0553cd28-02da-ea34-19fc-340f8bfa6e23@freebsd.org> Date: Tue, 6 Sep 2016 08:48:52 -0700 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:45.0) Gecko/20100101 Thunderbird/45.2.0 MIME-Version: 1.0 In-Reply-To: <862088a4-6934-4a03-cc1c-4b27154b9bb2@gjunka.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-CMAE-Score: 0 X-CMAE-Analysis: v=2.2 cv=YvxNfMQX c=1 sm=1 tr=0 a=A6CF0fG5TOl4vs6YHvqXgw==:117 a=BO2BgHjeJwxp7amrmLVFJA==:17 a=N659UExz7-8A:10 a=GW1xBdLrtEIA:10 a=CwEOYVyHHtQHwa95arYA:9 a=pILNOxqGKmIA:10 wl=host:3 X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2016 15:49:13 -0000 Hi Grzegorz, > Is it possible / supported / planned to run a client OS without > specifying RAM/HDD up-front but with dynamically allocated resources? The amount of RAM specified is just the maximum allowed, and by default is demand-paged without any pre-allocation. For disk, the same effect can be achieved by using a sparse volume, e.g. 'truncate -s ' on UFS. later, Peter.