From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36933) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VLeNI-00083x-Up for qemu-devel@nongnu.org; Mon, 16 Sep 2013 15:22:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VLeNE-0008QR-D0 for qemu-devel@nongnu.org; Mon, 16 Sep 2013 15:22:20 -0400 Received: from mail-bk0-f53.google.com ([209.85.214.53]:38887) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VLeNE-0008MR-64 for qemu-devel@nongnu.org; Mon, 16 Sep 2013 15:22:16 -0400 Received: by mail-bk0-f53.google.com with SMTP id d7so1707343bkh.40 for ; Mon, 16 Sep 2013 12:22:14 -0700 (PDT) MIME-Version: 1.0 Date: Mon, 16 Sep 2013 22:22:14 +0300 Message-ID: From: Pekka Enberg Content-Type: text/plain; charset=ISO-8859-1 Subject: [Qemu-devel] [ANNOUNCE] OSv, an new operating system for the cloud, v0.01 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kvm@vger.kernel.org, qemu-devel@nongnu.org Cc: Dor Laor , Avi Kivity Hello, We're proud to announce release 0.01 of OSv, a new operating system for running applications on virtual machines. OSv is free software, released under the BSD license, and you can find it in https://github.com/cloudius-systems/osv and http://www.osv.io. To build and run OSv under KVM/QEMU, first grab the latest source code from Github: git clone git@github.com:cloudius-systems/osv.git Then install prerequisite packages: On Fedora: yum install ant autoconf automake boost-static gcc-c++ genromfs \ libvirt libtool zfs-fuse flex bison On Debian: apt-get install libboost-all-dev genromfs zfs-fuse autoconf Make sure the zfs-fuse daemon is running: On Fedora: sudo systemctl start zfs-fuse.service sudo systemctl enable zfs-fuse.service # to have it start on reboot On Debian the daemon should be started automatically. Fetch git submodules: git submodule update --init Finally, build OSv: make external all You can then start a OSv guest under KVM/QEMU: sudo ./scripts/run.py -nv -m 2G You can SSH into the guest with: ssh admin@192.168.122.89 # password: admin The management web UI is at address: http://192.168.122.89:8080/ Alternatively, you can use prebuilt QEMU QCOW2 images of the release. Instructions how to do that are on our Wiki: https://github.com/cloudius-systems/osv/wiki/Running-OSv-under-KVM-QEMU That's it! Pekka