From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=40387 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pb91L-00071O-N7 for qemu-devel@nongnu.org; Fri, 07 Jan 2011 04:54:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pb91J-0002m1-1t for qemu-devel@nongnu.org; Fri, 07 Jan 2011 04:54:07 -0500 Received: from mail-wy0-f173.google.com ([74.125.82.173]:52297) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pb91I-0002lY-Sp for qemu-devel@nongnu.org; Fri, 07 Jan 2011 04:54:04 -0500 Received: by wyg36 with SMTP id 36so18918110wyg.4 for ; Fri, 07 Jan 2011 01:54:03 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: Date: Fri, 7 Jan 2011 09:54:03 +0000 Message-ID: Subject: Re: [Qemu-devel] snapshots From: Stefan Hajnoczi Content-Type: text/plain; charset=ISO-8859-1 List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: chandra shekar Cc: qemu-devel@nongnu.org On Fri, Jan 7, 2011 at 4:37 AM, chandra shekar wrote: > hi everyone i have got snapshot out of the image file now i would like to > analyze the snapshot > like opening it or identifying the fields in it can anyone suggest any > softwares which i can use > to open the snapshot analyze it,thanks I'm not sure what format your snapshot data is in. What exactly did you do? qemu-img and qemu-io can be used to manipulate image data. Check what format the data is in: qemu-img info Read first sector (for debugging): qemu-io -c 'read -v 0 512' Convert to raw image (suitable for dd, fdisk, hex editor, etc): qemu-img convert raw-data.img If you want to inspect savevm data (saved device state) then you're on your own. AFAIK there isn't an external tool to dissect it. It would be quickest to add some code into QEMU to dump out the info you need. Stefan