From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JLoUH-0004aT-2X for qemu-devel@nongnu.org; Sun, 03 Feb 2008 18:43:01 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JLoUF-0004Xu-7d for qemu-devel@nongnu.org; Sun, 03 Feb 2008 18:43:00 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JLoUE-0004Xf-Uq for qemu-devel@nongnu.org; Sun, 03 Feb 2008 18:42:59 -0500 Received: from bld-mail10.adl2.internode.on.net ([203.16.214.74] helo=mail.internode.on.net) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JLoUE-0003RQ-4y for qemu-devel@nongnu.org; Sun, 03 Feb 2008 18:42:58 -0500 Received: from [192.168.1.4] (unverified [150.101.170.85]) by mail.internode.on.net (SurgeMail 3.8f2) with ESMTP id 7266978-1927428 for ; Mon, 04 Feb 2008 10:12:50 +1030 (CDT) Message-ID: <47A65137.8070608@adsl.on.net> Date: Mon, 04 Feb 2008 08:41:43 +0900 From: Dean Payne MIME-Version: 1.0 Subject: Re: [Qemu-devel] qemu-img convert does not handle -O correctly References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit 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 Andreas Färber wrote: > Hello, > > When running `qemu-img convert haikuware.vmdk -O qcow2 > haikuware.qcow2` on OSX, it complains it cannot open '-O'. > > According to `qemu-img convert --help` my syntax is correct. > > Andreas > > I had similar problems and needed to change the order of parameters on the command line. For your statement try... qemu-img convert -f vmdk -O qcow2 haikuware.vmdk haikuware.qcow2 ... as -f and -O come first before filenames