From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1Bs769-0000p9-87 for qemu-devel@nongnu.org; Tue, 03 Aug 2004 17:45:29 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1Bs767-0000od-Lx for qemu-devel@nongnu.org; Tue, 03 Aug 2004 17:45:28 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1Bs767-0000oa-Ii for qemu-devel@nongnu.org; Tue, 03 Aug 2004 17:45:27 -0400 Received: from [193.252.22.22] (helo=mwinf0902.wanadoo.fr) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Bs72I-0007ws-39 for qemu-devel@nongnu.org; Tue, 03 Aug 2004 17:41:30 -0400 Received: from bellard.org (ATuileries-112-1-1-77.w80-11.abo.wanadoo.fr [80.11.167.77]) by mwinf0902.wanadoo.fr (SMTP Server) with ESMTP id 5840D1800560 for ; Tue, 3 Aug 2004 23:41:29 +0200 (CEST) Message-ID: <4110069A.5080501@bellard.org> Date: Tue, 03 Aug 2004 23:41:46 +0200 From: Fabrice Bellard MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] new block layer Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Hi, I commited the new disk image layer of QEMU which adds the following features: - new disk image formats are easier to support - new 'qcow' image format which supports: * empty sector compression even if the filesystem does not support holes (useful for Windows users) * zlib based compression to directly use compressed disk images (note: the written sectors are not compressed again, you must use qemu-img to compress a disk image). * AES based encryption - native VMware 3 and 4 read-only disk image support (untested - I need such images to test it). - new 'all-in-one' tool 'qemu-img' to create, convert, compress and encrypt disk images with all the supported formats. Note: the qcow disk image format may change without notice until the next release. Fabrice.