From mboxrd@z Thu Jan 1 00:00:00 1970 From: Pekka Enberg Subject: [ANNOUNCE] Native Linux KVM tool v2 Date: Wed, 15 Jun 2011 18:53:34 +0300 Message-ID: <1308153214.7566.6.camel@jaguar> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Avi Kivity , Andrew Morton , Linus Torvalds , Ingo Molnar , Prasad Joshi , Sasha Levin , Cyrill Gorcunov , Asias He To: linux-kernel@vger.kernel.org, kvm@vger.kernel.org Return-path: Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org Hi all, We=E2=80=99re proud to announce the second version of the Native Linux = KVM tool! We=E2=80=99re now officially aiming for merging to mainline in 3.1. Highlights: - Experimental GUI support using SDL and VNC - SMP support. tools/kvm/ now has a highly scalable, largely lockless d= river interface and the individual drivers are using finegrained locks. - TAP-based virtio networking - Fast QCOW2 image read-write support beating Qemu in fio benchmarks. S= ee the following URL for test result details: https://gist.github.com/102688= 8 - Virtio-9p support for host filesystem access in guests - Virtio Random Number Generator - Host block devices as in-memory copy-on-write guest images on 64-bit = hosts 1. To try out the tool, clone the git repository: git clone git://github.com/penberg/linux-kvm.git or alternatively, if you already have a kernel source tree: git remote add kvm-tool git://github.com/penberg/linux-kvm.git git remote update git checkout -b kvm-tool/master kvm-tool 2. Compile the tool: cd tools/kvm && make 3. Download a raw userspace image: Minimal: wget http://wiki.qemu.org/download/linux-0.2.img.bz2 && bunzip2 linux= -0.2.img.bz2 Debian Squeeze QCOW2 image: wget http://people.debian.org/~aurel32/qemu/i386/debian_squeeze_i386_= standard.qcow2 4. Build a kernel with the following options: CONFIG_VIRTIO_BLK=3Dy CONFIG_VIRTIO_NET=3Dy CONFIG_VIRTIO_CONSOLE=3Dy CONFIG_SERIAL_8250_CONSOLE=3Dy CONFIG_HW_RANDOM_VIRTIO=3Dy CONFIG_FB_VESA=3Dy Note: also make sure you have CONFIG_EXT2_FS or CONFIG_EXT4_FS if you u= se the above images. 5. And finally, launch the hypervisor: ./kvm run -d linux-0.2.img or ./kvm run -d debian_squeeze_i386_standard.qcow2 or sudo ./kvm run -d linux-0.2.img -n virtio This release was brought to you by the following people: Sasha Levin Pekka Enberg Asias He Prasad Joshi Cyrill Gorcunov Ingo Molnar John Floren Amos Kong Giuseppe Calderaro Amerigo Wang Paul Bolle David Ahern Most of us developers are hanging out on #pvm channel at irc.freenode.n= et if you want to drop by for questions, comments, and bug reports. Pekka