From owner-freebsd-emulation@FreeBSD.ORG Thu Jun 5 21:55:58 2008 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 465FC106567E for ; Thu, 5 Jun 2008 21:55:58 +0000 (UTC) (envelope-from nox@saturn.kn-bremen.de) Received: from gwyn.kn-bremen.de (gwyn.kn-bremen.de [212.63.36.242]) by mx1.freebsd.org (Postfix) with ESMTP id 04AB08FC25 for ; Thu, 5 Jun 2008 21:55:57 +0000 (UTC) (envelope-from nox@saturn.kn-bremen.de) Received: by gwyn.kn-bremen.de (Postfix, from userid 10) id 8F7F32B5E85; Thu, 5 Jun 2008 23:55:56 +0200 (CEST) Received: from saturn.kn-bremen.de (nox@localhost [127.0.0.1]) by saturn.kn-bremen.de (8.14.2/8.13.8) with ESMTP id m55LqSM7089335; Thu, 5 Jun 2008 23:52:28 +0200 (CEST) (envelope-from nox@saturn.kn-bremen.de) Received: (from nox@localhost) by saturn.kn-bremen.de (8.14.2/8.13.6/Submit) id m55LqRlE089334; Thu, 5 Jun 2008 23:52:27 +0200 (CEST) (envelope-from nox) Date: Thu, 5 Jun 2008 23:52:27 +0200 (CEST) From: Juergen Lock Message-Id: <200806052152.m55LqRlE089334@saturn.kn-bremen.de> To: eculp@encontacto.net X-Newsgroups: local.list.freebsd.emulation In-Reply-To: <20080604122407.188217sdanmlq37k@intranet.encontacto.net> Organization: home Cc: freebsd-emulation@freebsd.org Subject: Re: qemu: could not open disk image /tmp/c.img that was created by qemu X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Jun 2008 21:55:58 -0000 In article <20080604122407.188217sdanmlq37k@intranet.encontacto.net> you write: >I'm running amd64 current-8 and am up to date on most everything. > >I'm trying to give qemu a try and am using the quick start on the qemu >site, step by step and got all the way to the second step ;) > ># qemu-img create -f qcow c.img 3G >Formatting 'c.img', fmt=qcow, size=3145728 kB > ># qemu -cdrom /dev/acd0 -hda /tmp/c.img -m 256 -boot d >qemu: could not open disk image /tmp/c.img > >acd0 was an unmounted windowsXP installation CD. > >Should the procedure be changed for FreeBSD, I obviously assumed not? Hmm, seems the CVE 2008-0928 security patch broke qcow, or at least new qcow images. qcow is also deprecated tho, you can just use qcow2 instead which still works. Or use raw images which should still be faster, only they are sparse files which some backup software like bsdtar doesn't know how to deal with properly. (dump still works tho, as should gtar or star when passed appropriate flags.) I just checked, seems that patch also has been backed out from qemu svn but no replacement committed since. Hmm... Juergen