From owner-freebsd-virtualization@FreeBSD.ORG Sun Sep 7 23:22:20 2014 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 1ACF0E3A for ; Sun, 7 Sep 2014 23:22:20 +0000 (UTC) Received: from alto.onthenet.com.au (alto.OntheNet.com.au [203.13.68.12]) by mx1.freebsd.org (Postfix) with ESMTP id D052B1AAA for ; Sun, 7 Sep 2014 23:22:19 +0000 (UTC) Received: from dommail.onthenet.com.au (dommail.OntheNet.com.au [203.13.70.57]) by alto.onthenet.com.au (Postfix) with ESMTPS id 94015121E7; Mon, 8 Sep 2014 09:22:10 +1000 (EST) Received: from Peter-Grehans-MacBook-Pro-2.local (c-69-181-164-196.hsd1.ca.comcast.net [69.181.164.196]) by dommail.onthenet.com.au (MOS 4.4.4-GA) with ESMTP id BYF28756 (AUTH peterg@ptree32.com.au); Mon, 8 Sep 2014 09:22:09 +1000 Message-ID: <540CE89F.8040209@freebsd.org> Date: Sun, 07 Sep 2014 16:22:07 -0700 From: Peter Grehan User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Manas Bhatnagar Subject: Re: Unable to boot Ubuntu Server 14.04.1 64 bit on bhyve References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-virtualization@freebsd.org X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Sep 2014 23:22:20 -0000 Hi, > I am running: > uname -a > FreeBSD ****.** 10.0-RELEASE-p7 FreeBSD 10.0-RELEASE-p7 #0: Tue Jul 8 > 06:37:44 UTC 2014 > root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC > amd64 > > I have followed the instructions in the handbook to successfully install > and run Debian 7.6.0 64 bit on the host. > > When trying to run Ubuntu Server 14.04.1 64 bit, after successfully > completing the installation, I run into an error where bhyve exits. The VM > goes through the boot process and this is the message when it exits: > vm exit rdmsr 0x611, cpu 0 > > Any insight on the error? Yes: the Ubuntu kernel is attempting to read the 'package energy status' MSR, which is unsupported in bhyve. In 10-STABLE and CURRENT, there is a new option, "-w", which ignores attempts to read/write unimplemented MSRs. The option made it into 10-STABLE on Apr 8, svn change r264273. You'll have to upgrade to pick up this option. later, Peter.