From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:45110) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QDuSD-0004Po-LR for qemu-devel@nongnu.org; Sun, 24 Apr 2011 04:14:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QDuSC-00045M-Hu for qemu-devel@nongnu.org; Sun, 24 Apr 2011 04:14:05 -0400 Received: from mail-yi0-f45.google.com ([209.85.218.45]:42912) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QDuSC-00045I-Fb for qemu-devel@nongnu.org; Sun, 24 Apr 2011 04:14:04 -0400 Received: by yib19 with SMTP id 19so532740yib.4 for ; Sun, 24 Apr 2011 01:14:03 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: Date: Sun, 24 Apr 2011 09:14:03 +0100 Message-ID: From: Stefan Hajnoczi Content-Type: text/plain; charset=ISO-8859-1 Subject: Re: [Qemu-devel] What's the difference between commands "qemu", "kvm", and "qemu-kvm"? List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Ryan Wang Cc: qemu-devel@nongnu.org, kvm@vger.kernel.org On Sun, Apr 24, 2011 at 12:38 AM, Ryan Wang wrote: > I read some writings on the qemu, and found some demo examples use the > command qemu, some use kvm, and some mention the qemu-kvm? > > I wonder are there any difference between these commands? Or they just > point to the same executable with different names? /usr/bin/kvm and /usr/bin/qemu-kvm (or /usr/libexec/qemu-kvm) are the binary that is built from qemu-kvm.git. If you want x86 virtualization you should use qemu-kvm. Some distros have called it just "kvm" in the past. /usr/bin/qemu is the binary that is built from qemu.git. If you want to emulate other architectures (e.g. ARM) or run on non-x86 hosts then you should use qemu. http://blog.vmsplice.net/2011/03/should-i-use-qemu-or-kvm.html Stefan