From owner-freebsd-emulation@FreeBSD.ORG Sun Aug 19 01:43:34 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B434106566B; Sun, 19 Aug 2012 01:43:34 +0000 (UTC) (envelope-from meowthink@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id E64E18FC0A; Sun, 19 Aug 2012 01:43:33 +0000 (UTC) Received: by obbun3 with SMTP id un3so10175055obb.13 for ; Sat, 18 Aug 2012 18:43:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=kppnjCb3ISk/qNzMbwcdcjj2mD1BKjRT+5GBNMjYCUk=; b=aTeYSDOlEdqe2HfQhI5F6mP3bHiRkfd7s7NNpOUoGuLuPdIW44rBtwuwGWfYacIylh lzBNkGnZBpynMyGj9CG1OzRW7C639JQHx2vHNKInhiyhpOEAeqPSJcPKjVUMUpHnaiwf IjkXA7mnHRLFAPgQhB+GvLZDU6koMIAl8NpOjQelKrd1egsMuk122j98Zs5HW20GrkJi 1lnYXvf5XEW1tpcvGeuG34xpnclzRxftheEalSIh8J5p5L2cplsRZ/mEZlr9nn6g7sQ4 xvDKeLSk6IGuW7/vgg1pjTPJnJFRQuc7SR8012IosWfenn0Q1kM0f8V/AfxQX+v4ET+0 qNpw== MIME-Version: 1.0 Received: by 10.50.56.236 with SMTP id d12mr5962913igq.66.1345340612633; Sat, 18 Aug 2012 18:43:32 -0700 (PDT) Received: by 10.64.51.200 with HTTP; Sat, 18 Aug 2012 18:43:32 -0700 (PDT) In-Reply-To: <20120818190225.GF33100@deviant.kiev.zoral.com.ua> References: <20120818190225.GF33100@deviant.kiev.zoral.com.ua> Date: Sun, 19 Aug 2012 09:43:32 +0800 Message-ID: From: Meowthink To: Konstantin Belousov Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-x11@freebsd.org, freebsd-emulation@freebsd.org Subject: Re: [CFT]Patch for dri / drm interoperability i386 world / amd64 kernel X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2012 01:43:34 -0000 On Sun, Aug 19, 2012 at 3:02 AM, Konstantin Belousov wrote: > On Sat, Aug 11, 2012 at 09:25:09AM +0800, Meowthink wrote: >> Hello all, >> >> So long FreeBSD's DRI implementation lacks of i386/amd64 >> interoperability, as discussed [0] [1]. This breaks wine, linuxulator >> etc. drawing using DRI-based OpenGL. >> Paul Mackerras et al. actually did that part for Linux implementation, >> so I simply translated their work to FreeBSD. Due to my poor >> programming skills, there's some limitations: >> 0. I tried to split compatible codes into separate files, like under >> Linux. But as a result of the difference between FreeBSD and Linux, >> the code is integrated in a "#include ...ioc32.c" form which is not >> so elegant. >> 1. For same reason, struct drm_driver_info has to be changed. > I fixed 0 and 1 to my liking and committed the patch. > > Thank you. > >> 2. There should be some assertions if a 64-bit pointer failed to fit >> in a 32-bit space. Linux implementation didn't do this either, but >> they're guaranteed by user-space ioctl structures. This may result >> unstable under heavy load. > I am not sure what do you mean exactly. Can you elaborate, please ? Excuse me for my poor expression. What I mean is, for example, line 177-180 in sys/dev/drm2/drm_ioc32.c reads: handle = map.handle; m32->mtrr = map.mtrr; m32->handle = (unsigned long)handle; drm_map.handle will be a 64-bit pointer under 64-bit mode, so I wonder this needs verification? But Linux version of drm didn't verify: if (__get_user(m32.offset, &map->offset) || __get_user(m32.size, &map->size) || __get_user(m32.type, &map->type) || __get_user(m32.flags, &map->flags) || __get_user(handle, &map->handle) || __get_user(m32.mtrr, &map->mtrr)) return -EFAULT; m32.handle = (unsigned long)handle; if (copy_to_user(argp, &m32, sizeof(m32))) return -EFAULT; In this case, drm_addmap(drm_bufs.c) guarantee the handle always a 32-bit integer, with 0s only in high 32 bits on amd64. But I'm not very sure that all kinds of this pointer operations, esp. those buffer-related address ops can guarantee a 32-bit pointer in all cases. Thanks for your review. Meowthink From owner-freebsd-emulation@FreeBSD.ORG Sun Aug 19 11:34:17 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 09F8E106564A for ; Sun, 19 Aug 2012 11:34:17 +0000 (UTC) (envelope-from smckay@internode.on.net) Received: from ipmail07.adl2.internode.on.net (ipmail07.adl2.internode.on.net [IPv6:2001:44b8:8060:ff02:300:1:2:7]) by mx1.freebsd.org (Postfix) with ESMTP id 531BD8FC0C for ; Sun, 19 Aug 2012 11:34:16 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AkMHACrOMFB20BYJ/2dsb2JhbABFqS4BjWiDKIEIgn0jgRoEiD+3VYJCjD+DHAOlYoJz Received: from ppp118-208-22-9.lns20.bne1.internode.on.net (HELO dungeon.home) ([118.208.22.9]) by ipmail07.adl2.internode.on.net with ESMTP; 19 Aug 2012 21:04:14 +0930 Received: from dungeon.home (localhost [127.0.0.1]) by dungeon.home (8.14.5/8.14.5) with ESMTP id q7JBXvpX005732; Sun, 19 Aug 2012 21:33:58 +1000 (EST) (envelope-from smckay@internode.on.net) Message-Id: <201208191133.q7JBXvpX005732@dungeon.home> From: Stephen McKay To: freebsd-emulation@freebsd.org Date: Sun, 19 Aug 2012 21:33:57 +1000 Cc: Stephen McKay Subject: VirtualBox limitations with FreeBSD clients? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2012 11:34:17 -0000 Hi! I'm trying to get the following setup stable: FreeBSD 9.1-beta1 host (Intel Q6600 cpu with 4 cores) VirtualBox 4.1.18 FreeBSD 10-current client (4 virtual cpus) No matter what I fiddle in kern.timecounter, I get many calcru errors on the client, for example: calcru: runtime went backwards from 6968924848397985 usec to 38 used for pid 16 (vnlru) In fact, that one is more preposterous than most. I think that many usec is about 220 years. Something is completely out of whack here. So, my questions are: - do multi-cpu FreeBSD clients work for you in VirtualBox? - does FreeBSD-current as a client in VirtualBox work for you? - what's the oldest hardware you've successfully used as a VirtualBox host? If this has never worked I may as well give up. But if it works for most people, maybe it can be traced, and I'll do a much better bug report. ;-) Cheers, Stephen. From owner-freebsd-emulation@FreeBSD.ORG Sun Aug 19 12:00:51 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 694A51065676 for ; Sun, 19 Aug 2012 12:00:51 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-bk0-f54.google.com (mail-bk0-f54.google.com [209.85.214.54]) by mx1.freebsd.org (Postfix) with ESMTP id D663F8FC14 for ; Sun, 19 Aug 2012 12:00:50 +0000 (UTC) Received: by bkcje9 with SMTP id je9so2004168bkc.13 for ; Sun, 19 Aug 2012 05:00:49 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=from:reply-to:to:subject:x-mailer:references:in-reply-to :content-type:content-id:date:message-id:mime-version :content-transfer-encoding; bh=eJ5dVgpFeBwXRx/Zx8TnqsgUoOgLLlBtbDYXBC7mUoA=; b=SSYZHuA+hyxCBGlUDkj0WUMi/KA5iBrk/r42enUalUMu+6rmghcuS28tqP1as5nWme iBkMWQb944ABQifSw8gAsfxTwSSs82f6Q5zy/fNzB1MhJYhauOuSmIIqh2G2N+wx6k39 +ZOoPgO5kHYz5jQNr0fPbJ4qpRTT8C8kKDpGc= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:reply-to:to:subject:x-mailer:references:in-reply-to :content-type:content-id:date:message-id:mime-version :content-transfer-encoding:x-gm-message-state; bh=eJ5dVgpFeBwXRx/Zx8TnqsgUoOgLLlBtbDYXBC7mUoA=; b=OnR4Na/OwIowVS3GtYOCMlirh0l98EGpHlpviQaHNktqTe1jQ2cvC3iUTsxlq88WI1 jqOevJJ3NvreHuwWwC7109HOqsLm9VnwAoWeNffstSd/hNwGwoXHEgpNi/pKqtBrVszR vQ02yjALLL9fNt8LS8IXtJnOFWn2Lj8SNTDRkHoyEpoQCaJ3CiN09uqHWbNdNnOgDfZU SPBPzo8jdqpIUyjbgEhg3E7EX7PpCsO0emiZPCfLfx3XzBiaob9oVvabl2luVAsCunsU hEywNF/vkkByK+J2nDFNUPShlNvuUcQ8IiKc64VKqwhzqDh2qd7HkobzBKv6CphKYZlL z0uw== Received: by 10.204.148.82 with SMTP id o18mr3516238bkv.41.1345377649164; Sun, 19 Aug 2012 05:00:49 -0700 (PDT) Received: from [10.46.84.246] (089144192025.atnat0001.highway.a1.net. [89.144.192.25]) by mx.google.com with ESMTPS id n17sm5001650bks.6.2012.08.19.05.00.47 (version=SSLv3 cipher=OTHER); Sun, 19 Aug 2012 05:00:48 -0700 (PDT) From: Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= To: Stephen McKay , freebsd-emulation@freebsd.org X-Mailer: Modest 3.90.7 References: <201208191133.q7JBXvpX005732@dungeon.home> In-Reply-To: <201208191133.q7JBXvpX005732@dungeon.home> Content-Type: text/plain; charset=utf-8 Content-ID: <1345377650.18956.1.camel@Nokia-N900-42-11> Date: Sun, 19 Aug 2012 14:00:51 +0200 Message-Id: <1345377651.18956.2.camel@Nokia-N900-42-11> Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQn9Nfegwe2+qJv/FUFPzTkuEIne/omq5XyeKtF1a+AFt+USRelKoz5FkbFQtwoMfRMc4Izb Cc: Subject: Re: VirtualBox limitations with FreeBSD clients? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2012 12:00:51 -0000 On So., 19. Aug. 2012 13:33:57 CEST, Stephen McKay wrote: > Hi! > > I'm trying to get the following setup stable: > >        FreeBSD 9.1-beta1 host (Intel Q6600 cpu with 4 cores) >        VirtualBox 4.1.18 >        FreeBSD 10-current client (4 virtual cpus) > > No matter what I fiddle in kern.timecounter, I get many calcru errors > on the client, for example: > > calcru: runtime went backwards from 6968924848397985 usec to 38 used for > pid 16 (vnlru) > > In fact, that one is more preposterous than most.  I think that many usec > is about 220 years.  Something is completely out of whack here. > > So, my questions are: > - do multi-cpu FreeBSD clients work for you in VirtualBox? > - does FreeBSD-current as a client in VirtualBox work for you? > - what's the oldest hardware you've successfully used as a VirtualBox > host? > > If this has never worked I may as well give up.  But if it works for > most people, maybe it can be traced, and I'll do a much better bug > report. ;-) What do you currently use to keep the time in sync? There are vbox guest additions that can keep the time in sync with the host clock or you could use an ntp client in the guest. Both did work fine for me in the past but results may vary. -- http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Sun Aug 19 12:16:45 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD2791065672 for ; Sun, 19 Aug 2012 12:16:45 +0000 (UTC) (envelope-from smckay@internode.on.net) Received: from ipmail07.adl2.internode.on.net (ipmail07.adl2.internode.on.net [IPv6:2001:44b8:8060:ff02:300:1:2:7]) by mx1.freebsd.org (Postfix) with ESMTP id 3F4478FC19 for ; Sun, 19 Aug 2012 12:16:45 +0000 (UTC) X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Av0EANrYMFB20BYJ/2dsb2JhbABFuj+BCIIhAQVWIxALRjkEGgaIH7dfgkKISYcSA6VignM Received: from ppp118-208-22-9.lns20.bne1.internode.on.net (HELO dungeon.home) ([118.208.22.9]) by ipmail07.adl2.internode.on.net with ESMTP; 19 Aug 2012 21:46:44 +0930 Received: from dungeon.home (localhost [127.0.0.1]) by dungeon.home (8.14.5/8.14.5) with ESMTP id q7JCGYM1006771; Sun, 19 Aug 2012 22:16:35 +1000 (EST) (envelope-from smckay@internode.on.net) Message-Id: <201208191216.q7JCGYM1006771@dungeon.home> From: Stephen McKay To: Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= References: <201208191133.q7JBXvpX005732@dungeon.home><1345377651.18956.2.camel@Nokia-N900-42-11> In-Reply-To: <1345377651.18956.2.camel@Nokia-N900-42-11> from Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= at "Sun, 19 Aug 2012 14:00:51 +0200" Date: Sun, 19 Aug 2012 22:16:34 +1000 Cc: freebsd-emulation@freebsd.org, Stephen McKay Subject: Re: VirtualBox limitations with FreeBSD clients? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 19 Aug 2012 12:16:45 -0000 On Sunday, 19th August 2012, Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= wrote: >What do you currently use to keep the time in sync? There are vbox >guest additions that can keep the time in sync with the host clock >or you could use an ntp client in the guest. Both did work fine for >me in the past but results may vary. I've tried with and without the virtualbox-ose-additions port but my problem is more fundamental than drifting time. Those "calcru" warnings should not occur, no matter whether you have the additions running or not. At a very low level, my 10-current client is getting such bad time information it cannot track time even approximately, and none of the settings I've tried make it stable. Do you have any well behaved FreeBSD virtual box clients? Are any of them running 10-current? My experience with virtual FreeBSD clients so far has been FreeBSD 8 on ESXi 4, and that has worked fine. Stephen. From owner-freebsd-emulation@FreeBSD.ORG Mon Aug 20 11:07:29 2012 Return-Path: Delivered-To: emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2A831065670 for ; Mon, 20 Aug 2012 11:07:29 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9C7BC8FC14 for ; Mon, 20 Aug 2012 11:07:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7KB7TuW046770 for ; Mon, 20 Aug 2012 11:07:29 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7KB7SAW046760 for emulation@FreeBSD.org; Mon, 20 Aug 2012 11:07:28 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 20 Aug 2012 11:07:28 GMT Message-Id: <201208201107.q7KB7SAW046760@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: emulation@FreeBSD.org Cc: Subject: Current problem reports assigned to emulation@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2012 11:07:29 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/170686 emulation www/linux-f10-flashplugin11 is vulnerable o ports/169988 emulation [PATCH] Update sysutils/linux-procps to 3.2.7; also up o ports/169896 emulation [patch] audio/linux-f10-alsa-lib: use OSS plugin by de 3 problems total. From owner-freebsd-emulation@FreeBSD.ORG Mon Aug 20 11:07:41 2012 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B2AF61065676 for ; Mon, 20 Aug 2012 11:07:41 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 843A08FC2C for ; Mon, 20 Aug 2012 11:07:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q7KB7fte047381 for ; Mon, 20 Aug 2012 11:07:41 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q7KB7eUP047303 for freebsd-emulation@FreeBSD.org; Mon, 20 Aug 2012 11:07:40 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 20 Aug 2012 11:07:40 GMT Message-Id: <201208201107.q7KB7eUP047303@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-emulation@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-emulation@FreeBSD.org X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 20 Aug 2012 11:07:41 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/169814 emulation [linux] ptrace is broken in Linux emulation o kern/169805 emulation [linux] utime() syscall does not work in linuxulator o kern/159646 emulation [linux] [patch] bump Linux version in linuxulator f kern/156691 emulation [vmware] [panic] panic when using hard disks as RAW de o kern/156353 emulation [ibcs2] ibcs2 binaries that execute on 4.x not working o kern/155577 emulation [boot] BTX halted after install. Reboot during install o kern/155040 emulation [linux] [patch] Linux recvfrom doesn't handle proto fa o kern/153990 emulation [hyper-v]: Will not install into Hyper-V on Server 200 o kern/153887 emulation [linux] Linux emulator not understand STB_GNU_UNIQUE b o kern/153243 emulation [ibcs2] Seg fault whne running COFF binary using iBCS2 o kern/151714 emulation [linux] print/acroread9 not usable due to lack of supp a bin/150262 emulation [patch] truss(1) -f doesn't follow descendants of the a kern/150186 emulation [parallels] [panic] Parallels Desktop: CDROM disconnec o ports/148097 emulation [patch] suggested addition to linux_base-* packages to o ports/148096 emulation emulators/linux_base-* can not be built from ports on o kern/147793 emulation [vmware] [panic] cdrom handling, panic, possible race o kern/146237 emulation [linux] Linux binaries not reading directories mounted p kern/144584 emulation [linprocfs][patch] bogus values in linprocfs o ports/142837 emulation [patch] emulators/linux_base-* packages fails to insta o kern/140156 emulation [linux] cdparanoia fails to read drive data f kern/138944 emulation [parallels] [regression] Parallels no longer works in o kern/138880 emulation [linux] munmap segfaults after linux_mmap2 stresstest o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage s kern/133144 emulation [linux] linuxulator 2.6 crashes with nvidias libGL.so. o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/86619 emulation [linux] linux emulator interacts oddly with cp a kern/72920 emulation [linux] path "prefixing" is not done on unix domain so o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/36952 emulation [patch] [linux] ldd(1) command of linux does not work o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 32 problems total. From owner-freebsd-emulation@FreeBSD.ORG Tue Aug 21 01:47:32 2012 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D1EC71065670 for ; Tue, 21 Aug 2012 01:47:32 +0000 (UTC) (envelope-from sdb@ssr.com) Received: from mailhost.ssr.com (mailhost.ssr.com [199.4.235.5]) by mx1.freebsd.org (Postfix) with SMTP id 7FC4F8FC0C for ; Tue, 21 Aug 2012 01:47:32 +0000 (UTC) Received: (qmail 94853 invoked from network); 21 Aug 2012 01:31:26 -0000 Received: from pool-72-89-118-180.nycmny.east.verizon.net (HELO irelay.ssr.com) (sdb@72.89.118.180) by 199.4.235.5 with SMTP; 21 Aug 2012 01:31:26 -0000 Received: (qmail 95824 invoked by uid 103); 21 Aug 2012 01:14:39 -0000 Date: 21 Aug 2012 01:14:39 -0000 Message-ID: <20120821011439.95823.qmail@irelay.ssr.com> From: Scott Ballantyne To: emulation@freebsd.org Cc: Subject: VBoxManage clonehd question? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2012 01:47:32 -0000 Hello, I've been trying to create a clone of my current virtual boot disk before I try to enlarge it. I cd to the directory with the VDI file, and then: VBoxManage clonehd Windows_7_64bit.vdi Windows7_Clone.vdi The command reports: VBoxManage: error: Cannot register the hard disk '/usr/home/redhotmomma/sdb/VirtualBox VMs/Windows_7_64bit/Windows_7_64bit.vdi' {83b50fa1-90ab-404d-bb6f-1a198017d05b} because a hard disk '/home/redhotmomma/sdb/VirtualBox VMs/Windows_7_64bit/Windows_7_64bit.vdi' with UUID {83b50fa1-90ab-404d-bb6f-1a198017d05b} already exists VBoxManage: error: Details: code NS_ERROR_INVALID_ARG (0x80070057), component VirtualBox, interface IVirtualBox, callee nsISupports Context: "OpenMedium(Bstr(pszFilenameOrUuid).raw(), enmDevType, AccessMode_ReadWrite, fForceNewUuidOnOpen, pMedium.asOutParam())" at line 210 of file VBoxManageDisk.cpp sdb@gigawattmomma$ VBoxManage clonehd Windows_7_64bit.vdi Windows7_Clone.vdi VBoxManage: error: Cannot register the hard disk '/usr/home/redhotmomma/sdb/VirtualBox VMs/Windows_7_64bit/Windows_7_64bit.vdi' {83b50fa1-90ab-404d-bb6f-1a198017d05b} because a hard disk '/home/redhotmomma/sdb/VirtualBox VMs/Windows_7_64bit/Windows_7_64bit.vdi' with UUID {83b50fa1-90ab-404d-bb6f-1a198017d05b} already exists VBoxManage: error: Details: code NS_ERROR_INVALID_ARG (0x80070057), component VirtualBox, interface IVirtualBox, callee nsISupports Context: "OpenMedium(Bstr(pszFilenameOrUuid).raw(), enmDevType, AccessMode_ReadWrite, fForceNewUuidOnOpen, pMedium.asOutParam())" at line 210 of file VBoxManageDisk.cpp Which is odd, because I thought conehd was supposed to createe a new UUID. This is with VIrtual Box 4.1, FreeBSD 9 Thanks for any help. Regards, Scott -- sdb@ssr.com From owner-freebsd-emulation@FreeBSD.ORG Tue Aug 21 03:52:29 2012 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9A163106564A for ; Tue, 21 Aug 2012 03:52:29 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 5E8D18FC08 for ; Tue, 21 Aug 2012 03:52:29 +0000 (UTC) Received: by obbun3 with SMTP id un3so14263618obb.13 for ; Mon, 20 Aug 2012 20:52:28 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; bh=6wu6/Zfdja7QBtkeGRrx9DhFG1fPfg07LWTJQMTWzIQ=; b=jorhhAWB3tu6VuwiU/mpKzNNyG5KfpAbjEVInY4ja0SVIhwqRkJqQX1/J5eqN/21yo 6JosdukNR4jsysKwkf+LqsAQyPw+lxnXD6nlP1wd0O+p7C7pZal1T5kjvV5bWUWx2anM 8mF8U5/02WLpTZFafXaMK79yloTvblLFhqXGbBibIQOpVBK+yKagvGtky71miceitb3H ukEm5usRx7R1mb6BV4H6x6I0SDKcdpawAXrO2Qqxn3w//hXLr5vIfVp7ID6oFXIYB1PH cJtCSYiVzsYvjvBb5KdqPZWuY6lcE6alxu/Vvcsb77ON37ENESYf9BPbBos4VSYYjAEk FiDQ== MIME-Version: 1.0 Received: by 10.60.2.105 with SMTP id 9mr11802178oet.65.1345521148729; Mon, 20 Aug 2012 20:52:28 -0700 (PDT) Received: by 10.76.83.130 with HTTP; Mon, 20 Aug 2012 20:52:28 -0700 (PDT) In-Reply-To: <20120821011439.95823.qmail@irelay.ssr.com> References: <20120821011439.95823.qmail@irelay.ssr.com> Date: Mon, 20 Aug 2012 22:52:28 -0500 Message-ID: From: Adam Vande More To: Scott Ballantyne Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: emulation@freebsd.org Subject: Re: VBoxManage clonehd question? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2012 03:52:29 -0000 On Mon, Aug 20, 2012 at 8:14 PM, Scott Ballantyne wrote: > Hello, > > I've been trying to create a clone of my current virtual boot disk > before I try to enlarge it. > > I cd to the directory with the VDI file, and then: > > VBoxManage clonehd Windows_7_64bit.vdi Windows7_Clone.vdi > Try using absolute path -- Adam Vande More From owner-freebsd-emulation@FreeBSD.ORG Tue Aug 21 05:05:10 2012 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9C56E1065674 for ; Tue, 21 Aug 2012 05:05:10 +0000 (UTC) (envelope-from sdb@ssr.com) Received: from mailhost.ssr.com (mailhost.ssr.com [199.4.235.5]) by mx1.freebsd.org (Postfix) with SMTP id 6018C8FC12 for ; Tue, 21 Aug 2012 05:05:10 +0000 (UTC) Received: (qmail 23639 invoked from network); 21 Aug 2012 04:55:46 -0000 Received: from pool-72-89-118-180.nycmny.east.verizon.net (HELO irelay.ssr.com) (sdb@72.89.118.180) by 199.4.235.5 with SMTP; 21 Aug 2012 04:55:46 -0000 Received: (qmail 96797 invoked by uid 103); 21 Aug 2012 04:38:53 -0000 Date: 21 Aug 2012 04:38:50 -0000 Message-ID: <20120821043850.96795.qmail@irelay.ssr.com> From: Scott Ballantyne To: emulation@freebsd.org In-reply-to: (message from Adam Vande More on Mon, 20 Aug 2012 22:52:28 -0500) References: <20120821011439.95823.qmail@irelay.ssr.com> Cc: Subject: Re: VBoxManage clonehd question? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2012 05:05:10 -0000 > On Mon, Aug 20, 2012 at 8:14 PM, Scott Ballantyne wrote: > > > Hello, > > > > I've been trying to create a clone of my current virtual boot disk > > before I try to enlarge it. > > > > I cd to the directory with the VDI file, and then: > > > > VBoxManage clonehd Windows_7_64bit.vdi Windows7_Clone.vdi > > > > Try using absolute path Thanks Adam, that worked very well. Best, Scott -- sdb@ssr.com From owner-freebsd-emulation@FreeBSD.ORG Tue Aug 21 08:28:14 2012 Return-Path: Delivered-To: emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C00A6106564A for ; Tue, 21 Aug 2012 08:28:14 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id AE0418FC15 for ; Tue, 21 Aug 2012 08:28:14 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id q7L8SEUP071048 for ; Tue, 21 Aug 2012 08:28:14 GMT (envelope-from linimon@FreeBSD.org) Date: Tue, 21 Aug 2012 08:28:14 GMT Message-Id: <201208210828.q7L8SEUP071048@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: emulation@FreeBSD.org Cc: Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2012 08:28:14 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: www/linux-flashplugin9 broken because: unfetchable build errors: http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.10.20120608131052/linux-flashplugin-9.0r289_1.log (_Jun_13_10:34:28_UTC_2012) overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=linux-flashplugin9 If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-emulation@FreeBSD.ORG Tue Aug 21 08:29:17 2012 Return-Path: Delivered-To: emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DCDE410656A9 for ; Tue, 21 Aug 2012 08:29:16 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id AC50C8FC1A for ; Tue, 21 Aug 2012 08:29:16 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id q7L8TGJo077666 for ; Tue, 21 Aug 2012 08:29:16 GMT (envelope-from linimon@FreeBSD.org) Date: Tue, 21 Aug 2012 08:29:16 GMT Message-Id: <201208210829.q7L8TGJo077666@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: emulation@FreeBSD.org Cc: Subject: FreeBSD ports that you maintain which are currently scheduled for deletion X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2012 08:29:17 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: accessibility/linux-atk description: Accessibility Toolkit, Linux/i386 binary maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=accessibility&portname=linux-atk portname: archivers/linux-ucl description: RPM of UCL, a lossless data compression library maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=linux-ucl portname: archivers/linux-upx description: RPM of UPX, a high-performance executable packer maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=archivers&portname=linux-upx portname: audio/linux-esound description: RPM of esound maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-esound portname: audio/linux-libaudiofile description: RPM of audiofile maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-libaudiofile portname: audio/linux-nas-libs description: Runtime libraries for NAS (Linux Fedora Core 4) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=audio&portname=linux-nas-libs portname: devel/linux-allegro description: Cross-platform game programming library (linux version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-allegro portname: devel/linux-libglade description: RPM of libglade maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-libglade portname: devel/linux-libsigc++20 description: Callback Framework for C++ (linux version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-libsigc%2B%2B20 portname: devel/linux-sdl12 description: Cross-platform multi-media development API (linux version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=linux-sdl12 portname: emulators/linux_base-fc4 description: Base set of packages needed in Linux mode (for i386/amd64) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=emulators&portname=linux_base-fc4 portname: graphics/linux-imlib description: RPM of imlib maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-imlib portname: graphics/linux-jpeg description: RPM of the JPEG lib maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-jpeg portname: graphics/linux-libGLU description: OpenGL utility library (Linux version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-libGLU portname: graphics/linux-png description: RPM of the PNG lib maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-png portname: graphics/linux-png10 description: RPM of the PNG lib (old 1.0 version) maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-png10 portname: graphics/linux-tiff description: TIFF library, Linux/i386 binary maintainer: emulation@FreeBSD.org status: FORBIDDEN deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-tiff portname: lang/linux-libg2c description: Fortran 77 compatibility runtime maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=lang&portname=linux-libg2c portname: multimedia/linux-libtheora description: Video codec maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=multimedia&portname=linux-libtheora portname: sysutils/linux-procps description: Linux psproc binaries maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&portname=linux-procps portname: textproc/linux-expat description: Linux/i386 binary port of Expat XML-parsing library maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-expat portname: textproc/linux-libxml description: RPM of libxml maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=textproc&portname=linux-libxml portname: www/linux-f10-flashplugin10 description: Adobe Flash Player NPAPI Plugin maintainer: emulation@FreeBSD.org status: FORBIDDEN deprecated because: has vulnerabilities and is EOL expiration date: 2012-03-27 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=linux-f10-flashplugin10 portname: x11-fonts/linux-fontconfig description: Linux/i386 binary of Fontconfig maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-fonts&portname=linux-fontconfig portname: x11-toolkits/linux-gtk description: RPM of the Gtk lib maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-gtk portname: x11-toolkits/linux-gtk2 description: GTK+ library, version 2.X, Linux binary maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-gtk2 portname: x11-toolkits/linux-openmotif description: Motif toolkit Linux libraries maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-openmotif portname: x11-toolkits/linux-pango description: Linux pango binary maintainer: emulation@FreeBSD.org status: FORBIDDEN deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-pango portname: x11/linux-xorg-libs description: Xorg libraries, linux binaries maintainer: emulation@FreeBSD.org deprecated because: expiration date: 2013-02-28 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=linux-xorg-libs If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-emulation@FreeBSD.ORG Tue Aug 21 08:29:45 2012 Return-Path: Delivered-To: emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B6B11065679 for ; Tue, 21 Aug 2012 08:29:45 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 1A4788FC1E for ; Tue, 21 Aug 2012 08:29:45 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id q7L8Tj3p081276 for ; Tue, 21 Aug 2012 08:29:45 GMT (envelope-from linimon@FreeBSD.org) Date: Tue, 21 Aug 2012 08:29:45 GMT Message-Id: <201208210829.q7L8Tj3p081276@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: emulation@FreeBSD.org Cc: Subject: FreeBSD ports that you maintain which are currently marked forbidden X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2012 08:29:45 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users about ports that are marked as "forbidden" in their Makefiles. Often, these ports are so marked due to security concerns, such as known exploits. An overview of each port, including errors seen on the build farm, is included below. portname: graphics/linux-tiff forbidden because: Vulnerable since 2004-10-13, http://portaudit.freebsd.org/8816bf3a-7929-11df-bcce-0018f3e2eb82.html build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=linux-tiff portname: www/linux-f10-flashplugin10 forbidden because: insecure version - use flashplugin11 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=www&portname=linux-f10-flashplugin10 portname: x11-toolkits/linux-pango forbidden because: Vulnerable since 2009-05-13, http://portaudit.freebsd.org/4b172278-3f46-11de-becb-001cc0377035.html build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11-toolkits&portname=linux-pango If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-emulation@FreeBSD.ORG Tue Aug 21 13:19:15 2012 Return-Path: Delivered-To: emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B2D2106566C for ; Tue, 21 Aug 2012 13:19:15 +0000 (UTC) (envelope-from www-data@wpc0390.host7x24.com) Received: from svr1.mvp.eu (wpc0390.host7x24.com [62.193.225.4]) by mx1.freebsd.org (Postfix) with ESMTP id 0CCAB8FC15 for ; Tue, 21 Aug 2012 13:19:15 +0000 (UTC) Received: from svr1.mvp.eu (localhost.localdomain [127.0.0.1]) by svr1.mvp.eu (Postfix) with ESMTP id DCC35115A0A6 for ; Tue, 21 Aug 2012 13:19:14 +0000 (UTC) Received: by svr1.mvp.eu (Postfix, from userid 33) id 330E5115A098; Tue, 21 Aug 2012 13:19:08 +0000 (UTC) To: emulation@FreeBSD.org From: BARR BEN DUKE MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 8bit Message-Id: <20120821131914.330E5115A098@svr1.mvp.eu> Date: Tue, 21 Aug 2012 13:19:08 +0000 (UTC) Cc: Subject: BMW X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: barr.benduke1@gmail.com List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Aug 2012 13:19:15 -0000 The Promotion Department BMW Cars 22 Garden Close, Stamford, Lincs, PE9 2YP, London United Kingdom +447045768755 This is to inform you that you have been selected for a cash prize of 1,000,000.00 GBP (one million pounds sterling) and a BMW X6 car from international programs held on 20 June 2012 in the UK. Contact the department for verification 1.Name in full. 2.Address in full. 3.Nationality & Country . 4.Age 5.Phone Fax / / Sex. 6.Email Address. Barrister Ben Duke. E-mail: barr.benduke1@gmail.com Once again, congratulations. Coordinator Online From owner-freebsd-emulation@FreeBSD.ORG Wed Aug 22 09:34:49 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD7211065670; Wed, 22 Aug 2012 09:34:49 +0000 (UTC) (envelope-from naylor.b.david@gmail.com) Received: from mail-wi0-f178.google.com (mail-wi0-f178.google.com [209.85.212.178]) by mx1.freebsd.org (Postfix) with ESMTP id 1D1D48FC22; Wed, 22 Aug 2012 09:34:48 +0000 (UTC) Received: by wibhr14 with SMTP id hr14so520741wib.13 for ; Wed, 22 Aug 2012 02:34:42 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:user-agent:mime-version:content-type :content-transfer-encoding:message-id; bh=t+A6+R5eyZ8WZGHWFzOyI45nutWZlfwjt1eZk+3dbLw=; b=B4p6IuRHT81zOsec8FOLMyJ4DfvTLuYPOLVKTYyt5A5KjL3G3qmtaAC+Gl20wVvDBt GLEGsjLuBgKxN0ADfUMysOBvSO3LVn7sfPYcyaq+jb5uuCgtEhdFKHaX4p+rBK0Z2tQ1 XNR9nQZXi47rUXyJ8nzDMSBMhxi30jDTuPOWsPNh9FavPslyfzQ80MC86n0VV3arQ0XV wLyV2OI90m+BJvN6XNXpkTdXoP5u08avk/aLBcTQl+GwMDgCIOeS1OJjiPShJHFWrSgO 9780/JQ576XTeawoXJzwuVTIv+sVT1N1BHiDz+ly7EnrXdSg0P28ldnuVJn/e6UL1VK3 hxww== Received: by 10.180.106.137 with SMTP id gu9mr4322132wib.20.1345628081950; Wed, 22 Aug 2012 02:34:41 -0700 (PDT) Received: from dragon.dg (41-132-210-104.dsl.mweb.co.za. [41.132.210.104]) by mx.google.com with ESMTPS id k20sm38432009wiv.11.2012.08.22.02.34.39 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 22 Aug 2012 02:34:41 -0700 (PDT) From: David Naylor To: freebsd-emulation@freebsd.org, freebsd-questions@freebsd.org Date: Wed, 22 Aug 2012 11:34:32 +0200 User-Agent: KMail/1.13.7 (FreeBSD/9.1-PRERELEASE; KDE/4.8.4; amd64; ; ) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart4358365.4XGfzrgam6"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <201208221134.35460.naylor.b.david@gmail.com> Cc: Subject: Wine-fbsd64 updated to 1.5.11 (32bit Wine for 64bit FreeBSD) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2012 09:34:49 -0000 --nextPart4358365.4XGfzrgam6 Content-Type: Text/Plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable 4Hi, Packages [1] for wine-fbsd64-1.5.11 have been uploaded to mediafire [2]. T= he=20 packages for FreeBSD 10 use the pkgng [3] format. =20 There are many reports that wine does not work with a clang compiled world (help in fixing this problem is appreciated as it affects quite a few users= ). The patch [4] for nVidia users is now included in the package and is run on installation (if the relevant files are accessible). Please read the installation messages for further information. Regards, David [1] MD5 (wine-1.5.x-freebsd8/wine-fbsd64-1.5.11,1.tbz) =3D=20 6ef223d508e191c18ed9fa92b993cd4c MD5 (wine-1.5.x-freebsd9/wine-fbsd64-1.5.11,1.txz) =3D=20 81f373343dc765b226710aff43206991 MD5 (wine-1.5.x-freebsd10/wine-fbsd64-1.5.11,1.txz) =3D=20 9159e7ac79283dd146084633a56af34d [2] http://www.mediafire.com/wine_fbsd64 [3] http://wiki.freebsd.org/pkgng [4] The patch is located at /usr/local/share/wine/patch-nvidia.sh --nextPart4358365.4XGfzrgam6 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEABECAAYFAlA0p6sACgkQUaaFgP9pFrKB3QCggB2vj7AloEexHZFR9p/XfbdR ftAAn0Yu/azYrUpAma4BuHJ62nZBshJi =uTVs -----END PGP SIGNATURE----- --nextPart4358365.4XGfzrgam6-- From owner-freebsd-emulation@FreeBSD.ORG Wed Aug 22 16:46:22 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A048106566B for ; Wed, 22 Aug 2012 16:46:22 +0000 (UTC) (envelope-from holger@freyther.de) Received: from mail.sysmocom.de (sysmocom.de [78.46.147.233]) by mx1.freebsd.org (Postfix) with ESMTP id DB0DA8FC08 for ; Wed, 22 Aug 2012 16:46:21 +0000 (UTC) Received: from sangmingze-mail.local (berligate.hmw-consulting.de [83.236.178.202]) by mail.sysmocom.de (Postfix) with ESMTPSA id C286D2543428 for ; Wed, 22 Aug 2012 16:42:44 +0000 (UTC) Received: from ich by sangmingze-mail.local with local (Exim 4.80) (envelope-from ) id 1T4DzO-0001gZ-Sx for freebsd-emulation@freebsd.org; Wed, 22 Aug 2012 18:41:06 +0200 Date: Wed, 22 Aug 2012 18:41:06 +0200 From: Holger Hans Peter Freyther To: freebsd-emulation@freebsd.org Message-ID: <20120822164106.GE4301@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.21 (2010-09-15) Subject: Linux SHM inside a jail X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2012 16:46:22 -0000 Hi, I have found the old thread[1] about SHM Linux emulation and have them issues to get it to work inside a jail. I fail to create a /dev/shm directory for the devfs inside the jail. I added the 'link /tmp shm' to the /etc/devs.conf, I edited /etc/defaults/devfs.rules to attempt to unhide shm and 'shm/*' but the 'shm/' directory does not become visible inside the jail. any idea how to get this to work in a Jail? holger PS: I looked at both GLIBC ntpl/sem_open.c and linux_stats.c. One option would be to list another directory in /proc/mounts with tmpfs/shmfs and replicate the check in linux_stats.c for this alternative directory. [1] http://lists.freebsd.org/pipermail/freebsd-emulation/2011-January/008310.html From owner-freebsd-emulation@FreeBSD.ORG Wed Aug 22 22:36:08 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CAE261065676 for ; Wed, 22 Aug 2012 22:36:08 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id 544B08FC0A for ; Wed, 22 Aug 2012 22:36:07 +0000 (UTC) Received: from mart.js.berklix.net (pD9FBE493.dip.t-dialin.net [217.251.228.147]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id q7MMa0BD082295 for ; Wed, 22 Aug 2012 22:36:01 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id q7MMZnOt005408 for ; Thu, 23 Aug 2012 00:35:49 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.4/8.14.4) with ESMTP id q7MMZh4W066538 for ; Thu, 23 Aug 2012 00:35:49 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201208222235.q7MMZh4W066538@fire.js.berklix.net> To: freebsd-emulation@freebsd.org From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Wed, 22 Aug 2012 18:41:06 +0200." <20120822164106.GE4301@localhost> Date: Thu, 23 Aug 2012 00:35:43 +0200 Sender: jhs@berklix.com Subject: /usr/ports/print/acroread9 & ldd shared lib errors X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 22 Aug 2012 22:36:08 -0000 Hi freebsd-emulation@ I am trying to get current version of /usr/ports/print/acroread9 to work on FreeBSD8.2-RELEASE src/ based systems, both i386 & amd64 available here (also available: 8.3-REL & 9.0-REL amd64 if necessary). I am seeing errors from ldd, shown on my http://berklix.com/~jhs/src/bsd/fixes/FreeBSD/doc/en_US.ISO8859-1/books/handbook/linuxemu-adobe.html & request help/ suggestions. Once I have this working, I'd happily smarten the page & then send-p to help others. I have eg libBIB.so but not sure where to toss it ? I currently have 2 copies even, in compat & local. All info copiously shown on page above. Any suggestions much appreciated PS Reason I need Adobe Reader is I need to fill in a tax return form, & tax authority reccomends Adobe Reader. Hence tools like xpdf insufficient to fill a form. Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com Reply below not above, cumulative like a play script, & indent with "> ". Format: Plain text. Not HTML, multipart/alternative, base64, quoted-printable. Mail from Yahoo & Hotmail to be dumped @Berklix. http://berklix.org/yahoo/ From owner-freebsd-emulation@FreeBSD.ORG Thu Aug 23 00:08:16 2012 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 865CE106564A for ; Thu, 23 Aug 2012 00:08:16 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id 7F5E18FC18 for ; Thu, 23 Aug 2012 00:08:15 +0000 (UTC) Received: from alph.allbsd.org (p2214-ipbf2707funabasi.chiba.ocn.ne.jp [123.225.119.214]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id q7N07rGQ026467 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 23 Aug 2012 09:08:03 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.allbsd.org (8.14.5/8.14.5) with ESMTP id q7N07oV3073783; Thu, 23 Aug 2012 09:07:53 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Thu, 23 Aug 2012 09:07:32 +0900 (JST) Message-Id: <20120823.090732.2097891423424508303.hrs@allbsd.org> To: jhs@berklix.com From: Hiroki Sato In-Reply-To: <201208222250.q7MMoe6M066937@fire.js.berklix.net> References: <201208222250.q7MMoe6M066937@fire.js.berklix.net> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Thu_Aug_23_09_07_32_2012_207)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Thu, 23 Aug 2012 09:08:03 +0900 (JST) X-Spam-Status: No, score=-98.1 required=13.0 tests=CONTENT_TYPE_PRESENT, ONLY1HOPDIRECT, SAMEHELOBY2HOP, USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: freebsd-emulation@FreeBSD.org Subject: Re: /usr/ports/print/acroread9 & ldd shared lib errors (fwd) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2012 00:08:16 -0000 ----Security_Multipart(Thu_Aug_23_09_07_32_2012_207)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit "Julian H. Stacey" wrote in <201208222250.q7MMoe6M066937@fire.js.berklix.net>: jh> Hi hrs@FreeBSD.org, jh> Sorry, just realised I should have sent you a copy of this jh> jh> Forwarded from: "Julian Stacey" http://www.berklix.com/~jhs/ jh> jh> ------- Forwarded Message jh> jh> To: freebsd-emulation@freebsd.org jh> Subject: /usr/ports/print/acroread9 & ldd shared lib errors jh> From: "Julian H. Stacey" jh> Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany jh> User-agent: EXMH on FreeBSD http://berklix.com/free/ jh> X-URL: http://www.berklix.com jh> In-reply-to: Your message "Wed, 22 Aug 2012 18:41:06 +0200." jh> <20120822164106.GE4301@localhost> jh> Date: Thu, 23 Aug 2012 00:35:43 +0200 jh> Sender: jhs@fire.js.berklix.net jh> jh> Hi freebsd-emulation@ jh> I am trying to get current version of /usr/ports/print/acroread9 jh> to work on FreeBSD8.2-RELEASE src/ based systems, both i386 & amd64 jh> available here (also available: 8.3-REL & 9.0-REL amd64 if necessary). jh> jh> I am seeing errors from ldd, shown on my jh> http://berklix.com/~jhs/src/bsd/fixes/FreeBSD/doc/en_US.ISO8859-1/books/handbook/linuxemu-adobe.html jh> jh> & request help/ suggestions. jh> Once I have this working, I'd happily smarten the page & then send-p jh> to help others. jh> jh> I have eg libBIB.so but not sure where to toss it ? jh> I currently have 2 copies even, in compat & local. I cannot understand what your problem is. acroread9 did not run on your system? -- Hiroki ----Security_Multipart(Thu_Aug_23_09_07_32_2012_207)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlA1dEQACgkQTyzT2CeTzy00sACZAeQrTwCGrZD2/U18ztSdQCjs 5BsAnRIipEmXraJq0iVX9SLaZn9nDkR0 =VjCv -----END PGP SIGNATURE----- ----Security_Multipart(Thu_Aug_23_09_07_32_2012_207)---- From owner-freebsd-emulation@FreeBSD.ORG Thu Aug 23 12:30:10 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8E56D106566C; Thu, 23 Aug 2012 12:30:10 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id 2FDB08FC14; Thu, 23 Aug 2012 12:30:09 +0000 (UTC) Received: from mart.js.berklix.net (p5DCBE5A2.dip.t-dialin.net [93.203.229.162]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id q7NCU7WO096399; Thu, 23 Aug 2012 12:30:08 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id q7NCTtsi008935; Thu, 23 Aug 2012 14:29:56 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.4/8.14.4) with ESMTP id q7NCTnTc092147; Thu, 23 Aug 2012 14:29:55 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201208231229.q7NCTnTc092147@fire.js.berklix.net> To: Hiroki Sato From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Thu, 23 Aug 2012 09:07:32 +0900." <20120823.090732.2097891423424508303.hrs@allbsd.org> Date: Thu, 23 Aug 2012 14:29:49 +0200 Sender: jhs@berklix.com Cc: freebsd-emulation@freebsd.org Subject: Re: /usr/ports/print/acroread9 & ldd shared lib errors (fwd) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2012 12:30:10 -0000 Hi, Hiroki Sato wrote: > "Julian H. Stacey" wrote > > jh> Hi hrs@FreeBSD.org, > jh> Sorry, just realised I should have sent you a copy of this > jh> > jh> Forwarded from: "Julian Stacey" http://www.berklix.com/~jhs/ > jh> ------- Forwarded Message > jh> > jh> To: freebsd-emulation@freebsd.org > jh> Subject: /usr/ports/print/acroread9 & ldd shared lib errors > jh> From: "Julian H. Stacey" > jh> Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany > jh> User-agent: EXMH on FreeBSD http://berklix.com/free/ > jh> X-URL: http://www.berklix.com > jh> In-reply-to: Your message "Wed, 22 Aug 2012 18:41:06 +0200." > jh> <20120822164106.GE4301@localhost> > jh> Date: Thu, 23 Aug 2012 00:35:43 +0200 > jh> Sender: jhs@fire.js.berklix.net > jh> > jh> Hi freebsd-emulation@ > jh> I am trying to get current version of /usr/ports/print/acroread9 > jh> to work on FreeBSD8.2-RELEASE src/ based systems, both i386 & amd64 > jh> available here (also available: 8.3-REL & 9.0-REL amd64 if necessary). > jh> > jh> I am seeing errors from ldd, shown on my > jh> http://berklix.com/~jhs/src/bsd/fixes/FreeBSD/doc/en_US.ISO8859-1/books/handbook/linuxemu-adobe.html > jh> > jh> & request help/ suggestions. > jh> Once I have this working, I'd happily smarten the page & then send-p > jh> to help others. > jh> > jh> I have eg libBIB.so but not sure where to toss it ? > jh> I currently have 2 copies even, in compat & local. > > I cannot understand what your problem is. acroread9 did not run on > your system? Right, It starts, but various errors, both to invoking command line & also to pop up windows, please see http://berklix.com/~jhs/src/bsd/fixes/FreeBSD/doc/en_US.ISO8859-1/books/handbook/linuxemu-adobe.html where I documented checking everything to see what was wrong, & found ldd shows some libs are still unresolved per URL above: i386 libBIB.so => not found amd64 libBIB.so: cannot open shared object file libs remained missing after (cd /usr/local/Adobe/Reader9;tar cf - . )|(cd /compat/linux/Adobe/Reader9 && tar xf - ) ldconfig -R /compat/linux/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/lib ldd /usr/local/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/bin/acroread Please see my web page at text lines: because per quote from `man ldconfig`: Filenames must conform to the lib I or you in port could cludge those numeric failures, (rename, relink) but is it necessary to ? or should the Linux ABI/emulator work round it ? I presume it's common for Linux to have .so.[0-9].[0.9] & FreeBSD to use just .so.[0-9] So I guess FreeBSD might already have some standard mapping mechanism for Linux lib names ? I dont know if acroread libs should be in /usr/local or /compat ? I don't know if I should be setting more ldconfig vars in rc.conf ? Currently in rc.conf I have ldconfig_paths="/usr/lib/compat /usr/local/lib /usr/local/lib/compat/pkg \ /usr/local/lib/browser_plugins/gnash /usr/local/lib/gio/modules \ /usr/local/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/lib" I have no other ldconfig vars set, so I'm inheriting /etc/defaults/rc.conf Should I set other ldconfig vars ? eg any of ldconfig_insecure ldconfig32_paths ldconfig_paths_aout ldconfig_local_dirs ldconfig_local32_dirs Should I be copying those libs somewhere else ? to a 32 directory maybe ? After ldconfig -R /compat/linux/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/lib on amd64 acroread click File Open (& dont get as far as selecting any file) I see libfam.so.0: cannot open shared object file: No such file or directory Failed to load module: /usr/lib/gio/modules/libgiofam.so (acroread:92034): GLib-GIO-WARNING **: Could not initialize inotify (acroread:92034): GLib-GIO-WARNING **: Could not initialize inotify (acroread:92034): Gtk-WARNING **: Unable to find default local directory monitor type (acroread:92034): Gtk-WARNING **: Unable to find default local directory monitor type On i386 just after clicking File libfam.so.0: cannot open shared object file: No such file or directory Failed to load module: /usr/lib/gio/modules/libgiofam.so (acroread:2360): GLib-GIO-WARNING **: Could not initialize inotify (acroread:2360): GLib-GIO-WARNING **: Could not initialize inotify (acroread:2360): Gtk-WARNING **: Unable to find default local directory monitor type Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com Reply below not above, cumulative like a play script, & indent with "> ". Format: Plain text. Not HTML, multipart/alternative, base64, quoted-printable. Mail from Yahoo & Hotmail to be dumped @Berklix. http://berklix.org/yahoo/ From owner-freebsd-emulation@FreeBSD.ORG Thu Aug 23 20:29:01 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AEF0A106566C; Thu, 23 Aug 2012 20:29:01 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 10B708FC0C; Thu, 23 Aug 2012 20:29:00 +0000 (UTC) Received: from outgoing.leidinger.net (p4FC41C8D.dip.t-dialin.net [79.196.28.141]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id 34F9084408B; Thu, 23 Aug 2012 22:28:42 +0200 (CEST) Received: from unknown (IO.Leidinger.net [192.168.1.12]) by outgoing.leidinger.net (Postfix) with ESMTPS id 9ABB411BA; Thu, 23 Aug 2012 22:28:39 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=leidinger.net; s=outgoing-alex; t=1345753719; bh=BXS1LTLpREUwAG4O5ekMiduuNzmacE9ODrs5wmfgd6I=; h=Date:From:To:Cc:Subject:In-Reply-To:References; b=S8o0f0poqoFBL30EkoZ6ns6/PZocJetQw71K2J3vSEJmXUkgFBg/mgzke10n4Wjh+ UjOEWroGnyvssj/G7X+TB/DrQLRxCKPu2o1Wk9cyPad6VVeUFiS/uTTuC3ZLSCfxxP S7o7RK7VJg5HZdVBJoBeFW/frbihMHYAahmiAASQLMeMlE4NcKU5DwXzaRvuhtNv2O wgVNjuob9euprhBM2rWB6lMX++oB7jyFhl1UlCnP+tJn3V/NJ7Qo+le3i6dCCsK0dH zvGtMngV9oHXogZcImGH41K9nnO7OEyRlN7WpHF/EKS+HpLNS1yqUOdXnIZxd77d6Q 8XFfr28NF7Tug== Date: Thu, 23 Aug 2012 22:28:38 +0200 From: Alexander Leidinger To: "Julian H. Stacey" Message-ID: <20120823222838.00007359@unknown> In-Reply-To: <201208231229.q7NCTnTc092147@fire.js.berklix.net> References: <20120823.090732.2097891423424508303.hrs@allbsd.org> <201208231229.q7NCTnTc092147@fire.js.berklix.net> X-Mailer: Claws Mail 3.8.0cvs30 (GTK+ 2.24.10; i586-pc-mingw32msvc) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: 34F9084408B.AF665 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-0.416, required 6, autolearn=disabled, ALL_TRUSTED -1.00, AWL 0.09, DKIM_SIGNED 0.10, DKIM_VALID -0.10, DKIM_VALID_AU -0.10, J_CHICKENPOX_62 0.60, T_RP_MATCHES_RCVD -0.01) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1346358522.6886@8gAMfGbUdwPFuMQZXAz41g X-EBL-Spam-Status: No Cc: freebsd-emulation@freebsd.org, Hiroki Sato Subject: Re: /usr/ports/print/acroread9 & ldd shared lib errors (fwd) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2012 20:29:01 -0000 On Thu, 23 Aug 2012 14:29:49 +0200 "Julian H. Stacey" wrote: Quick workaround: did you try acroread8? v9 is known to use syscalls which are not implemented (or do I mix 9 with 10... sorry, I don't take the time to lookup if we have 8 and 9 or 9 and 10). More inline below. > Hi, > Hiroki Sato wrote: > > "Julian H. Stacey" wrote > > > > jh> Hi hrs@FreeBSD.org, > > jh> Sorry, just realised I should have sent you a copy of this > > jh> > > jh> Forwarded from: "Julian Stacey" > > jh> http://www.berklix.com/~jhs/ ------- Forwarded Message > > jh> > > jh> To: freebsd-emulation@freebsd.org > > jh> Subject: /usr/ports/print/acroread9 & ldd shared lib errors > > jh> From: "Julian H. Stacey" > > jh> Organization: http://berklix.com BSD Unix Linux Consultancy, > > jh> Munich Germany User-agent: EXMH on FreeBSD > > jh> http://berklix.com/free/ X-URL: http://www.berklix.com > > jh> In-reply-to: Your message "Wed, 22 Aug 2012 18:41:06 +0200." > > jh> <20120822164106.GE4301@localhost> > > jh> Date: Thu, 23 Aug 2012 00:35:43 +0200 > > jh> Sender: jhs@fire.js.berklix.net > > jh> > > jh> Hi freebsd-emulation@ > > jh> I am trying to get current version of /usr/ports/print/acroread9 > > jh> to work on FreeBSD8.2-RELEASE src/ based systems, both i386 & > > jh> amd64 available here (also available: 8.3-REL & 9.0-REL amd64 > > jh> if necessary). > > jh> > > jh> I am seeing errors from ldd, shown on my > > jh> http://berklix.com/~jhs/src/bsd/fixes/FreeBSD/doc/en_US.ISO8859-1/books/handbook/linuxemu-adobe.html > > jh> > > jh> & request help/ suggestions. > > jh> Once I have this working, I'd happily smarten the page & then > > jh> send-p to help others. > > jh> > > jh> I have eg libBIB.so but not sure where to toss it ? > > jh> I currently have 2 copies even, in compat & local. > > > > I cannot understand what your problem is. acroread9 did not run on > > your system? > > Right, It starts, but various errors, both to invoking command line > & also to pop up windows, please see > > http://berklix.com/~jhs/src/bsd/fixes/FreeBSD/doc/en_US.ISO8859-1/books/handbook/linuxemu-adobe.html > > where I documented checking everything to see what was wrong, & found > ldd shows some libs are still unresolved per URL above: > i386 > libBIB.so => not found > amd64 > libBIB.so: cannot open shared object file > libs remained missing after > (cd /usr/local/Adobe/Reader9;tar cf - . > )|(cd /compat/linux/Adobe/Reader9 && tar xf - ) ldconfig > -R /compat/linux/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/lib > ldd /usr/local/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/bin/acroread Do not use the FreeBSD ldd, it does not search in the correct places. Do not use the FreeBSD ldconfig, it is not involved here. You need to run the linux ldd/ldconfig (best from a linux shell). > Please see my web page at text lines: > because per quote from `man ldconfig`: > Filenames must conform to the lib > > I or you in port could cludge those numeric failures, (rename, relink) > but is it necessary to ? > or should the Linux ABI/emulator work round it ? No. > I presume it's common for Linux to have .so.[0-9].[0.9] & FreeBSD to > use just .so.[0-9] So I guess FreeBSD might already have some > standard mapping mechanism for Linux lib names ? IIRC libtool handles this. > I dont know if acroread libs should be in /usr/local or /compat ? They shall be where the port places them. > I don't know if I should be setting more ldconfig vars in rc.conf ? At least not for the FreeBSD ldconfig. It's the linux ldconfig which is responsible here (or may the LD_LIBRARY_PATH, I haven't checked acroread9). Bye, Alexander. -- http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-emulation@FreeBSD.ORG Thu Aug 23 20:39:08 2012 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C3471065670 for ; Thu, 23 Aug 2012 20:39:08 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper.allbsd.org [IPv6:2001:2f0:104:e001::32]) by mx1.freebsd.org (Postfix) with ESMTP id 005518FC14 for ; Thu, 23 Aug 2012 20:39:07 +0000 (UTC) Received: from alph.allbsd.org (p2214-ipbf2707funabasi.chiba.ocn.ne.jp [123.225.119.214]) (authenticated bits=128) by mail.allbsd.org (8.14.5/8.14.5) with ESMTP id q7NKcj9B080281 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 24 Aug 2012 05:38:55 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) (authenticated bits=0) by alph.allbsd.org (8.14.5/8.14.5) with ESMTP id q7NKchHP087720; Fri, 24 Aug 2012 05:38:45 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Fri, 24 Aug 2012 05:37:39 +0900 (JST) Message-Id: <20120824.053739.488288018251233246.hrs@allbsd.org> To: jhs@berklix.com From: Hiroki Sato In-Reply-To: <201208231229.q7NCTnTc092147@fire.js.berklix.net> References: <20120823.090732.2097891423424508303.hrs@allbsd.org> <201208231229.q7NCTnTc092147@fire.js.berklix.net> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.5 on Emacs 23.4 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Fri_Aug_24_05_37_39_2012_293)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.97.4 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (mail.allbsd.org [133.31.130.32]); Fri, 24 Aug 2012 05:38:55 +0900 (JST) X-Spam-Status: No, score=-98.1 required=13.0 tests=CONTENT_TYPE_PRESENT, ONLY1HOPDIRECT, SAMEHELOBY2HOP, USER_IN_WHITELIST autolearn=no version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on gatekeeper.allbsd.org Cc: freebsd-emulation@FreeBSD.org Subject: Re: /usr/ports/print/acroread9 & ldd shared lib errors (fwd) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2012 20:39:08 -0000 ----Security_Multipart(Fri_Aug_24_05_37_39_2012_293)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit "Julian H. Stacey" wrote in <201208231229.q7NCTnTc092147@fire.js.berklix.net>: jh> > I cannot understand what your problem is. acroread9 did not run on jh> > your system? jh> jh> Right, It starts, but various errors, both to invoking command line jh> & also to pop up windows, please see Right? Even after reading your webpage, I am still not sure of what feature of the acroread did not work on your system. If it starts and you can use acroread, please ignore the errors displayed. Doing ldd for the acroread binary or adding $PREFIX/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/lib into ldconfig_path in rc.conf doesn't make sense. -- Hiroki ----Security_Multipart(Fri_Aug_24_05_37_39_2012_293)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (FreeBSD) iEYEABECAAYFAlA2lJQACgkQTyzT2CeTzy2TWQCgpxu5Oh53eIQD6/mUsomNcOsM N7YAoN3cdxkWGvGcHJuUUIQyVv9G6n2P =sFgZ -----END PGP SIGNATURE----- ----Security_Multipart(Fri_Aug_24_05_37_39_2012_293)---- From owner-freebsd-emulation@FreeBSD.ORG Thu Aug 23 21:24:54 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4B1C0106566B; Thu, 23 Aug 2012 21:24:54 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id A1FCF8FC0C; Thu, 23 Aug 2012 21:24:53 +0000 (UTC) Received: from mart.js.berklix.net (p57BCF578.dip.t-dialin.net [87.188.245.120]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id q7NLOoKq000779; Thu, 23 Aug 2012 21:24:51 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id q7NLOcRW011456; Thu, 23 Aug 2012 23:24:39 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.4/8.14.4) with ESMTP id q7NLOQK8097711; Thu, 23 Aug 2012 23:24:32 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201208232124.q7NLOQK8097711@fire.js.berklix.net> To: Alexander Leidinger From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Thu, 23 Aug 2012 22:28:38 +0200." <20120823222838.00007359@unknown> Date: Thu, 23 Aug 2012 23:24:26 +0200 Sender: jhs@berklix.com Cc: freebsd-emulation@freebsd.org, Hiroki Sato Subject: Re: /usr/ports/print/acroread9 & ldd shared lib errors (fwd) X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Aug 2012 21:24:54 -0000 > From: Alexander Leidinger > Date: Thu, 23 Aug 2012 22:28:38 +0200 > Message-id: <20120823222838.00007359@unknown> Alexander Leidinger wrote: > On Thu, 23 Aug 2012 14:29:49 +0200 "Julian H. Stacey" > wrote: > > Quick workaround: did you try acroread8? v9 is known to use syscalls > which are not implemented (or do I mix 9 with 10... sorry, I don't > take the time to lookup if we have 8 and 9 or 9 and 10). Thanks Alexander. Yes, the choice is current/ports/print/acroread[8-9], Yes, maybe I should try but unfortunately I probably need 9, as per http://www.hmrc.gov.uk/ct/ct-online/file-return/online-help.htm Click near base of page on "Filing your Company Tax Return online: a beginner's guide (PDF 2.1MB)" which goes to online-return.pdf online-return.pdf (published August 2011) Page 2 Last Paragraph: "You'll need to have Adobe Reader software version 9.2 or later installed on your computer to use all the functionality offered within the HMRC software. If you have an older version of Adobe reader, HMRC recommends that you download the latest version from the Adobe website before you download the HMRC software. Although the download is free, it may take up to 30 minutes to complete." (& The combo of HMRC .pdf + Adobe last year was So flakey (using rec. release of Adobe, not an older release, on MS OS) I didnt want to tempt fate further by trying to step back to use 8, though maybe later if desperate ) I had noticed the warning 8.2-RELEASE/ports/print/acroread9/Makefile pre-everything:: @${ECHO_CMD} "Try print/acroread8 instead if you need Adobe Reader." @${ECHO_CMD} "Currently acroread9 port does not work with X Window " @${ECHO_CMD} "System because of issues in FreeBSD's Linux emulation." is not in (chronologicaly ordered) 9.0-RELEASE & 8.3-RELEASE, & current so I've been using current ports/print/acroread9 Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com Reply below not above, cumulative like a play script, & indent with "> ". Format: Plain text. Not HTML, multipart/alternative, base64, quoted-printable. Mail from Yahoo & Hotmail to be dumped @Berklix. http://berklix.org/yahoo/ From owner-freebsd-emulation@FreeBSD.ORG Fri Aug 24 00:59:35 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C05F4106566B; Fri, 24 Aug 2012 00:59:35 +0000 (UTC) (envelope-from jhs@berklix.com) Received: from tower.berklix.org (tower.berklix.org [83.236.223.114]) by mx1.freebsd.org (Postfix) with ESMTP id 407FF8FC12; Fri, 24 Aug 2012 00:59:34 +0000 (UTC) Received: from mart.js.berklix.net (p57BCF578.dip.t-dialin.net [87.188.245.120]) (authenticated bits=0) by tower.berklix.org (8.14.2/8.14.2) with ESMTP id q7O0xRoC002144; Fri, 24 Aug 2012 00:59:27 GMT (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41]) by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id q7O0xF8n012296; Fri, 24 Aug 2012 02:59:15 +0200 (CEST) (envelope-from jhs@berklix.com) Received: from fire.js.berklix.net (localhost [127.0.0.1]) by fire.js.berklix.net (8.14.4/8.14.4) with ESMTP id q7O0x9oN003256; Fri, 24 Aug 2012 02:59:15 +0200 (CEST) (envelope-from jhs@fire.js.berklix.net) Message-Id: <201208240059.q7O0x9oN003256@fire.js.berklix.net> To: Hiroki Sato From: "Julian H. Stacey" Organization: http://berklix.com BSD Unix Linux Consultancy, Munich Germany User-agent: EXMH on FreeBSD http://berklix.com/free/ X-URL: http://www.berklix.com In-reply-to: Your message "Fri, 24 Aug 2012 05:37:39 +0900." <20120824.053739.488288018251233246.hrs@allbsd.org> Date: Fri, 24 Aug 2012 02:59:09 +0200 Sender: jhs@berklix.com Cc: freebsd-emulation@freebsd.org Subject: Re: /usr/ports/print/acroread9 & ldd shared lib errors X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 00:59:35 -0000 Hi Hiroki, Thanks for your reply, Hiroki Sato wrote: > > "Julian H. Stacey" wrote > in <201208231229.q7NCTnTc092147@fire.js.berklix.net>: > > jh> > I cannot understand what your problem is. acroread9 did not run on > jh> > your system? > jh> > jh> Right, It starts, but various errors, both to invoking command line > jh> & also to pop up windows, please see > > Right? Even after reading your webpage, I am still not sure of what > feature of the acroread did not work on your system. If it starts > and you can use acroread, please ignore the errors displayed. OK, trying again, then will report back. > Doing > ldd for the acroread binary or adding > $PREFIX/Adobe/Reader9/ENU/Adobe/Reader9/Reader/intellinux/lib into > ldconfig_path in rc.conf doesn't make sense. OK, good to know, thanks. Cheers, Julian -- Julian Stacey, BSD Unix Linux C Sys Eng Consultants Munich http://berklix.com Reply below not above, cumulative like a play script, & indent with "> ". Format: Plain text. Not HTML, multipart/alternative, base64, quoted-printable. Mail from Yahoo & Hotmail to be dumped @Berklix. http://berklix.org/yahoo/ From owner-freebsd-emulation@FreeBSD.ORG Fri Aug 24 11:32:28 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 73A18106564A for ; Fri, 24 Aug 2012 11:32:28 +0000 (UTC) (envelope-from guido@gvr.org) Received: from gvr.gvr.org (gvr-gw.gvr.org [82.161.93.240]) by mx1.freebsd.org (Postfix) with ESMTP id 305F28FC0C for ; Fri, 24 Aug 2012 11:32:27 +0000 (UTC) Received: by gvr.gvr.org (Postfix, from userid 657) id CB7846E5CF; Fri, 24 Aug 2012 13:32:20 +0200 (CEST) Date: Fri, 24 Aug 2012 13:32:20 +0200 From: Guido van Rooij To: freebsd-emulation@freebsd.org Message-ID: <20120824113220.GA8519@gvr.gvr.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: VirtualBox on FreeBSD host and Windows8 guest X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 11:32:28 -0000 Hi, I am trying to install Windows 8 in Virtualbox on a 32-bit FBSD host. (FreebSD 8.3 and VB 4.1.18). Windows refuses to install and this is due to NX not being present (it is enabled in the virtual machine settings). NX is also enabled in my bios as can be seen in the boot log of the FreeBSD host: CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2793.02-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 Features=0xbfebfbff Features2=0x408e3fd AMD Features=0x20100000 AMD Features2=0x1 TSC: P-state invariant When I create a new virtual machine with the xact same settings as the W8 host, and boot a FreeSBD installation CD, I see that none of the AMD features are exposed to the guest os: CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2883.13-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 Features=0x783fbff Features2=0x209 TSC: P-state invariant Is this just not supported, or is there a secret setting? -Guido From owner-freebsd-emulation@FreeBSD.ORG Fri Aug 24 13:10:29 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 48E981065673 for ; Fri, 24 Aug 2012 13:10:29 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-wi0-f170.google.com (mail-wi0-f170.google.com [209.85.212.170]) by mx1.freebsd.org (Postfix) with ESMTP id BF6178FC22 for ; Fri, 24 Aug 2012 13:10:28 +0000 (UTC) Received: by wibhq12 with SMTP id hq12so2831051wib.1 for ; Fri, 24 Aug 2012 06:10:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:sender:x-originating-ip:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=jmhnTa/h2sG46+it9qKwRa3R4FAofjFHf6rH3Wo1/Og=; b=H6u7Wpk3yMlbtm6blYAMF2Rb0pWOKQfN6nH6A6uS1lrsr5fnvkUUfWbD15NIX4yteL vkEdEqidu2KKO6GzCyEmnw2iNJm7UJMNJRm+un7f0HM0YTHamCvHt0vOHjE0Rw+tCoqx zoLM10CQkB8HKDTM4/x76nYlXhIundtiwFW5w= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:x-originating-ip:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :x-gm-message-state; bh=jmhnTa/h2sG46+it9qKwRa3R4FAofjFHf6rH3Wo1/Og=; b=OMWJXupT+l8BYXospRsoCRHB5+kJtKqEuEdnEdlgtdX9pJZ9I798cOmL/iuqb22nQ+ VNo/6cduNLSUxedNlKHRLX2PbDvylg9UZMMonrDUGDh9ole+1m1AXAd3oL5/DlA82GEa L7XpRapLY57JhyCqkENLPbgzbuKkpNfoVYMbsm4CKTCnRq0x+zWsqtJX9TVrx86FxIz7 KL/Wyw72YY5fk6Cte4z861K3kvTBLwnzpJ+Ri5DN6oEe1I3Mbbi1KmPgreExEMCfCpgL fLycTXIEIYdJZzoYlRxCsRnSS6K+uBMi/XMrXxhnfQazCydgGUZG9kFmHtGoMGa6q0Sv aIjQ== MIME-Version: 1.0 Received: by 10.216.131.13 with SMTP id l13mr2730649wei.195.1345813822274; Fri, 24 Aug 2012 06:10:22 -0700 (PDT) Sender: decke@bluelife.at Received: by 10.180.90.15 with HTTP; Fri, 24 Aug 2012 06:10:22 -0700 (PDT) X-Originating-IP: [80.123.233.199] In-Reply-To: <20120824113220.GA8519@gvr.gvr.org> References: <20120824113220.GA8519@gvr.gvr.org> Date: Fri, 24 Aug 2012 15:10:22 +0200 X-Google-Sender-Auth: 8Mci5Sm-YYRv4GppNY82lVVY5pU Message-ID: From: =?ISO-8859-1?Q?Bernhard_Fr=F6hlich?= To: Guido van Rooij Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQntEhAaAYeMgugOyyWKWE4pVWLARmJUWWzZ8OM9JR7QChPTxpXMguiV/oji4qs+hRNa1XNy Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox on FreeBSD host and Windows8 guest X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 13:10:29 -0000 On Fri, Aug 24, 2012 at 1:32 PM, Guido van Rooij wrote: > Hi, > > I am trying to install Windows 8 in Virtualbox on a 32-bit FBSD host. > (FreebSD 8.3 and VB 4.1.18). > > Windows refuses to install and this is due to NX not being present (it > is enabled in the virtual machine settings). NX is also enabled in my > bios as can be seen in the boot log of the FreeBSD host: > CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2793.02-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 > Features=0xbfebfbff > Features2=0x408e3fd > AMD Features=0x20100000 > AMD Features2=0x1 > TSC: P-state invariant > > When I create a new virtual machine with the xact same settings as the W8 host, > and boot a FreeSBD installation CD, I see that none of the AMD features are > exposed to the guest os: > CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2883.13-MHz 686-class CPU) > Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 > Features=0x783fbff > Features2=0x209 > TSC: P-state invariant > > Is this just not supported, or is there a secret setting? There are knobs in the processor tab in the GUI for that. http://www.virtualbox.org/manual/ch03.html#settings-processor -- Bernhard Froehlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Fri Aug 24 13:19:16 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 982C4106566C; Fri, 24 Aug 2012 13:19:16 +0000 (UTC) (envelope-from guido@gvr.org) Received: from gvr.gvr.org (gvr-gw.gvr.org [82.161.93.240]) by mx1.freebsd.org (Postfix) with ESMTP id 4EFCF8FC0C; Fri, 24 Aug 2012 13:19:16 +0000 (UTC) Received: by gvr.gvr.org (Postfix, from userid 657) id D44416E5CF; Fri, 24 Aug 2012 15:19:14 +0200 (CEST) Date: Fri, 24 Aug 2012 15:19:14 +0200 From: Guido van Rooij To: Bernhard =?iso-8859-15?Q?Fr=F6hlich?= Message-ID: <20120824131914.GA9628@gvr.gvr.org> References: <20120824113220.GA8519@gvr.gvr.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox on FreeBSD host and Windows8 guest X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 13:19:16 -0000 On Fri, Aug 24, 2012 at 03:10:22PM +0200, Bernhard Fröhlich wrote: > On Fri, Aug 24, 2012 at 1:32 PM, Guido van Rooij wrote: > > Hi, > > > > I am trying to install Windows 8 in Virtualbox on a 32-bit FBSD host. > > (FreebSD 8.3 and VB 4.1.18). > > > > Windows refuses to install and this is due to NX not being present (it > > is enabled in the virtual machine settings). NX is also enabled in my > > bios as can be seen in the boot log of the FreeBSD host: > > CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2793.02-MHz 686-class CPU) > > Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 > > Features=0xbfebfbff > > Features2=0x408e3fd > > AMD Features=0x20100000 > > AMD Features2=0x1 > > TSC: P-state invariant > > > > When I create a new virtual machine with the xact same settings as the W8 host, > > and boot a FreeSBD installation CD, I see that none of the AMD features are > > exposed to the guest os: > > CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2883.13-MHz 686-class CPU) > > Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 > > Features=0x783fbff > > Features2=0x209 > > TSC: P-state invariant > > > > Is this just not supported, or is there a secret setting? > > There are knobs in the processor tab in the GUI for that. > Enable PAE/NX is set. Vt-x/AMD-V is set Nesting paging is set. So the knowbs are set correctly, yet no NX. -Guido From owner-freebsd-emulation@FreeBSD.ORG Fri Aug 24 13:53:55 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E1D11106564A for ; Fri, 24 Aug 2012 13:53:54 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail-we0-f182.google.com (mail-we0-f182.google.com [74.125.82.182]) by mx1.freebsd.org (Postfix) with ESMTP id 648998FC08 for ; Fri, 24 Aug 2012 13:53:54 +0000 (UTC) Received: by weyx56 with SMTP id x56so7425937wey.13 for ; Fri, 24 Aug 2012 06:53:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bluelife.at; s=google; h=mime-version:sender:x-originating-ip:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=ZWUP0EvkP9MX8oFQxZIVs6aW75bs7pYXEg5Z3eJhZM8=; b=XNT1MWf+WIH/xzXl9NNJ4r5JUno1gOMKcJ6B83WInqCYhM1hLkbw3tDVTr7ohk+hW+ wX0ieHU4tJi0gfpVevbdFkDToNAGukunxP6PqYjIbbzd6vBe//AINjhLDnqGakToiJ5X 9imL9AjQuVYJ9y1MA3iQRIscfnNUcic/Uzo9o= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:sender:x-originating-ip:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding:x-gm-message-state; bh=ZWUP0EvkP9MX8oFQxZIVs6aW75bs7pYXEg5Z3eJhZM8=; b=B6X0onaaP3GusiZdHj3RrnYZCe5ePVcEcC2MA8e3QZm/vxcgmqu118nf9pGFwI74Ba ZXkUw7ONflR8oJPJXx6ZiD3QdGIuPmtRPltHAZQGZd+cx5DjFu4md9Op/S63Mmrr+fp4 +JnZjMzmO3NbZCs5aNTdEunJPpaYwUeSNdIZHMdQAzNd80YjuAP3a/DQOhQsf73XSdtN VVUb2sZ/0HctorDVwRBziiFO+pyCsLcPo/NRyFS1gCk3XibgmrfOYBUGl8mE0xONRBzi BGgSesiVAHUzum7Ji3+bUInkC0f+i+yuhqVYMM6A+7Chzt38XjUtlBfWEW2PkFwGbtiJ JJ0w== MIME-Version: 1.0 Received: by 10.216.131.13 with SMTP id l13mr2789182wei.195.1345816433348; Fri, 24 Aug 2012 06:53:53 -0700 (PDT) Sender: decke@bluelife.at Received: by 10.180.90.15 with HTTP; Fri, 24 Aug 2012 06:53:53 -0700 (PDT) X-Originating-IP: [80.123.233.199] In-Reply-To: <20120824131914.GA9628@gvr.gvr.org> References: <20120824113220.GA8519@gvr.gvr.org> <20120824131914.GA9628@gvr.gvr.org> Date: Fri, 24 Aug 2012 15:53:53 +0200 X-Google-Sender-Auth: W4SfgXuA3gW-PdV7cjP7X2P-a3o Message-ID: From: =?ISO-8859-1?Q?Bernhard_Fr=F6hlich?= To: Guido van Rooij Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Gm-Message-State: ALoCoQnoqCfxTQl/XsCGt57LdEK82uJp4pfqFyn+YN5/m3PrRdzolbl5BWROcv82iVRQowJuIQJ7 Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox on FreeBSD host and Windows8 guest X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 13:53:55 -0000 On Fri, Aug 24, 2012 at 3:19 PM, Guido van Rooij wrote: > On Fri, Aug 24, 2012 at 03:10:22PM +0200, Bernhard Fr=F6hlich wrote: >> On Fri, Aug 24, 2012 at 1:32 PM, Guido van Rooij wro= te: >> > Hi, >> > >> > I am trying to install Windows 8 in Virtualbox on a 32-bit FBSD host. >> > (FreebSD 8.3 and VB 4.1.18). >> > >> > Windows refuses to install and this is due to NX not being present (it >> > is enabled in the virtual machine settings). NX is also enabled in my >> > bios as can be seen in the boot log of the FreeBSD host: >> > CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2793.02-MHz 686-= class CPU) >> > Origin =3D "GenuineIntel" Id =3D 0x1067a Family =3D 6 Model =3D 1= 7 Stepping =3D 10 >> > Features=3D0xbfebfbff >> > Features2=3D0x408e3fd >> > AMD Features=3D0x20100000 >> > AMD Features2=3D0x1 >> > TSC: P-state invariant >> > >> > When I create a new virtual machine with the xact same settings as the= W8 host, >> > and boot a FreeSBD installation CD, I see that none of the AMD feature= s are >> > exposed to the guest os: >> > CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2883.13-MHz 686-= class CPU) >> > Origin =3D "GenuineIntel" Id =3D 0x1067a Family =3D 6 Model =3D 1= 7 Stepping =3D 10 >> > Features=3D0x783fbff >> > Features2=3D0x209 >> > TSC: P-state invariant >> > >> > Is this just not supported, or is there a secret setting? >> >> There are knobs in the processor tab in the GUI for that. >> > > Enable PAE/NX is set. > Vt-x/AMD-V is set > Nesting paging is set. > > So the knowbs are set correctly, yet no NX. Have a look at your VBox.log and check what it says. --=20 Bernhard Froehlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Fri Aug 24 14:13:47 2012 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28BCF106566B; Fri, 24 Aug 2012 14:13:47 +0000 (UTC) (envelope-from guido@gvr.org) Received: from gvr.gvr.org (gvr-gw.gvr.org [82.161.93.240]) by mx1.freebsd.org (Postfix) with ESMTP id 7728C8FC19; Fri, 24 Aug 2012 14:13:45 +0000 (UTC) Received: by gvr.gvr.org (Postfix, from userid 657) id 633DB6E5D1; Fri, 24 Aug 2012 16:13:44 +0200 (CEST) Date: Fri, 24 Aug 2012 16:13:44 +0200 From: Guido van Rooij To: Bernhard =?iso-8859-15?Q?Fr=F6hlich?= Message-ID: <20120824141343.GA10212@gvr.gvr.org> References: <20120824113220.GA8519@gvr.gvr.org> <20120824131914.GA9628@gvr.gvr.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox on FreeBSD host and Windows8 guest X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 24 Aug 2012 14:13:47 -0000 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Fri, Aug 24, 2012 at 03:53:53PM +0200, Bernhard Fröhlich wrote: > On Fri, Aug 24, 2012 at 3:19 PM, Guido van Rooij wrote: > > On Fri, Aug 24, 2012 at 03:10:22PM +0200, Bernhard Fröhlich wrote: > >> On Fri, Aug 24, 2012 at 1:32 PM, Guido van Rooij wrote: > >> > Hi, > >> > > >> > I am trying to install Windows 8 in Virtualbox on a 32-bit FBSD host. > >> > (FreebSD 8.3 and VB 4.1.18). > >> > > >> > Windows refuses to install and this is due to NX not being present (it > >> > is enabled in the virtual machine settings). NX is also enabled in my > >> > bios as can be seen in the boot log of the FreeBSD host: > >> > CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2793.02-MHz 686-class CPU) > >> > Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 > >> > Features=0xbfebfbff > >> > Features2=0x408e3fd > >> > AMD Features=0x20100000 > >> > AMD Features2=0x1 > >> > TSC: P-state invariant > >> > > >> > When I create a new virtual machine with the xact same settings as the W8 host, > >> > and boot a FreeSBD installation CD, I see that none of the AMD features are > >> > exposed to the guest os: > >> > CPU: Intel(R) Core(TM)2 Duo CPU P9700 @ 2.80GHz (2883.13-MHz 686-class CPU) > >> > Origin = "GenuineIntel" Id = 0x1067a Family = 6 Model = 17 Stepping = 10 > >> > Features=0x783fbff > >> > Features2=0x209 > >> > TSC: P-state invariant > >> > > >> > Is this just not supported, or is there a secret setting? > >> > >> There are knobs in the processor tab in the GUI for that. > >> > > > > Enable PAE/NX is set. > > Vt-x/AMD-V is set > > Nesting paging is set. > > > > So the knowbs are set correctly, yet no NX. > > Have a look at your VBox.log and check what it says. Attached is the log. You can see that it seems to go wrong here: 00:00:01.388 RAW Extended CPUIDs 00:00:01.388 Function eax ebx ecx edx 00:00:01.388 Gst: 80000000 80000008 00000000 00000000 00000000 00:00:01.388 Hst: 80000008 00000000 00000000 00000000 00:00:01.388 Gst: 80000001 00000000 00000000 00000000 00000000 00:00:01.388 Hst: 00000000 00000000 00000001 20100000 The PAE option is set: 00:00:01.382 EnablePAE = 0x0000000000000001 (1) and: 00:00:01.388 CPUMSetGuestCpuIdFeature: Enabled PAE -Guido --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="VBox.log" Content-Transfer-Encoding: quoted-printable VirtualBox 4.1.18_OSE r78361 freebsd.x86 (Aug 21 2012 13:04:51) release log 00:00:00.860 Log opened 2012-08-24T10:41:38.473494000Z 00:00:00.860 OS Product: FreeBSD 00:00:00.860 OS Release: 8.2-RELEASE-p6 00:00:00.860 OS Version: FreeBSD 8.2-RELEASE-p6 #6: Thu Feb 9 20:46:16 CET= 2012 guido@beck.gvr.org:/usr/obj/usr/src/sys/MOUSE 00:00:00.860 Host RAM: 3547MB RAM, available: 2615MB 00:00:00.860 Executable: /usr/local/lib/virtualbox/VirtualBox 00:00:00.860 Process ID: 3132 00:00:00.860 Package type: BSD_32BITS_GENERIC (OSE) 00:00:00.863 Installed Extension Packs: 00:00:00.863 None installed! 00:00:00.872 SUP: Loaded VMMR0.r0 (/usr/local/lib/virtualbox/VMMR0.r0) at 0= xca192020 - ModuleInit at 00000000ca1a8f70 and ModuleTerm at 00000000ca1a8f= 40 00:00:00.872 SUP: VMMR0EntryEx located at 00000000ca1a8e00, VMMR0EntryFast = at 00000000ca1a9000 and VMMR0EntryInt at 00000000ca1a7dd0 00:00:00.880 Using XKB for keycode to scan code conversion 00:00:00.978 File system of '/home/guido/VirtualBox VMs/w8 beta/Snapshots' = (snapshots) is unknown 00:00:00.978 File system of '/home/guido/VirtualBox VMs/w8 beta/w8 beta.vdi= ' is ufs 00:00:00.997 VBoxSharedClipboard mode: Bidirectional 00:00:01.377 OpenGL Info: Render SPU: GL_VENDOR: NVIDIA Corporation 00:00:01.377 OpenGL Info: Render SPU: GL_RENDERER: Quadro NVS 160M/PCIe/SSE2 00:00:01.377 OpenGL Info: Render SPU: GL_VERSION: 3.3.0 NVIDIA 295.49 00:00:01.377 OpenGL Info: Render SPU: GL_EXTENSIONS: GL_ARB_base_instance G= L_ARB_blend_func_extended GL_ARB_color_buffer_float GL_ARB_compatibility GL= _ARB_compressed_texture_pixel_storage GL_ARB_conservative_depth GL_ARB_copy= _buffer GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture G= L_ARB_draw_buffers GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced G= L_ARB_ES2_compatibility GL_ARB_explicit_attrib_location GL_ARB_fragment_coo= rd_conventions GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_AR= B_fragment_shader GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_= geometry_shader4 GL_ARB_get_program_binary GL_ARB_half_float_pixel GL_ARB_h= alf_float_vertex GL_ARB_imaging GL_ARB_instanced_arrays GL_ARB_internalform= at_query GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multisa= mple GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_= ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_= provoking_vertex GL_ARB_robustness GL_ARB_sampler_objects GL_ARB_seamless_c= ube_map GL_ARB_separate_shader_objects GL_ARB_shader_bit_encoding GL_ARB_sh= ader_objects GL_ARB_shading_language_100 GL_ARB_shading_language_420pack GL= _ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_shadow= GL_ARB_sync GL_ARB_texture_border_clamp GL_ARB_texture_buffer_object GL_AR= B_texture_compression GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_m= ap GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_cro= ssbar GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_mirrored_= repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_te= xture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_= storage GL_ARB_texture_swizzle GL_ARB_timer_query GL_ARB_transpose_matrix G= L_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_ob= ject GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader= GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ARB_window_pos = GL_ATI_draw_buffers GL_ATI_texture_float GL_ATI_texture_mirror_once GL_S3_s= 3tc GL_EXT_texture_env_add GL_EXT_abgr GL_EXT_bgra GL_EXT_bindable_uniform = GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separat= e GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL= _EXT_Cg_shader GL_EXT_depth_bounds_test GL_EXT_direct_state_access GL_EXT_d= raw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_co= ord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXTX_framebuf= fer_mixed_formats GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_= geometry_shader4 GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_mu= lti_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_pack= ed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_provoki= ng_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_shad= er_objects GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stenci= l_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_array GL_EXT= _texture_buffer_object GL_EXT_texture_compression_dxt1 GL_EXT_texture_compr= ession_latc GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc= GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combi= ne GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture= _format_BGRA8888 GL_EXT_texture_integer GL_EXT_texture_lod GL_EXT_texture_l= od_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_sh= ared_exponent GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture= _storage GL_EXT_texture_swizzle GL_EXT_texture_type_2_10_10_10_REV GL_EXT_t= imer_query GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_EXT_x11_sync_obj= ect GL_EXT_import_sync_object GL_IBM_rasterpos_clip GL_IBM_texture_mirrored= _repeat GL_KTX_buffer_region GL_NV_alpha_test GL_NV_blend_minmax GL_NV_blen= d_square GL_NV_complex_primitives GL_NV_conditional_render GL_NV_copy_depth= _to_color GL_NV_copy_image GL_NV_depth_buffer_float GL_NV_depth_clamp GL_NV= _explicit_multisample GL_NV_fbo_color_attachments GL_NV_fence GL_NV_float_b= uffer GL_NV_fog_distance GL_NV_fragdepth GL_NV_fragment_program GL_NV_fragm= ent_program_option GL_NV_fragment_program2 GL_NV_framebuffer_multisample_co= verage GL_NV_geometry_shader4 GL_NV_gpu_program4 GL_NV_half_float GL_NV_lig= ht_max_exponent GL_NV_multisample_coverage GL_NV_multisample_filter_hint GL= _NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_parameter_buffer_objec= t GL_NV_parameter_buffer_object2 GL_NV_path_rendering GL_NV_pixel_data_rang= e GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV= _register_combiners2 GL_NV_shader_buffer_load GL_NV_texgen_reflection GL_NV= _texture_barrier GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 G= L_NV_texture_expand_normal GL_NV_texture_lod_clamp GL_NV_texture_multisampl= e GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_= texture_shader3 GL_NV_transform_feedback GL_NV_vdpau_interop GL_NV_vertex_a= rray_range GL_NV_vertex_array_range2 GL_NV_vertex_buffer_unified_memory GL_= NV_vertex_program GL_NV_vertex_program1_1 GL_NV_vertex_program2 GL_NV_verte= x_program2_option GL_NV_vertex_program3 GL_NVX_conditional_render GL_NVX_gp= u_memory_info GL_OES_depth24 GL_OES_depth32 GL_OES_depth_texture GL_OES_ele= ment_index_uint GL_OES_fbo_render_mipmap GL_OES_get_program_binary GL_OES_m= apbuffer GL_OES_packed_depth_stencil GL_OES_rgb8_rgba8 GL_OES_standard_deri= vatives GL_OES_texture_3D GL_OES_texture_float GL_OES_texture_float_linear = GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_OES_texture_n= pot GL_OES_vertex_array_object GL_OES_vertex_half_float GL_SGIS_generate_mi= pmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_= accum=20 00:00:01.379 OpenGL Info: Render SPU: GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB= =3D4096 00:00:01.379 Shared crOpenGL service loaded. 00:00:01.382 ************************* CFGM dump ************************* 00:00:01.382 [/] (level 0) 00:00:01.382 CSAMEnabled =3D 0x0000000000000001 (1) 00:00:01.382 CpuExecutionCap =3D 0x0000000000000064 (100) 00:00:01.382 EnablePAE =3D 0x0000000000000001 (1) 00:00:01.382 HwVirtExtForced =3D 0x0000000000000001 (1) 00:00:01.382 MemBalloonSize =3D 0x0000000000000000 (0) 00:00:01.382 Name =3D "w8 beta" (cb=3D8) 00:00:01.382 NumCPUs =3D 0x0000000000000002 (2) 00:00:01.382 PATMEnabled =3D 0x0000000000000001 (1) 00:00:01.382 PageFusion =3D 0x0000000000000000 (0) 00:00:01.382 RamHoleSize =3D 0x0000000020000000 (536 870 91= 2, 512 MB) 00:00:01.382 RamSize =3D 0x0000000040000000 (1 073 741 = 824, 1 024 MB) 00:00:01.382 RawR0Enabled =3D 0x0000000000000001 (1) 00:00:01.382 RawR3Enabled =3D 0x0000000000000001 (1) 00:00:01.382 TimerMillies =3D 0x000000000000000a (10) 00:00:01.382 UUID =3D "a4 54 ea 05 df a4 0c 42 a2 09= 38 86 03 55 9b 15" (cb=3D16) 00:00:01.382=20 00:00:01.382 [/CPUM/] (level 1) 00:00:01.382 SyntheticCpu =3D 0x0000000000000000 (0) 00:00:01.382=20 00:00:01.382 [/Devices/] (level 1) 00:00:01.382=20 00:00:01.382 [/Devices/8237A/] (level 2) 00:00:01.382=20 00:00:01.382 [/Devices/8237A/0/] (level 3) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/AudioSniffer/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/AudioSniffer/0/] (level 3) 00:00:01.383=20 00:00:01.383 [/Devices/AudioSniffer/0/Config/] (level 4) 00:00:01.383=20 00:00:01.383 [/Devices/AudioSniffer/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "MainAudioSniffer" (cb=3D17) 00:00:01.383=20 00:00:01.383 [/Devices/AudioSniffer/0/LUN#0/Config/] (level 5) 00:00:01.383 Object =3D 0x000000002ee657d0 (786 847 696) 00:00:01.383=20 00:00:01.383 [/Devices/VMMDev/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/VMMDev/0/] (level 3) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x0000000000000004 (4) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000000 (0) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/VMMDev/0/Config/] (level 4) 00:00:01.383 GuestCoreDumpDir =3D "/home/guido/VirtualBox VMs/w= 8 beta/Snapshots" (cb=3D45) 00:00:01.383 RamSize =3D 0x0000000040000000 (1 073 741= 824, 1 024 MB) 00:00:01.383=20 00:00:01.383 [/Devices/VMMDev/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "HGCM" (cb=3D5) 00:00:01.383=20 00:00:01.383 [/Devices/VMMDev/0/LUN#0/Config/] (level 5) 00:00:01.383 Object =3D 0x000000002f1fdf20 (790 617 888) 00:00:01.383=20 00:00:01.383 [/Devices/VMMDev/0/LUN#999/] (level 4) 00:00:01.383 Driver =3D "MainStatus" (cb=3D11) 00:00:01.383=20 00:00:01.383 [/Devices/VMMDev/0/LUN#999/Config/] (level 5) 00:00:01.383 First =3D 0x0000000000000000 (0) 00:00:01.383 Last =3D 0x0000000000000000 (0) 00:00:01.383 papLeds =3D 0x000000002ee94c0c (787 041 292) 00:00:01.383=20 00:00:01.383 [/Devices/acpi/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/acpi/0/] (level 3) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x0000000000000007 (7) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000000 (0) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/acpi/0/Config/] (level 4) 00:00:01.383 CpuHotPlug =3D 0x0000000000000000 (0) 00:00:01.383 FdcEnabled =3D 0x0000000000000000 (0) 00:00:01.383 HostBusPciAddress =3D 0x0000000000000000 (0) 00:00:01.383 HpetEnabled =3D 0x0000000000000000 (0) 00:00:01.383 IOAPIC =3D 0x0000000000000001 (1) 00:00:01.383 IocPciAddress =3D 0x0000000000010000 (65 536) 00:00:01.383 NumCPUs =3D 0x0000000000000002 (2) 00:00:01.383 RamHoleSize =3D 0x0000000020000000 (536 870 = 912, 512 MB) 00:00:01.383 RamSize =3D 0x0000000040000000 (1 073 74= 1 824, 1 024 MB) 00:00:01.383 Serial0IoPortBase =3D 0x0000000000000000 (0) 00:00:01.383 Serial0Irq =3D 0x0000000000000000 (0) 00:00:01.383 Serial1IoPortBase =3D 0x0000000000000000 (0) 00:00:01.383 Serial1Irq =3D 0x0000000000000000 (0) 00:00:01.383 ShowCpu =3D 0x0000000000000001 (1) 00:00:01.383 ShowRtc =3D 0x0000000000000000 (0) 00:00:01.383 SmcEnabled =3D 0x0000000000000000 (0) 00:00:01.383=20 00:00:01.383 [/Devices/acpi/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "ACPIHost" (cb=3D9) 00:00:01.383=20 00:00:01.383 [/Devices/acpi/0/LUN#0/Config/] (level 5) 00:00:01.383=20 00:00:01.383 [/Devices/acpi/0/LUN#1/] (level 4) 00:00:01.383 Driver =3D "ACPICpu" (cb=3D8) 00:00:01.383=20 00:00:01.383 [/Devices/acpi/0/LUN#1/Config/] (level 5) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/] (level 3) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x000000000000000d (13) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000000 (0) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/Config/] (level 4) 00:00:01.383 Bootable =3D 0x0000000000000001 (1) 00:00:01.383 PortCount =3D 0x0000000000000001 (1) 00:00:01.383 PrimaryMaster =3D 0x0000000000000000 (0) 00:00:01.383 PrimarySlave =3D 0x0000000000000001 (1) 00:00:01.383 SecondaryMaster =3D 0x0000000000000002 (2) 00:00:01.383 SecondarySlave =3D 0x0000000000000003 (3) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/Config/Port0/] (level 5) 00:00:01.383 NonRotationalMedium =3D 0x0000000000000000 (0) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "Block" (cb=3D6) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/LUN#0/AttachedDriver/] (level 5) 00:00:01.383 Driver =3D "VD" (cb=3D3) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/LUN#0/AttachedDriver/Config/] (level 6) 00:00:01.383 BlockCache =3D 0x0000000000000001 (1) 00:00:01.383 Format =3D "VDI" (cb=3D4) 00:00:01.383 Path =3D "/home/guido/VirtualBox VMs/w8 beta= /w8 beta.vdi" (cb=3D47) 00:00:01.383 Type =3D "HardDisk" (cb=3D9) 00:00:01.383 UseNewIo =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/LUN#0/Config/] (level 5) 00:00:01.383 Mountable =3D 0x0000000000000000 (0) 00:00:01.383 Type =3D "HardDisk" (cb=3D9) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/LUN#999/] (level 4) 00:00:01.383 Driver =3D "MainStatus" (cb=3D11) 00:00:01.383=20 00:00:01.383 [/Devices/ahci/0/LUN#999/Config/] (level 5) 00:00:01.383 DeviceInstance =3D "ahci/0" (cb=3D7) 00:00:01.383 First =3D 0x0000000000000000 (0) 00:00:01.383 Last =3D 0x0000000000000000 (0) 00:00:01.383 pConsole =3D 0x000000002ee94900 (787 = 040 512) 00:00:01.383 papLeds =3D 0x000000002ee94b14 (787 = 041 044) 00:00:01.383 pmapMediumAttachments =3D 0x000000002ee94c18 (787 = 041 304) 00:00:01.383=20 00:00:01.383 [/Devices/apic/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/apic/0/] (level 3) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/apic/0/Config/] (level 4) 00:00:01.383 IOAPIC =3D 0x0000000000000001 (1) 00:00:01.383 NumCPUs =3D 0x0000000000000002 (2) 00:00:01.383=20 00:00:01.383 [/Devices/e1000/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/e1000/0/] (level 3) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x0000000000000003 (3) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000000 (0) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/e1000/0/Config/] (level 4) 00:00:01.383 AdapterType =3D 0x0000000000000000 (0) 00:00:01.383 CableConnected =3D 0x0000000000000001 (1) 00:00:01.383 LineSpeed =3D 0x0000000000000000 (0) 00:00:01.383 MAC =3D "08 00 27 05 70 35" (cb=3D6) 00:00:01.383=20 00:00:01.383 [/Devices/e1000/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "NAT" (cb=3D4) 00:00:01.383=20 00:00:01.383 [/Devices/e1000/0/LUN#0/Config/] (level 5) 00:00:01.383 AliasMode =3D 0x0000000000000000 (0) 00:00:01.383 BootFile =3D "w8 beta.pxe" (cb=3D12) 00:00:01.383 DNSProxy =3D 0x0000000000000000 (0) 00:00:01.383 Network =3D "10.0.2.0/24" (cb=3D12) 00:00:01.383 PassDomain =3D 0x0000000000000001 (1) 00:00:01.383 TFTPPrefix =3D "/home/guido/.VirtualBox/TFTP"= (cb=3D29) 00:00:01.383 UseHostResolver =3D 0x0000000000000000 (0) 00:00:01.383=20 00:00:01.383 [/Devices/e1000/0/LUN#999/] (level 4) 00:00:01.383 Driver =3D "MainStatus" (cb=3D11) 00:00:01.383=20 00:00:01.383 [/Devices/e1000/0/LUN#999/Config/] (level 5) 00:00:01.383 First =3D 0x0000000000000000 (0) 00:00:01.383 Last =3D 0x0000000000000000 (0) 00:00:01.383 papLeds =3D 0x000000002ee94bec (787 041 260) 00:00:01.383=20 00:00:01.383 [/Devices/hda/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/hda/0/] (level 3) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x0000000000000005 (5) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000000 (0) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/hda/0/Config/] (level 4) 00:00:01.383=20 00:00:01.383 [/Devices/hda/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "AUDIO" (cb=3D6) 00:00:01.383=20 00:00:01.383 [/Devices/hda/0/LUN#0/Config/] (level 5) 00:00:01.383 AudioDriver =3D "oss" (cb=3D4) 00:00:01.383 StreamName =3D "w8 beta" (cb=3D8) 00:00:01.383=20 00:00:01.383 [/Devices/i8254/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/i8254/0/] (level 3) 00:00:01.383=20 00:00:01.383 [/Devices/i8254/0/Config/] (level 4) 00:00:01.383=20 00:00:01.383 [/Devices/i8259/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/i8259/0/] (level 3) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/i8259/0/Config/] (level 4) 00:00:01.383=20 00:00:01.383 [/Devices/ioapic/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/ioapic/0/] (level 3) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/ioapic/0/Config/] (level 4) 00:00:01.383 NumCPUs =3D 0x0000000000000002 (2) 00:00:01.383=20 00:00:01.383 [/Devices/mc146818/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/mc146818/0/] (level 3) 00:00:01.383=20 00:00:01.383 [/Devices/mc146818/0/Config/] (level 4) 00:00:01.383 UseUTC =3D 0x0000000000000000 (0) 00:00:01.383=20 00:00:01.383 [/Devices/parallel/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/pcarch/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/pcarch/0/] (level 3) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/pcarch/0/Config/] (level 4) 00:00:01.383=20 00:00:01.383 [/Devices/pcbios/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/pcbios/0/] (level 3) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/pcbios/0/Config/] (level 4) 00:00:01.383 BootDevice0 =3D "DVD" (cb=3D4) 00:00:01.383 BootDevice1 =3D "IDE" (cb=3D4) 00:00:01.383 BootDevice2 =3D "NONE" (cb=3D5) 00:00:01.383 BootDevice3 =3D "NONE" (cb=3D5) 00:00:01.383 FloppyDevice =3D "i82078" (cb=3D7) 00:00:01.383 HardDiskDevice =3D "piix3ide" (cb=3D9) 00:00:01.383 IOAPIC =3D 0x0000000000000001 (1) 00:00:01.383 McfgBase =3D 0x0000000000000000 (0) 00:00:01.383 McfgLength =3D 0x0000000000000000 (0) 00:00:01.383 NumCPUs =3D 0x0000000000000002 (2) 00:00:01.383 PXEDebug =3D 0x0000000000000000 (0) 00:00:01.383 RamHoleSize =3D 0x0000000020000000 (536= 870 912, 512 MB) 00:00:01.383 RamSize =3D 0x0000000040000000 (1 0= 73 741 824, 1 024 MB) 00:00:01.383 SataHardDiskDevice =3D "ahci" (cb=3D5) 00:00:01.383 SataPrimaryMasterLUN =3D 0x0000000000000000 (0) 00:00:01.383 SataPrimarySlaveLUN =3D 0x0000000000000001 (1) 00:00:01.383 SataSecondaryMasterLUN =3D 0x0000000000000002 (2) 00:00:01.383 SataSecondarySlaveLUN =3D 0x0000000000000003 (3) 00:00:01.383 UUID =3D "a4 54 ea 05 df a4 0c 4= 2 a2 09 38 86 03 55 9b 15" (cb=3D16) 00:00:01.383=20 00:00:01.383 [/Devices/pcbios/0/Config/NetBoot/] (level 5) 00:00:01.383=20 00:00:01.383 [/Devices/pcbios/0/Config/NetBoot/0/] (level 6) 00:00:01.383 NIC =3D 0x0000000000000000 (0) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x0000000000000003 (3) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000000 (0) 00:00:01.383=20 00:00:01.383 [/Devices/pci/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/pci/0/] (level 3) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/pci/0/Config/] (level 4) 00:00:01.383 IOAPIC =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/] (level 3) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/Config/] (level 4) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "KeyboardQueue" (cb=3D14) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/LUN#0/AttachedDriver/] (level 5) 00:00:01.383 Driver =3D "MainKeyboard" (cb=3D13) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/LUN#0/AttachedDriver/Config/] (level 6) 00:00:01.383 Object =3D 0x000000002ee69600 (786 863 616) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/LUN#0/Config/] (level 5) 00:00:01.383 QueueSize =3D 0x0000000000000040 (64) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/LUN#1/] (level 4) 00:00:01.383 Driver =3D "MouseQueue" (cb=3D11) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/LUN#1/AttachedDriver/] (level 5) 00:00:01.383 Driver =3D "MainMouse" (cb=3D10) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/LUN#1/AttachedDriver/Config/] (level 6) 00:00:01.383 Object =3D 0x000000002ee6cf40 (786 878 272) 00:00:01.383=20 00:00:01.383 [/Devices/pckbd/0/LUN#1/Config/] (level 5) 00:00:01.383 QueueSize =3D 0x0000000000000080 (128) 00:00:01.383=20 00:00:01.383 [/Devices/pcnet/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/] (level 3) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x0000000000000001 (1) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000001 (1) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/Config/] (level 4) 00:00:01.383 Type =3D "PIIX4" (cb=3D6) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/Config/SecondaryMaster/] (level 5) 00:00:01.383 NonRotationalMedium =3D 0x0000000000000000 (0) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/LUN#2/] (level 4) 00:00:01.383 Driver =3D "Block" (cb=3D6) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/LUN#2/AttachedDriver/] (level 5) 00:00:01.383 Driver =3D "VD" (cb=3D3) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/LUN#2/AttachedDriver/Config/] (level 6) 00:00:01.383 Format =3D "RAW" (cb=3D4) 00:00:01.383 Path =3D "/home/guido/intra/scratch/tmp/window= s-8-beta/Windows8-ReleasePreview-32bit-English.iso" (cb=3D87) 00:00:01.383 ReadOnly =3D 0x0000000000000001 (1) 00:00:01.383 Type =3D "DVD" (cb=3D4) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/LUN#2/Config/] (level 5) 00:00:01.383 Mountable =3D 0x0000000000000001 (1) 00:00:01.383 Type =3D "DVD" (cb=3D4) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/LUN#999/] (level 4) 00:00:01.383 Driver =3D "MainStatus" (cb=3D11) 00:00:01.383=20 00:00:01.383 [/Devices/piix3ide/0/LUN#999/Config/] (level 5) 00:00:01.383 DeviceInstance =3D "piix3ide/0" (cb=3D11) 00:00:01.383 First =3D 0x0000000000000000 (0) 00:00:01.383 Last =3D 0x0000000000000003 (3) 00:00:01.383 pConsole =3D 0x000000002ee94900 (787 = 040 512) 00:00:01.383 papLeds =3D 0x000000002ee94b04 (787 = 041 028) 00:00:01.383 pmapMediumAttachments =3D 0x000000002ee94c18 (787 = 041 304) 00:00:01.383=20 00:00:01.383 [/Devices/serial/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/usb-ohci/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/usb-ohci/0/] (level 3) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x0000000000000006 (6) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000000 (0) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/usb-ohci/0/Config/] (level 4) 00:00:01.383=20 00:00:01.383 [/Devices/usb-ohci/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "VUSBRootHub" (cb=3D12) 00:00:01.383=20 00:00:01.383 [/Devices/usb-ohci/0/LUN#0/Config/] (level 5) 00:00:01.383=20 00:00:01.383 [/Devices/usb-ohci/0/LUN#999/] (level 4) 00:00:01.383 Driver =3D "MainStatus" (cb=3D11) 00:00:01.383=20 00:00:01.383 [/Devices/usb-ohci/0/LUN#999/Config/] (level 5) 00:00:01.383 First =3D 0x0000000000000000 (0) 00:00:01.383 Last =3D 0x0000000000000000 (0) 00:00:01.383 papLeds =3D 0x000000002ee94c10 (787 041 296) 00:00:01.383=20 00:00:01.383 [/Devices/vga/] (level 2) 00:00:01.383=20 00:00:01.383 [/Devices/vga/0/] (level 3) 00:00:01.383 PCIBusNo =3D 0x0000000000000000 (0) 00:00:01.383 PCIDeviceNo =3D 0x0000000000000002 (2) 00:00:01.383 PCIFunctionNo =3D 0x0000000000000000 (0) 00:00:01.383 Trusted =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/Devices/vga/0/Config/] (level 4) 00:00:01.383 CustomVideoModes =3D 0x0000000000000000 (0) 00:00:01.383 FadeIn =3D 0x0000000000000001 (1) 00:00:01.383 FadeOut =3D 0x0000000000000001 (1) 00:00:01.383 HeightReduction =3D 0x0000000000000000 (0) 00:00:01.383 LogoFile =3D "" (cb=3D1) 00:00:01.383 LogoTime =3D 0x0000000000000000 (0) 00:00:01.383 MonitorCount =3D 0x0000000000000001 (1) 00:00:01.383 ShowBootMenu =3D 0x0000000000000002 (2) 00:00:01.383 VRamSize =3D 0x0000000008000000 (134 217 7= 28, 128 MB) 00:00:01.383=20 00:00:01.383 [/Devices/vga/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "MainDisplay" (cb=3D12) 00:00:01.383=20 00:00:01.383 [/Devices/vga/0/LUN#0/Config/] (level 5) 00:00:01.383 Object =3D 0x000000002eee3600 (787 363 328) 00:00:01.383=20 00:00:01.383 [/Devices/virtio-net/] (level 2) 00:00:01.383=20 00:00:01.383 [/HWVirtExt/] (level 1) 00:00:01.383 64bitEnabled =3D 0x0000000000000000 (0) 00:00:01.383 EnableLargePages =3D 0x0000000000000000 (0) 00:00:01.383 EnableNestedPaging =3D 0x0000000000000001 (1) 00:00:01.383 EnableVPID =3D 0x0000000000000001 (1) 00:00:01.383 Enabled =3D 0x0000000000000001 (1) 00:00:01.383 Exclusive =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/MM/] (level 1) 00:00:01.383 CanUseLargerHeap =3D 0x0000000000000000 (0) 00:00:01.383=20 00:00:01.383 [/PDM/] (level 1) 00:00:01.383=20 00:00:01.383 [/PDM/AsyncCompletion/] (level 2) 00:00:01.383=20 00:00:01.383 [/PDM/AsyncCompletion/File/] (level 3) 00:00:01.383=20 00:00:01.383 [/PDM/AsyncCompletion/File/BwGroups/] (level 4) 00:00:01.383=20 00:00:01.383 [/PDM/BlkCache/] (level 2) 00:00:01.383 CacheSize =3D 0x0000000000500000 (5 242 880, 5 MB) 00:00:01.383=20 00:00:01.383 [/PDM/Devices/] (level 2) 00:00:01.383=20 00:00:01.383 [/PDM/Drivers/] (level 2) 00:00:01.383=20 00:00:01.383 [/PDM/Drivers/VBoxC/] (level 3) 00:00:01.383 Path =3D "/usr/local/lib/virtualbox/components/VBo= xC" (cb=3D43) 00:00:01.383=20 00:00:01.383 [/TM/] (level 1) 00:00:01.383 UTCOffset =3D 0x0000000000000000 (0) 00:00:01.383=20 00:00:01.383 [/USB/] (level 1) 00:00:01.383=20 00:00:01.383 [/USB/HidMouse/] (level 2) 00:00:01.383=20 00:00:01.383 [/USB/HidMouse/0/] (level 3) 00:00:01.383=20 00:00:01.383 [/USB/HidMouse/0/Config/] (level 4) 00:00:01.383 Absolute =3D 0x0000000000000001 (1) 00:00:01.383=20 00:00:01.383 [/USB/HidMouse/0/LUN#0/] (level 4) 00:00:01.383 Driver =3D "MouseQueue" (cb=3D11) 00:00:01.383=20 00:00:01.383 [/USB/HidMouse/0/LUN#0/AttachedDriver/] (level 5) 00:00:01.383 Driver =3D "MainMouse" (cb=3D10) 00:00:01.383=20 00:00:01.383 [/USB/HidMouse/0/LUN#0/AttachedDriver/Config/] (level 6) 00:00:01.383 Object =3D 0x000000002ee6cf40 (786 878 272) 00:00:01.383=20 00:00:01.383 [/USB/HidMouse/0/LUN#0/Config/] (level 5) 00:00:01.383 QueueSize =3D 0x0000000000000080 (128) 00:00:01.383=20 00:00:01.383 [/USB/USBProxy/] (level 2) 00:00:01.383=20 00:00:01.383 [/USB/USBProxy/GlobalConfig/] (level 3) 00:00:01.383=20 00:00:01.383 ********************* End of CFGM dump ********************** 00:00:01.385 MM: cbHyperHeap=3D0x140000 (1310720) 00:00:01.388 CPUMSetGuestCpuIdFeature: Enabled PAE 00:00:01.388 Logical host processors: 2 present, 2 max, 2 online, online ma= sk: 0000000000000003 00:00:01.388 ************************* CPUID dump ************************ 00:00:01.388 RAW Standard CPUIDs 00:00:01.388 Function eax ebx ecx edx 00:00:01.388 Gst: 00000000 00000005 756e6547 6c65746e 49656e69 00:00:01.388 Hst: 0000000d 756e6547 6c65746e 49656e69 00:00:01.388 Gst: 00000001 0001067a 00020800 00000201 178bf1ff 00:00:01.388 Hst: 0001067a 01020800 0408e3fd bfebfbff 00:00:01.388 Gst: 00000002 05b0b101 005657f0 00000000 2cb4304e 00:00:01.388 Hst: 05b0b101 005657f0 00000000 2cb4304e 00:00:01.388 Gst: 00000003 00000000 00000000 00000000 00000000 00:00:01.388 Hst: 00000000 00000000 00000000 00000000 00:00:01.388 Gst: 00000004 04000000 00000000 00000000 00000000 00:00:01.388 Hst: 04000121 01c0003f 0000003f 00000001 00:00:01.388 Gst: 00000005 00000000 00000000 00000000 00000000 00:00:01.388 Hst: 00000040 00000040 00000003 03122220 00:00:01.388 Name: GenuineIntel 00:00:01.388 Supports: 0-5 00:00:01.388 Family: 6 Extended: 0 Effective: 6 00:00:01.388 Model: 7 Extended: 1 Effective: 23 00:00:01.388 Stepping: 10 00:00:01.388 Type: 0 (primary) 00:00:01.388 APIC ID: 0x00 00:00:01.388 Logical CPUs: 2 00:00:01.388 CLFLUSH Size: 8 00:00:01.388 Brand ID: 0x00 00:00:01.388 Mnemonic - Description =3D guest (host) 00:00:01.388 FPU - x87 FPU on Chip =3D 1 (1) 00:00:01.388 VME - Virtual 8086 Mode Enhancements =3D 1 (1) 00:00:01.388 DE - Debugging extensions =3D 1 (1) 00:00:01.388 PSE - Page Size Extension =3D 1 (1) 00:00:01.388 TSC - Time Stamp Counter =3D 1 (1) 00:00:01.388 MSR - Model Specific Registers =3D 1 (1) 00:00:01.388 PAE - Physical Address Extension =3D 1 (1) 00:00:01.388 MCE - Machine Check Exception =3D 1 (1) 00:00:01.388 CX8 - CMPXCHG8B instruction =3D 1 (1) 00:00:01.388 APIC - APIC On-Chip =3D 0 (1) 00:00:01.388 10 - Reserved =3D 0 (0) 00:00:01.388 SEP - SYSENTER and SYSEXIT =3D 0 (1) 00:00:01.388 MTRR - Memory Type Range Registers =3D 1 (1) 00:00:01.388 PGE - PTE Global Bit =3D 1 (1) 00:00:01.388 MCA - Machine Check Architecture =3D 1 (1) 00:00:01.388 CMOV - Conditional Move Instructions =3D 1 (1) 00:00:01.388 PAT - Page Attribute Table =3D 1 (1) 00:00:01.388 PSE-36 - 36-bit Page Size Extention =3D 1 (1) 00:00:01.388 PSN - Processor Serial Number =3D 0 (0) 00:00:01.388 CLFSH - CLFLUSH Instruction. =3D 1 (1) 00:00:01.388 20 - Reserved =3D 0 (0) 00:00:01.388 DS - Debug Store =3D 0 (1) 00:00:01.388 ACPI - Thermal Mon. & Soft. Clock Ctrl.=3D 0 (1) 00:00:01.388 MMX - Intel MMX Technology =3D 1 (1) 00:00:01.388 FXSR - FXSAVE and FXRSTOR Instructions =3D 1 (1) 00:00:01.388 SSE - SSE Support =3D 1 (1) 00:00:01.388 SSE2 - SSE2 Support =3D 1 (1) 00:00:01.388 SS - Self Snoop =3D 0 (1) 00:00:01.388 HTT - Hyper-Threading Technology =3D 1 (1) 00:00:01.388 TM - Thermal Monitor =3D 0 (1) 00:00:01.388 30 - Reserved =3D 0 (0) 00:00:01.388 PBE - Pending Break Enable =3D 0 (1) 00:00:01.388 Supports SSE3 =3D 1 (1) 00:00:01.388 PCLMULQDQ =3D 0 (0) 00:00:01.388 DS Area 64-bit layout =3D 0 (1) 00:00:01.388 Supports MONITOR/MWAIT =3D 0 (1) 00:00:01.388 CPL-DS - CPL Qualified Debug Store =3D 0 (1) 00:00:01.388 VMX - Virtual Machine Technology =3D 0 (1) 00:00:01.388 SMX - Safer Mode Extensions =3D 0 (1) 00:00:01.388 Enhanced SpeedStep Technology =3D 0 (1) 00:00:01.388 Terminal Monitor 2 =3D 0 (1) 00:00:01.388 Supplemental SSE3 instructions =3D 1 (1) 00:00:01.388 L1 Context ID =3D 0 (0) 00:00:01.388 11 - Reserved =3D 0 (0) 00:00:01.388 FMA extensions using YMM state =3D 0 (0) 00:00:01.388 CMPXCHG16B instruction =3D 0 (1) 00:00:01.388 xTPR Update Control =3D 0 (1) 00:00:01.388 Perf/Debug Capability MSR =3D 0 (1) 00:00:01.388 16 - Reserved =3D 0 (0) 00:00:01.388 PCID - Process-context identifiers =3D 0 (0) 00:00:01.388 DCA - Direct Cache Access =3D 0 (0) 00:00:01.388 SSE4.1 instruction extensions =3D 0 (1) 00:00:01.388 SSE4.2 instruction extensions =3D 0 (0) 00:00:01.388 Supports the x2APIC extensions =3D 0 (0) 00:00:01.388 MOVBE instruction =3D 0 (0) 00:00:01.388 POPCNT instruction =3D 0 (0) 00:00:01.388 TSC-Deadline LAPIC timer mode =3D 0 (0) 00:00:01.388 AESNI instruction extensions =3D 0 (0) 00:00:01.388 XSAVE/XRSTOR extended state feature =3D 0 (1) 00:00:01.388 Supports OSXSAVE =3D 0 (0) 00:00:01.388 AVX instruction extensions =3D 0 (0) 00:00:01.388 29/30 - Reserved =3D 0x0 (0x0) 00:00:01.388 Hypervisor Present (we're a guest) =3D 0 (0) 00:00:01.388=20 00:00:01.388 RAW Extended CPUIDs 00:00:01.388 Function eax ebx ecx edx 00:00:01.388 Gst: 80000000 80000008 00000000 00000000 00000000 00:00:01.388 Hst: 80000008 00000000 00000000 00000000 00:00:01.388 Gst: 80000001 00000000 00000000 00000000 00000000 00:00:01.388 Hst: 00000000 00000000 00000001 20100000 00:00:01.388 Gst: 80000002 65746e49 2952286c 726f4320 4d542865 00:00:01.388 Hst: 65746e49 2952286c 726f4320 4d542865 00:00:01.388 Gst: 80000003 44203229 43206f75 20205550 50202020 00:00:01.388 Hst: 44203229 43206f75 20205550 50202020 00:00:01.388 Gst: 80000004 30303739 20402020 30382e32 007a4847 00:00:01.388 Hst: 30303739 20402020 30382e32 007a4847 00:00:01.388 Gst: 80000005 00000000 00000000 00000000 00000000 00:00:01.388 Hst: 00000000 00000000 00000000 00000000 00:00:01.388 Gst: 80000006 00000000 00000000 18008040 00000000 00:00:01.388 Hst: 00000000 00000000 18008040 00000000 00:00:01.388 Gst: 80000007 00000000 00000000 00000000 00000000 00:00:01.388 Hst: 00000000 00000000 00000000 00000000 00:00:01.388 Gst: 80000008 00003024 00000000 00000000 00000000 00:00:01.388 Hst: 00003024 00000000 00000000 00000000 00:00:01.388 Gst: 80000009 00000000 00000000 00000000 00000000* 00:00:01.388 Hst: 00000000 00000000 00000000 00000000 00:00:01.388 Ext Name: =20 00:00:01.388 Ext Supports: 0x80000000-0x80000008 00:00:01.388 Family: 0 Extended: 0 Effective: 0 00:00:01.388 Model: 0 Extended: 0 Effective: 0 00:00:01.388 Stepping: 0 00:00:01.388 Brand ID: 0x000 00:00:01.388 Mnemonic - Description =3D guest (host) 00:00:01.388 FPU - x87 FPU on Chip =3D 0 (0) 00:00:01.388 VME - Virtual 8086 Mode Enhancements =3D 0 (0) 00:00:01.388 DE - Debugging extensions =3D 0 (0) 00:00:01.388 PSE - Page Size Extension =3D 0 (0) 00:00:01.388 TSC - Time Stamp Counter =3D 0 (0) 00:00:01.388 MSR - K86 Model Specific Registers =3D 0 (0) 00:00:01.388 PAE - Physical Address Extension =3D 0 (0) 00:00:01.388 MCE - Machine Check Exception =3D 0 (0) 00:00:01.388 CX8 - CMPXCHG8B instruction =3D 0 (0) 00:00:01.388 APIC - APIC On-Chip =3D 0 (0) 00:00:01.388 10 - Reserved =3D 0 (0) 00:00:01.388 SEP - SYSCALL and SYSRET =3D 0 (0) 00:00:01.388 MTRR - Memory Type Range Registers =3D 0 (0) 00:00:01.388 PGE - PTE Global Bit =3D 0 (0) 00:00:01.388 MCA - Machine Check Architecture =3D 0 (0) 00:00:01.388 CMOV - Conditional Move Instructions =3D 0 (0) 00:00:01.388 PAT - Page Attribute Table =3D 0 (0) 00:00:01.388 PSE-36 - 36-bit Page Size Extention =3D 0 (0) 00:00:01.388 18 - Reserved =3D 0 (0) 00:00:01.388 19 - Reserved =3D 0 (0) 00:00:01.388 NX - No-Execute Page Protection =3D 0 (1) 00:00:01.388 DS - Debug Store =3D 0 (0) 00:00:01.388 AXMMX - AMD Extensions to MMX Instr. =3D 0 (0) 00:00:01.388 MMX - Intel MMX Technology =3D 0 (0) 00:00:01.388 FXSR - FXSAVE and FXRSTOR Instructions =3D 0 (0) 00:00:01.388 25 - AMD fast FXSAVE and FXRSTOR Instr.=3D 0 (0) 00:00:01.388 26 - 1 GB large page support =3D 0 (0) 00:00:01.388 27 - RDTSCP instruction =3D 0 (0) 00:00:01.388 28 - Reserved =3D 0 (0) 00:00:01.388 29 - AMD Long Mode =3D 0 (1) 00:00:01.388 30 - AMD Extensions to 3DNow =3D 0 (0) 00:00:01.388 31 - AMD 3DNow =3D 0 (0) 00:00:01.388 LahfSahf - LAHF/SAHF in 64-bit mode =3D 0 (1) 00:00:01.388 CmpLegacy - Core MP legacy mode (depr) =3D 0 (0) 00:00:01.388 SVM - AMD VM Extensions =3D 0 (0) 00:00:01.388 APIC registers starting at 0x400 =3D 0 (0) 00:00:01.388 AltMovCR8 - LOCK MOV CR0 means MOV CR8 =3D 0 (0) 00:00:01.388 Advanced bit manipulation =3D 0 (0) 00:00:01.388 SSE4A instruction support =3D 0 (0) 00:00:01.388 Misaligned SSE mode =3D 0 (0) 00:00:01.388 PREFETCH and PREFETCHW instruction =3D 0 (0) 00:00:01.388 OS visible workaround =3D 0 (0) 00:00:01.388 Instruction based sampling =3D 0 (0) 00:00:01.388 SSE5 support =3D 0 (0) 00:00:01.388 SKINIT, STGI, and DEV support =3D 0 (0) 00:00:01.388 Watchdog timer support. =3D 0 (0) 00:00:01.388 31:14 - Reserved =3D 0x0 (0x0) 00:00:01.388 Full Name: Intel(R) Core(TM)2 Duo CPU = P9700 @ 2.80GHz 00:00:01.388 TLB 2/4M Instr/Uni: res0 0 entries 00:00:01.388 TLB 2/4M Data: res0 0 entries 00:00:01.388 TLB 4K Instr/Uni: res0 0 entries 00:00:01.388 TLB 4K Data: res0 0 entries 00:00:01.388 L1 Instr Cache Line Size: 0 bytes 00:00:01.388 L1 Instr Cache Lines Per Tag: 0 00:00:01.388 L1 Instr Cache Associativity: res0 =20 00:00:01.388 L1 Instr Cache Size: 0 KB 00:00:01.388 L1 Data Cache Line Size: 0 bytes 00:00:01.388 L1 Data Cache Lines Per Tag: 0 00:00:01.388 L1 Data Cache Associativity: res0 =20 00:00:01.388 L1 Data Cache Size: 0 KB 00:00:01.388 L2 TLB 2/4M Instr/Uni: off 0 entries 00:00:01.388 L2 TLB 2/4M Data: off 0 entries 00:00:01.388 L2 TLB 4K Instr/Uni: off 0 entries 00:00:01.388 L2 TLB 4K Data: off 0 entries 00:00:01.388 L2 Cache Line Size: 0 bytes 00:00:01.388 L2 Cache Lines Per Tag: 0 00:00:01.388 L2 Cache Associativity: off =20 00:00:01.388 L2 Cache Size: 0 KB 00:00:01.388 APM Features: =20 00:00:01.388 Physical Address Width: 36 bits 00:00:01.388 Virtual Address Width: 48 bits 00:00:01.388 Guest Physical Address Width: 0 bits 00:00:01.388 Physical Core Count: 0 00:00:01.388=20 00:00:01.388 RAW Centaur CPUIDs 00:00:01.388 Function eax ebx ecx edx 00:00:01.388 Gst: c0000000 00000000 00000000 00000000 00000000 00:00:01.388 Hst: 00000000 00000000 00000000 00000000 00:00:01.388 Gst: c0000001 00000000 00000000 00000000 00000000* 00:00:01.388 Hst: 00000000 00000000 00000000 00000000 00:00:01.388 Gst: c0000002 00000000 00000000 00000000 00000000* 00:00:01.388 Hst: 00000000 00000000 00000000 00000000 00:00:01.388 Gst: c0000003 00000000 00000000 00000000 00000000* 00:00:01.388 Hst: 00000000 00000000 00000000 00000000 00:00:01.388 Centaur Supports: 0xc0000000-0x00000000 00:00:01.388=20 00:00:01.388 ******************** End of CPUID dump ********************** 00:00:01.388 Host paging mode: 32-bit+PGE 00:00:01.388 PGMPool: cMaxPages=3D560 (u64MaxPages=3D545) 00:00:01.388 pgmR3PoolInit: cMaxPages=3D0x230 cMaxUsers=3D0x460 cMaxPhysExt= s=3D0x460 fCacheEnable=3Dtrue=20 00:00:01.389 REM: VBoxREM32 00:00:01.402 TM: GIP - u32Mode=3D1 (SyncTSC) u32UpdateHz=3D100 00:00:01.435 TM: cTSCTicksPerSecond=3D0xa679d028 (2 793 001 000) fTSCVirtua= lized=3Dtrue fTSCUseRealTSC=3Dfalse 00:00:01.435 TM: fMaybeUseOffsettedHostTSC=3Dtrue TSCTiedToExecution=3Dfal= se TSCNotTiedToHalt=3Dfalse 00:00:01.435 CoreCode: R3=3D2fdf5000 R0=3Ded240000 RC=3Da0599000 Phys=3D000= 000008df84000 cb=3D0x2000 00:00:01.437 AIO: Async I/O manager not supported (rc=3DVERR_NOT_SUPPORTED)= =2E Falling back to simple manager 00:00:01.437 BlkCache: Cache successfully initialised. Cache size is 524288= 0 bytes 00:00:01.437 BlkCache: Cache commit interval is 10000 ms 00:00:01.437 BlkCache: Cache commit threshold is 2621440 bytes 00:00:01.440 [SMP] BIOS with 2 CPUs 00:00:01.448 SUP: Loaded VBoxDDR0.r0 (/usr/local/lib/virtualbox/VBoxDDR0.r0= ) at 0xca11d020 - ModuleInit at 0000000000000000 and ModuleTerm at 00000000= 00000000 00:00:01.451 SUP: Loaded VBoxDD2R0.r0 (/usr/local/lib/virtualbox/VBoxDD2R0.= r0) at 0xca137020 - ModuleInit at 0000000000000000 and ModuleTerm at 000000= 0000000000 00:00:01.451 Activating Local APIC 00:00:01.451 CPUMSetGuestCpuIdFeature: Enabled APIC 00:00:01.451 CPUMSetGuestCpuIdFeature: Disabled x2APIC 00:00:01.451 PIT: mode=3D3 count=3D0x10000 (65536) - 18.20 Hz (ch=3D0) 00:00:01.454 Shared Folders service loaded. 00:00:01.522 Chipset cannot do MSI: VERR_NOT_IMPLEMENTED 00:00:01.523 DrvBlock: Flushes will be ignored 00:00:01.523 DrvBlock: Async flushes will be passed to the disk 00:00:01.523 VDInit finished 00:00:01.523 AIOMgr: Endpoint for file '/home/guido/VirtualBox VMs/w8 beta/= w8 beta.vdi' (flags 00000723) created successfully 00:00:01.523 AHCI: LUN#0: disk, PCHS=3D16383/16/63, total number of sectors= 52428800 00:00:01.523 AHCI: LUN#0: using async I/O 00:00:01.523 AHCI ATA: LUN#0: disk, PCHS=3D16383/16/63, total number of sec= tors 52428800 00:00:01.523 AHCI ATA: LUN#1: no unit 00:00:01.523 AHCI ATA: Ctl: finished processing RESET 00:00:01.523 AHCI ATA: LUN#2: no unit 00:00:01.523 AHCI ATA: LUN#3: no unit 00:00:01.523 AHCI ATA: Ctl: finished processing RESET 00:00:01.524 AHCI ATA: Ctl: finished processing RESET 00:00:01.524 AHCI ATA: Ctl: finished processing RESET 00:00:01.524 PIIX3 ATA: LUN#0: no unit 00:00:01.524 PIIX3 ATA: LUN#1: no unit 00:00:01.524 DrvBlock: Flushes will be ignored 00:00:01.524 DrvBlock: Async flushes will be passed to the disk 00:00:01.524 PIIX3 ATA: LUN#2: CD/DVD, total number of sectors 1277114, pas= sthrough disabled 00:00:01.524 PIIX3 ATA: LUN#3: no unit 00:00:01.524 PIIX3 ATA: Ctl#0: finished processing RESET 00:00:01.524 PIIX3 ATA: Ctl#1: finished processing RESET 00:00:01.525 NAT: ICMP/ping not available (could not open ICMP socket, erro= r VERR_ACCESS_DENIED) 00:00:01.535 NAT: value of BindIP has been ignored 00:00:01.535 Chipset cannot do MSI: VERR_NOT_IMPLEMENTED 00:00:01.535 Audio: Trying driver 'oss'. 00:00:01.536 OSS: Successfully opened /dev/dsp for ADC 00:00:01.537 HDAcodec: can't open in fmt(freq: 44100) 00:00:01.537 OSS: Successfully opened /dev/dsp for DAC 00:00:01.538 HDAcodec: can't open out fmt(freq: 44100) 00:00:01.538 VUSB: attached 'HidMouse' to port 1 00:00:01.544 DevPcBios: SATA LUN#0 LCHS=3D1024/255/63 00:00:01.544 PGM: The CPU physical address width is 36 bits 00:00:01.544 PGMR3InitFinalize: 4 MB PSE mask 0000000fffffffff 00:00:01.554 VMM: fUsePeriodicPreemptionTimers=3Dfalse 00:00:01.554 HWACCM: Host CR4=3D000006D1 00:00:01.554 HWACCM: MSR_IA32_FEATURE_CONTROL =3D d 00:00:01.554 HWACCM: MSR_IA32_VMX_BASIC_INFO =3D 5a08000000000d 00:00:01.554 HWACCM: VMCS id =3D d 00:00:01.554 HWACCM: VMCS size =3D 800 00:00:01.554 HWACCM: VMCS physical address limit =3D None 00:00:01.554 HWACCM: VMCS memory type =3D 6 00:00:01.554 HWACCM: Dual monitor treatment =3D 1 00:00:01.554 HWACCM: MSR_IA32_VMX_PINBASED_CTLS =3D 3f00000016 00:00:01.554 HWACCM: VMX_VMCS_CTRL_PIN_EXEC_CONTROLS_EXT_INT_EXIT 00:00:01.554 HWACCM: VMX_VMCS_CTRL_PIN_EXEC_CONTROLS_NMI_EXIT 00:00:01.554 HWACCM: VMX_VMCS_CTRL_PIN_EXEC_CONTROLS_VIRTUAL_NMI 00:00:01.554 HWACCM: MSR_IA32_VMX_PROCBASED_CTLS =3D f7f9fffe0401e172 00:00:01.554 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_IRQ_WINDOW_EXIT 00:00:01.554 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_TSC_OFFSET 00:00:01.554 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_HLT_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_INVLPG_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_MWAIT_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_RDPMC_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_RDTSC_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_CR3_LOAD_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_CR3_STORE_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_CR8_LOAD_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_CR8_STORE_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_USE_TPR_SHADOW 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_NMI_WINDOW_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_MOV_DR_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_UNCOND_IO_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_USE_IO_BITMAPS 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_USE_MSR_BITMAPS 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_MONITOR_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_PAUSE_EXIT 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_USE_SECONDARY_EXEC_CTRL 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_CR3_LOAD_EXIT *mus= t* be set 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC_CONTROLS_CR3_STORE_EXIT *mu= st* be set 00:00:01.555 HWACCM: MSR_IA32_VMX_PROCBASED_CTLS2 =3D 4100000000 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC2_VIRT_APIC 00:00:01.555 HWACCM: VMX_VMCS_CTRL_PROC_EXEC2_WBINVD_EXIT 00:00:01.555 HWACCM: MSR_IA32_VMX_ENTRY_CTLS =3D 3fff000011ff 00:00:01.555 HWACCM: VMX_VMCS_CTRL_ENTRY_CONTROLS_LOAD_DEBUG 00:00:01.555 HWACCM: VMX_VMCS_CTRL_ENTRY_CONTROLS_IA64_MODE 00:00:01.555 HWACCM: VMX_VMCS_CTRL_ENTRY_CONTROLS_ENTRY_SMM 00:00:01.555 HWACCM: VMX_VMCS_CTRL_ENTRY_CONTROLS_DEACTIVATE_DUALMON 00:00:01.555 HWACCM: VMX_VMCS_CTRL_ENTRY_CONTROLS_LOAD_GUEST_PERF_MSR 00:00:01.555 HWACCM: VMX_VMCS_CTRL_ENTRY_CONTROLS_LOAD_DEBUG *must* be s= et 00:00:01.555 HWACCM: MSR_IA32_VMX_EXIT_CTLS =3D 3ffff00036dff 00:00:01.555 HWACCM: VMX_VMCS_CTRL_EXIT_CONTROLS_SAVE_DEBUG 00:00:01.555 HWACCM: VMX_VMCS_CTRL_EXIT_CONTROLS_HOST_AMD64 00:00:01.555 HWACCM: VMX_VMCS_CTRL_EXIT_CONTROLS_ACK_EXTERNAL_IRQ 00:00:01.555 HWACCM: VMX_VMCS_CTRL_EXIT_CONTROLS_SAVE_DEBUG *must* be set 00:00:01.555 HWACCM: MSR_IA32_VMX_MISC =3D 403c0 00:00:01.555 HWACCM: MSR_IA32_VMX_MISC_PREEMPT_TSC_BIT 0 00:00:01.555 HWACCM: MSR_IA32_VMX_MISC_ACTIVITY_STATES 7 00:00:01.555 HWACCM: MSR_IA32_VMX_MISC_CR3_TARGET 4 00:00:01.555 HWACCM: MSR_IA32_VMX_MISC_MAX_MSR 200 00:00:01.555 HWACCM: MSR_IA32_VMX_MISC_MSEG_ID 0 00:00:01.555 HWACCM: MSR_IA32_VMX_CR0_FIXED0 =3D 80000021 00:00:01.555 HWACCM: MSR_IA32_VMX_CR0_FIXED1 =3D ffffffff 00:00:01.555 HWACCM: MSR_IA32_VMX_CR4_FIXED0 =3D 2000 00:00:01.555 HWACCM: MSR_IA32_VMX_CR4_FIXED1 =3D 467ff 00:00:01.555 HWACCM: MSR_IA32_VMX_VMCS_ENUM =3D 2c 00:00:01.555 HWACCM: TPR shadow physaddr =3D 0000000085e67000 00:00:01.555 HWACCM: VCPU0: MSR bitmap physaddr =3D 0000000085e6a000 00:00:01.555 HWACCM: VCPU0: VMCS physaddr =3D 0000000085e68000 00:00:01.555 HWACCM: VCPU1: MSR bitmap physaddr =3D 0000000085e6d000 00:00:01.555 HWACCM: VCPU1: VMCS physaddr =3D 0000000085e6b000 00:00:01.555 HWACCM: Real Mode TSS guest physaddr =3D 00000000f0800000 00:00:01.555 HWACCM: Non-Paging Mode EPT CR3 =3D 00000000f0803000 00:00:01.555 CPUMSetGuestCpuIdFeature: Enabled sysenter/exit 00:00:01.555 HWACCM: 32-bit guests supported. 00:00:01.555 HWACCM: VMX enabled! 00:00:01.555 HWACCM: TPR Patching disabled. 00:00:01.555 HWACCM: VT-x/AMD-V init method: GLOBAL 00:00:01.565 VM: Halt method global1 (5) 00:00:01.565 HaltedGlobal1 config: cNsSpinBlockThresholdCfg=3D50000 00:00:01.565 Changing the VM state from 'CREATING' to 'CREATED'. 00:00:01.565 Changing the VM state from 'CREATED' to 'POWERING_ON'. 00:00:01.565 AIOMgr: Endpoints without assigned bandwidth groups: 00:00:01.565 AIOMgr: /home/guido/VirtualBox VMs/w8 beta/w8 beta.vdi 00:00:01.565 Changing the VM state from 'POWERING_ON' to 'RUNNING'. 00:00:01.571 Guest Log: BIOS: VirtualBox 4.1.18_OSE 00:00:01.572 PIT: mode=3D2 count=3D0x10000 (65536) - 18.20 Hz (ch=3D0) 00:00:01.573 ERROR [COM]: aRC=3DVBOX_E_IPRT_ERROR (0x80bb0005) aIID=3D{09ee= d313-cd56-4d06-bd56-fac0f716b5dd} aComponent=3D{Display} aText=3D{Could not= take a screenshot (VERR_NOT_SUPPORTED)}, preserve=3Dfalse 00:00:01.575 PIIX3 ATA: Ctl#1: RESET, DevSel=3D0 AIOIf=3D0 CmdIf0=3D0x00 (-= 1 usec ago) CmdIf1=3D0x00 (-1 usec ago) 00:00:01.576 PIIX3 ATA: Ctl#1: finished processing RESET 00:00:01.576 AHCI ATA: Ctl: RESET, DevSel=3D0 AIOIf=3D0 CmdIf0=3D0x00 (-1 u= sec ago) CmdIf1=3D0x00 (-1 usec ago) 00:00:01.576 AHCI ATA: Ctl: finished processing RESET 00:00:01.577 Guest Log: BIOS: ata2-0: PCHS=3D16383/16/63 LCHS=3D1024/255/63 00:00:01.577 PIT: mode=3D2 count=3D0x48d3 (18643) - 64.00 Hz (ch=3D0) 00:00:01.578 2D video acceleration is disabled. 00:00:01.587 Display::handleDisplayResize(): uScreenId =3D 0, pvVRAM=3D3300= 0000 w=3D640 h=3D480 bpp=3D32 cbLine=3D0xA00, flags=3D0x1 00:00:04.047 Display::handleDisplayResize(): uScreenId =3D 0, pvVRAM=3D3300= 0000 w=3D640 h=3D480 bpp=3D0 cbLine=3D0x280, flags=3D0x1 00:00:04.057 PIT: mode=3D2 count=3D0x10000 (65536) - 18.20 Hz (ch=3D0) 00:00:04.058 Guest Log: BIOS: Booting from CD-ROM... 00:00:04.068 Display::handleDisplayResize(): uScreenId =3D 0, pvVRAM=3D0000= 0000 w=3D720 h=3D400 bpp=3D0 cbLine=3D0x0, flags=3D0x1 00:00:04.332 Display::handleDisplayResize(): uScreenId =3D 0, pvVRAM=3D3300= 0000 w=3D1024 h=3D768 bpp=3D24 cbLine=3D0xC00, flags=3D0x1 00:00:18.897 Changing the VM state from 'RUNNING' to 'SUSPENDING'. 00:00:18.932 AIOMgr: Endpoint for file '/home/guido/VirtualBox VMs/w8 beta/= w8 beta.vdi' (flags 00000781) created successfully 00:00:18.932 PDMR3Suspend: 34 989 736 ns run time 00:00:18.932 Changing the VM state from 'SUSPENDING' to 'SUSPENDED'. 00:00:20.251 Console::powerDown(): A request to power off the VM has been i= ssued (mMachineState=3DStopping, InUninit=3D0) 00:00:20.252 Changing the VM state from 'SUSPENDED' to 'POWERING_OFF'. 00:00:20.252 ****************** Guest state at power off ****************** 00:00:20.252 Guest CPUM (VCPU 0) state:=20 00:00:20.252 eax=3D00000002 ebx=3D00000000 ecx=3D00000000 edx=3D00000003 es= i=3D81c6e404 edi=3D81c360f4 00:00:20.252 eip=3D81b61989 esp=3D81c35dac ebp=3D81c36178 iopl=3D0 = nv up di pl nz na po nc 00:00:20.252 cs=3D{0008 base=3D0000000000000000 limit=3Dffffffff flags=3D00= 00c09b} dr0=3D00000000 dr1=3D00000000 00:00:20.252 ds=3D{0023 base=3D0000000000000000 limit=3Dffffffff flags=3D00= 00c0f3} dr2=3D00000000 dr3=3D00000000 00:00:20.252 es=3D{0023 base=3D0000000000000000 limit=3Dffffffff flags=3D00= 00c0f3} dr4=3D00000000 dr5=3D00000000 00:00:20.252 fs=3D{0030 base=3D0000000081c6e000 limit=3D000042c0 flags=3D00= 004093} dr6=3Dffff0ff0 dr7=3D00000400 00:00:20.252 gs=3D{0000 base=3D0000000000000000 limit=3Dffffffff flags=3D00= 01c000} cr0=3D8001003d cr2=3Df00100be 00:00:20.252 ss=3D{0010 base=3D0000000000000000 limit=3Dffffffff flags=3D00= 00c093} cr3=3D00185000 cr4=3D00000220 00:00:20.252 gdtr=3D000000008173e000:03ff idtr=3D000000008173e400:07ff ef= lags=3D00000046 00:00:20.252 ldtr=3D{0000 base=3D00000000 limit=3D00000000 flags=3D00000082} 00:00:20.252 tr =3D{0050 base=3D81c38000 limit=3D00000068 flags=3D0000008b} 00:00:20.252 SysEnter=3D{cs=3D0000 eip=3D00000000 esp=3D00000000} 00:00:20.252 FCW=3D037f FSW=3D0000 FTW=3D0000 FOP=3D0000 MXCSR=3D00001f80 M= XCSR_MASK=3D0000ffff 00:00:20.252 FPUIP=3D00000000 CS=3D0000 Rsrvd1=3D0000 FPUDP=3D00000000 DS= =3D0000 Rsvrd2=3D0000 00:00:20.252 ST(0)=3DFPR0=3D{0000'00000000'00000000} t0 +0.0000000000000000= 000000 ^ 0 00:00:20.252 ST(1)=3DFPR1=3D{0000'00000000'00000000} t0 +0.0000000000000000= 000000 ^ 0 00:00:20.252 ST(2)=3DFPR2=3D{0000'00000000'00000000} t0 +0.0000000000000000= 000000 ^ 0 00:00:20.252 ST(3)=3DFPR3=3D{0000'00000000'00000000} t0 +0.0000000000000000= 000000 ^ 0 00:00:20.252 ST(4)=3DFPR4=3D{0000'00000000'00000000} t0 +0.0000000000000000= 000000 ^ 0 00:00:20.252 ST(5)=3DFPR5=3D{0000'00000000'00000000} t0 +0.0000000000000000= 000000 ^ 0 00:00:20.252 ST(6)=3DFPR6=3D{0000'00000000'00000000} t0 +0.0000000000000000= 000000 ^ 0 00:00:20.252 ST(7)=3DFPR7=3D{0000'00000000'00000000} t0 +0.0000000000000000= 000000 ^ 0 00:00:20.252 XMM0 =3Db7a8c7e9'a9b86dbe'10cff241'c70a9028 XMM1 =3D1214b8e8'= 4efcbeef'f8b98cbd'a04cd015 00:00:20.252 XMM2 =3D3daea087'79e6ca3f'261ee434'97b8a44d XMM3 =3Db7a8c7e9'= a9b86dbe'10cff241'c70a9028 00:00:20.252 XMM4 =3Dc17f3f01'de41ddd0'59bc4f0f'13578f3a XMM5 =3D6714881a'= 1c7908ad'404637eb'5529579f 00:00:20.252 XMM6 =3D64be053c'3ae7056f'98a37b40'2d5c8ea4 XMM7 =3Da333c78b'= 808837ee'4a3be502'321d6cb7 00:00:20.252 XMM8 =3D00000000'00000000'00000000'00000000 XMM9 =3D00000000'= 00000000'00000000'00000000 00:00:20.252 XMM10=3D00000000'00000000'00000000'00000000 XMM11=3D00000000'= 00000000'00000000'00000000 00:00:20.252 XMM12=3D00000000'00000000'00000000'00000000 XMM13=3D00000000'= 00000000'00000000'00000000 00:00:20.252 XMM14=3D00000000'00000000'00000000'00000000 XMM15=3D00000000'= 00000000'00000000'00000000 00:00:20.252 EFER =3D0000000000000000 00:00:20.252 PAT =3D0007040600070406 00:00:20.252 STAR =3D0000000000000000 00:00:20.252 CSTAR =3D0000000000000000 00:00:20.252 LSTAR =3D0000000000000000 00:00:20.252 SFMASK =3D0000000000000000 00:00:20.252 KERNELGSBASE =3D0000000000000000 00:00:20.252 *** 00:00:20.252 Guest paging mode: PAE, changed 7621 times, A20 enabled 00:00:20.252 Shadow paging mode: PAE 00:00:20.252 Host paging mode: 32-bit+G 00:00:20.252 *** 00:00:20.252 Active Timers (pVM=3D2ec7e000) 00:00:20.252 pTimerR3 offNext offPrev offSched Clock Time = Expire HzHint State Description 00:00:20.252 30b17bc0 0000f900 00000000 00000000 Real 2192722 = 2191371 0 2-ACTIVE VGA Refresh Timer 00:00:20.252 30b274c0 00000000 ffff0700 00000000 Real 2192722 = 2192108 0 2-ACTIVE CPU Load Timer 00:00:20.252 30b23d80 00000000 00000000 00000000 Virt 17367186173 = 17331260578 0 2-ACTIVE Audio timer 00:00:20.252 30b0ff00 000004c0 00000000 00000000 VrSy 17365691278 = 17376045739 18 2-ACTIVE i8254 Programmable Inter= val Timer 00:00:20.252 30b103c0 00016190 fffffb40 00000000 VrSy 17365691278 = 17990000000 0 2-ACTIVE MC146818 RTC/CMOS - Seco= nd 00:00:20.252 30b26550 00000000 fffe9e70 00000000 VrSy 17365691278 = 1199864031601 0 2-ACTIVE ACPI PM Timer 00:00:20.252 *** 00:00:20.252 Shadow GDT (GCAddr=3Dff59c000): 00:00:20.252 ffd8 - 81180087 ff008900 - base=3Dff008118 limit=3D00000087 dp= l=3D0 TSS32Avail Present 16-bit HyperTSSTrap08 00:00:20.252 ffe0 - 80900087 ff008900 - base=3Dff008090 limit=3D00000087 dp= l=3D0 TSS32Avail Present 16-bit HyperTSS 00:00:20.252 ffe8 - 0000ffff 00af9b00 - base=3D00000000 limit=3Dffffffff dp= l=3D0 CodeER Accessed Present Page 16-bit HyperCS64 00:00:20.252 fff0 - 0000ffff 00cf9300 - base=3D00000000 limit=3Dffffffff dp= l=3D0 DataRW Accessed Present Page 32-bit HyperDS 00:00:20.252 fff8 - 0000ffff 00cf9b00 - base=3D00000000 limit=3Dffffffff dp= l=3D0 CodeER Accessed Present Page 32-bit HyperCS 00:00:20.252 *** 00:00:20.252 ************** End of Guest state at power off *************** 00:00:20.252 PDMR3PowerOff: 7 428 ns run time 00:00:20.252 Changing the VM state from 'POWERING_OFF' to 'OFF'. 00:00:20.258 Changing the VM state from 'OFF' to 'DESTROYING'. 00:00:20.265 ************************* Statistics ************************* 00:00:20.268 /Devices/E1k0/ReceiveBytes 0 bytes 00:00:20.268 /Devices/E1k0/TransmitBytes 0 bytes 00:00:20.268 /Devices/IDE0/ATA0/Unit0/AtapiDMA 0 times 00:00:20.268 /Devices/IDE0/ATA0/Unit0/AtapiPIO 0 times 00:00:20.268 /Devices/IDE0/ATA0/Unit0/DMA 0 times 00:00:20.268 /Devices/IDE0/ATA0/Unit0/PIO 0 times 00:00:20.268 /Devices/IDE0/ATA0/Unit0/ReadBytes 0 bytes 00:00:20.268 /Devices/IDE0/ATA0/Unit0/WrittenBytes 0 bytes 00:00:20.268 /Devices/IDE0/ATA0/Unit1/AtapiDMA 0 times 00:00:20.268 /Devices/IDE0/ATA0/Unit1/AtapiPIO 0 times 00:00:20.268 /Devices/IDE0/ATA0/Unit1/DMA 0 times 00:00:20.268 /Devices/IDE0/ATA0/Unit1/PIO 0 times 00:00:20.268 /Devices/IDE0/ATA0/Unit1/ReadBytes 0 bytes 00:00:20.268 /Devices/IDE0/ATA0/Unit1/WrittenBytes 0 bytes 00:00:20.268 /Devices/IDE0/ATA1/Unit0/AtapiDMA 0 times 00:00:20.268 /Devices/IDE0/ATA1/Unit0/AtapiPIO 2828 times 00:00:20.268 /Devices/IDE0/ATA1/Unit0/DMA 0 times 00:00:20.268 /Devices/IDE0/ATA1/Unit0/PIO 0 times 00:00:20.268 /Devices/IDE0/ATA1/Unit0/ReadBytes 169932800 bytes 00:00:20.268 /Devices/IDE0/ATA1/Unit0/WrittenBytes 0 bytes 00:00:20.268 /Devices/IDE0/ATA1/Unit1/AtapiDMA 0 times 00:00:20.268 /Devices/IDE0/ATA1/Unit1/AtapiPIO 0 times 00:00:20.268 /Devices/IDE0/ATA1/Unit1/DMA 0 times 00:00:20.268 /Devices/IDE0/ATA1/Unit1/PIO 0 times 00:00:20.268 /Devices/IDE0/ATA1/Unit1/ReadBytes 0 bytes 00:00:20.268 /Devices/IDE0/ATA1/Unit1/WrittenBytes 0 bytes 00:00:20.268 /Devices/SATA0/Port0/ReadBytes 2048 bytes 00:00:20.268 /Devices/VMMDev/BalloonChunks 0 count 00:00:20.268 /FT/Checkpoint/Network 0 times 00:00:20.268 /FT/Checkpoint/Storage 0 times 00:00:20.268 /FT/Received/Mem 0 bytes 00:00:20.268 /FT/Received/State 0 bytes 00:00:20.269 /FT/Sent/Mem 0 bytes 00:00:20.269 /FT/Sent/State 0 bytes 00:00:20.269 /FT/Sync/DeltaMem 0 times 00:00:20.269 /FT/Sync/DeltaVM 0 times 00:00:20.269 /FT/Sync/Full 0 times 00:00:20.269 /GMM/VM/Allocated/cBasePages 58869 pages 00:00:20.269 /GMM/VM/Allocated/cFixedPages 0 pages 00:00:20.269 /GMM/VM/Allocated/cShadowPages 0 pages 00:00:20.269 /GMM/VM/Reserved/cBasePages 262302 pages 00:00:20.269 /GMM/VM/Reserved/cFixedPages 33796 pages 00:00:20.269 /GMM/VM/Reserved/cShadowPages 1 pages 00:00:20.269 /GMM/VM/cBalloonedPages 0 pages 00:00:20.269 /GMM/VM/cMaxBalloonedPages 0 pages 00:00:20.269 /GMM/VM/cPrivatePages 58869 pages 00:00:20.269 /GMM/VM/cReqActuallyBalloonedPages 0 pages 00:00:20.269 /GMM/VM/cReqBalloonedPages 0 pages 00:00:20.269 /GMM/VM/cReqDeflatePages 0 pages 00:00:20.269 /GMM/VM/cShareableModules 0 count 00:00:20.269 /GMM/VM/cSharedPages 0 pages 00:00:20.269 /GMM/VM/enmPolicy 1=20 00:00:20.269 /GMM/VM/enmPriority 2=20 00:00:20.269 /GMM/VM/fBallooningEnabled false =20 00:00:20.269 /GMM/VM/fMayAllocate false =20 00:00:20.269 /GMM/VM/fSharedPagingEnabled false =20 00:00:20.269 /GMM/cAllocatedPages 58869 pages 00:00:20.269 /GMM/cBalloonedPages 0 pages 00:00:20.269 /GMM/cChunks 115 count 00:00:20.269 /GMM/cDuplicatePages 0 pages 00:00:20.269 /GMM/cFreedChunks 0 count 00:00:20.269 /GMM/cLeftBehindSharedPages 0 pages 00:00:20.269 /GMM/cMaxPages 4294967295 pages 00:00:20.269 /GMM/cOverCommittedPages 0 pages 00:00:20.269 /GMM/cReservedPages 296099 pages 00:00:20.269 /GMM/cShareableModules 0 count 00:00:20.269 /GMM/cSharedPages 0 pages 00:00:20.269 /GVMM/EMTs 2 calls 00:00:20.269 /GVMM/HostCPUs 32 calls 00:00:20.269 /GVMM/HostCpus/0 0=20 00:00:20.269 /GVMM/HostCpus/0/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/0/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/0/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/0/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/0/idxCpuSet 0=20 00:00:20.269 /GVMM/HostCpus/1 1=20 00:00:20.269 /GVMM/HostCpus/1/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/1/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/1/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/1/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/1/idxCpuSet 1=20 00:00:20.269 /GVMM/HostCpus/10 10=20 00:00:20.269 /GVMM/HostCpus/10/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/10/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/10/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/10/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/10/idxCpuSet 10=20 00:00:20.269 /GVMM/HostCpus/11 11=20 00:00:20.269 /GVMM/HostCpus/11/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/11/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/11/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/11/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/11/idxCpuSet 11=20 00:00:20.269 /GVMM/HostCpus/12 12=20 00:00:20.269 /GVMM/HostCpus/12/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/12/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/12/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/12/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/12/idxCpuSet 12=20 00:00:20.269 /GVMM/HostCpus/13 13=20 00:00:20.269 /GVMM/HostCpus/13/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/13/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/13/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/13/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/13/idxCpuSet 13=20 00:00:20.269 /GVMM/HostCpus/14 14=20 00:00:20.269 /GVMM/HostCpus/14/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/14/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/14/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/14/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/14/idxCpuSet 14=20 00:00:20.269 /GVMM/HostCpus/15 15=20 00:00:20.269 /GVMM/HostCpus/15/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/15/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/15/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/15/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/15/idxCpuSet 15=20 00:00:20.269 /GVMM/HostCpus/16 16=20 00:00:20.269 /GVMM/HostCpus/16/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/16/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/16/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/16/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/16/idxCpuSet 16=20 00:00:20.269 /GVMM/HostCpus/17 17=20 00:00:20.269 /GVMM/HostCpus/17/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/17/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/17/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/17/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/17/idxCpuSet 17=20 00:00:20.269 /GVMM/HostCpus/18 18=20 00:00:20.269 /GVMM/HostCpus/18/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/18/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/18/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/18/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/18/idxCpuSet 18=20 00:00:20.269 /GVMM/HostCpus/19 19=20 00:00:20.269 /GVMM/HostCpus/19/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/19/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/19/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/19/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/19/idxCpuSet 19=20 00:00:20.269 /GVMM/HostCpus/2 2=20 00:00:20.269 /GVMM/HostCpus/2/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/2/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/2/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/2/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/2/idxCpuSet 2=20 00:00:20.269 /GVMM/HostCpus/20 20=20 00:00:20.269 /GVMM/HostCpus/20/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/20/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/20/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/20/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/20/idxCpuSet 20=20 00:00:20.269 /GVMM/HostCpus/21 21=20 00:00:20.269 /GVMM/HostCpus/21/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/21/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/21/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/21/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/21/idxCpuSet 21=20 00:00:20.269 /GVMM/HostCpus/22 22=20 00:00:20.269 /GVMM/HostCpus/22/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/22/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/22/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/22/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/22/idxCpuSet 22=20 00:00:20.269 /GVMM/HostCpus/23 23=20 00:00:20.269 /GVMM/HostCpus/23/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/23/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/23/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/23/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/23/idxCpuSet 23=20 00:00:20.269 /GVMM/HostCpus/24 24=20 00:00:20.269 /GVMM/HostCpus/24/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/24/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/24/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/24/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/24/idxCpuSet 24=20 00:00:20.269 /GVMM/HostCpus/25 25=20 00:00:20.269 /GVMM/HostCpus/25/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/25/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/25/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/25/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/25/idxCpuSet 25=20 00:00:20.269 /GVMM/HostCpus/26 26=20 00:00:20.269 /GVMM/HostCpus/26/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/26/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/26/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/26/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/26/idxCpuSet 26=20 00:00:20.269 /GVMM/HostCpus/27 27=20 00:00:20.269 /GVMM/HostCpus/27/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/27/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/27/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/27/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/27/idxCpuSet 27=20 00:00:20.269 /GVMM/HostCpus/28 28=20 00:00:20.269 /GVMM/HostCpus/28/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/28/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/28/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/28/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/28/idxCpuSet 28=20 00:00:20.269 /GVMM/HostCpus/29 29=20 00:00:20.269 /GVMM/HostCpus/29/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/29/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/29/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/29/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/29/idxCpuSet 29=20 00:00:20.269 /GVMM/HostCpus/3 3=20 00:00:20.269 /GVMM/HostCpus/3/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/3/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/3/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/3/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/3/idxCpuSet 3=20 00:00:20.269 /GVMM/HostCpus/30 30=20 00:00:20.269 /GVMM/HostCpus/30/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/30/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/30/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/30/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/30/idxCpuSet 30=20 00:00:20.269 /GVMM/HostCpus/31 31=20 00:00:20.269 /GVMM/HostCpus/31/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/31/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/31/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/31/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/31/idxCpuSet 31=20 00:00:20.269 /GVMM/HostCpus/4 4=20 00:00:20.269 /GVMM/HostCpus/4/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/4/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/4/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/4/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/4/idxCpuSet 4=20 00:00:20.269 /GVMM/HostCpus/5 5=20 00:00:20.269 /GVMM/HostCpus/5/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/5/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/5/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/5/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/5/idxCpuSet 5=20 00:00:20.269 /GVMM/HostCpus/6 6=20 00:00:20.269 /GVMM/HostCpus/6/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/6/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/6/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/6/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/6/idxCpuSet 6=20 00:00:20.269 /GVMM/HostCpus/7 7=20 00:00:20.269 /GVMM/HostCpus/7/CurTimerHz 0 Hz 00:00:20.269 /GVMM/HostCpus/7/DesiredHz 0 Hz 00:00:20.269 /GVMM/HostCpus/7/PPTChanges 0 times 00:00:20.269 /GVMM/HostCpus/7/PPTStarts 0 times 00:00:20.269 /GVMM/HostCpus/7/idxCpuSet 7=20 00:00:20.276 /GVMM/HostCpus/8 8=20 00:00:20.276 /GVMM/HostCpus/8/CurTimerHz 0 Hz 00:00:20.276 /GVMM/HostCpus/8/DesiredHz 0 Hz 00:00:20.277 /GVMM/HostCpus/8/PPTChanges 0 times 00:00:20.277 /GVMM/HostCpus/8/PPTStarts 0 times 00:00:20.277 /GVMM/HostCpus/8/idxCpuSet 8=20 00:00:20.277 /GVMM/HostCpus/9 9=20 00:00:20.277 /GVMM/HostCpus/9/CurTimerHz 0 Hz 00:00:20.277 /GVMM/HostCpus/9/DesiredHz 0 Hz 00:00:20.277 /GVMM/HostCpus/9/PPTChanges 0 times 00:00:20.277 /GVMM/HostCpus/9/PPTStarts 0 times 00:00:20.277 /GVMM/HostCpus/9/idxCpuSet 9=20 00:00:20.277 /GVMM/Sum/HaltBlocking 9138 calls 00:00:20.277 /GVMM/Sum/HaltCalls 9162 calls 00:00:20.277 /GVMM/Sum/HaltNotBlocking 24 calls 00:00:20.277 /GVMM/Sum/HaltTimeouts 8584 calls 00:00:20.277 /GVMM/Sum/HaltWakeUps 0 calls 00:00:20.277 /GVMM/Sum/PokeCalls 28 calls 00:00:20.277 /GVMM/Sum/PokeNotBusy 0 calls 00:00:20.281 /GVMM/Sum/PollCalls 1 calls 00:00:20.281 /GVMM/Sum/PollHalts 0 calls 00:00:20.281 /GVMM/Sum/PollWakeUps 0 calls 00:00:20.281 /GVMM/Sum/WakeUpCalls 556 calls 00:00:20.281 /GVMM/Sum/WakeUpNotHalted 74 calls 00:00:20.281 /GVMM/Sum/WakeUpWakeUps 0 calls 00:00:20.281 /GVMM/VM/HaltBlocking 9138 calls 00:00:20.281 /GVMM/VM/HaltCalls 9162 calls 00:00:20.281 /GVMM/VM/HaltNotBlocking 24 calls 00:00:20.281 /GVMM/VM/HaltTimeouts 8584 calls 00:00:20.281 /GVMM/VM/HaltWakeUps 0 calls 00:00:20.281 /GVMM/VM/PokeCalls 28 calls 00:00:20.281 /GVMM/VM/PokeNotBusy 0 calls 00:00:20.281 /GVMM/VM/PollCalls 1 calls 00:00:20.281 /GVMM/VM/PollHalts 0 calls 00:00:20.281 /GVMM/VM/PollWakeUps 0 calls 00:00:20.281 /GVMM/VM/WakeUpCalls 556 calls 00:00:20.281 /GVMM/VM/WakeUpNotHalted 74 calls 00:00:20.281 /GVMM/VM/WakeUpWakeUps 0 calls 00:00:20.281 /GVMM/VMs 1 calls 00:00:20.281 /MM/HyperHeap/cbFree 1079200 bytes 00:00:20.281 /MM/HyperHeap/cbHeap 1310528 bytes 00:00:20.281 /PDM/BlkCache/cbCached 0 bytes 00:00:20.281 /PDM/BlkCache/cbCachedFru 0 bytes 00:00:20.281 /PDM/BlkCache/cbCachedMruIn 0 bytes 00:00:20.281 /PDM/BlkCache/cbCachedMruOut 0 bytes 00:00:20.281 /PDM/BlkCache/cbMax 5242880 bytes 00:00:20.281 /PDM/CritSects/8237A#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/8237A#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/8237A#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/AHCI#0/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/AHCI#0/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/AHCI#0/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/ATA#0/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/ATA#0/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/ATA#0/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/ATA#1/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/ATA#1/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/ATA#1/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/AudioSniffer#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/AudioSniffer#0 Auto/ContentionRZLock 0 t= imes 00:00:20.281 /PDM/CritSects/AudioSniffer#0 Auto/ContentionRZUnlock 0= times 00:00:20.281 /PDM/CritSects/E1000#0/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/E1000#0/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/E1000#0/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/E1000#0RX/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/E1000#0RX/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/E1000#0RX/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/EM-REM/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/EM-REM/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/EM-REM/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/EmulatedATA0/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/EmulatedATA0/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/EmulatedATA0/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/EmulatedATA1/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/EmulatedATA1/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/EmulatedATA1/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/FTM/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/FTM/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/FTM/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/IOM Lock/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/IOM Lock/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/IOM Lock/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/MM-HYPER/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/MM-HYPER/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/MM-HYPER/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/NOP/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/NOP/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/NOP/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/PDM/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/PDM/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/PDM/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/PGM/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/PGM/ContentionRZLock 2 times 00:00:20.281 /PDM/CritSects/PGM/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/PS2KM#0/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/PS2KM#0/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/PS2KM#0/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/REM-Register/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/REM-Register/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/REM-Register/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/TM Timer Lock/ContentionR3 20 times 00:00:20.281 /PDM/CritSects/TM Timer Lock/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/TM Timer Lock/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/TM VirtualSync Lock/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/TM VirtualSync Lock/ContentionRZLock 287 t= imes 00:00:20.281 /PDM/CritSects/TM VirtualSync Lock/ContentionRZUnlock 0= times 00:00:20.281 /PDM/CritSects/VGA#u/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/VGA#u/ContentionRZLock 5 times 00:00:20.281 /PDM/CritSects/VGA#u/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/VMMDev#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/VMMDev#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/VMMDev#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/VMMDev#u/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/VMMDev#u/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/VMMDev#u/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/acpi0/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/acpi0/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/acpi0/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/ahci#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/ahci#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/ahci#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/e1000#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/e1000#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/e1000#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/hda#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/hda#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/hda#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/i8259#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/i8259#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/i8259#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/ioapic#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/ioapic#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/ioapic#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/mc146818#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/mc146818#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/mc146818#0 Auto/ContentionRZUnlock 0 tim= es 00:00:20.281 /PDM/CritSects/pcarch#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/pcarch#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/pcarch#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/pcbios#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/pcbios#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/pcbios#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/pci#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/pci#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/pci#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/pckbd#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/pckbd#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/pckbd#0 Auto/ContentionRZUnlock 0 times 00:00:20.281 /PDM/CritSects/piix3ide#0 Auto/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/piix3ide#0 Auto/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/piix3ide#0 Auto/ContentionRZUnlock 0 tim= es 00:00:20.281 /PDM/CritSects/pit/ContentionR3 0 times 00:00:20.281 /PDM/CritSects/pit/ContentionRZLock 0 times 00:00:20.281 /PDM/CritSects/pit/ContentionRZUnlock 0 times 00:00:20.282 /PDM/CritSects/usb-ohci#0 Auto/ContentionR3 0 times 00:00:20.282 /PDM/CritSects/usb-ohci#0 Auto/ContentionRZLock 0 times 00:00:20.282 /PDM/CritSects/usb-ohci#0 Auto/ContentionRZUnlock 0 tim= es 00:00:20.282 /PDM/CritSects/vga#0 Auto/ContentionR3 0 times 00:00:20.282 /PDM/CritSects/vga#0 Auto/ContentionRZLock 0 times 00:00:20.282 /PDM/CritSects/vga#0 Auto/ContentionRZUnlock 0 times 00:00:20.282 /PDM/Queue/AHCI-Xmit/AllocFailures 0 times 00:00:20.282 /PDM/Queue/AHCI-Xmit/Flush 0 calls 00:00:20.282 /PDM/Queue/AHCI-Xmit/FlushLeftovers 0 times 00:00:20.282 /PDM/Queue/AHCI-Xmit/Insert 0 calls 00:00:20.282 /PDM/Queue/AHCI-Xmit/cItems 60 count 00:00:20.282 /PDM/Queue/AHCI-Xmit/cbItem 16 bytes 00:00:20.282 /PDM/Queue/DevHlp/AllocFailures 0 times 00:00:20.282 /PDM/Queue/DevHlp/Flush 0 calls 00:00:20.282 /PDM/Queue/DevHlp/FlushLeftovers 0 times 00:00:20.282 /PDM/Queue/DevHlp/Insert 0 calls 00:00:20.282 /PDM/Queue/DevHlp/cItems 8 count 00:00:20.282 /PDM/Queue/DevHlp/cbItem 32 bytes 00:00:20.282 /PDM/Queue/E1000-Rcv/AllocFailures 0 times 00:00:20.282 /PDM/Queue/E1000-Rcv/Flush 0 calls 00:00:20.282 /PDM/Queue/E1000-Rcv/FlushLeftovers 0 times 00:00:20.282 /PDM/Queue/E1000-Rcv/Insert 0 calls 00:00:20.282 /PDM/Queue/E1000-Rcv/cItems 1 count 00:00:20.282 /PDM/Queue/E1000-Rcv/cbItem 16 bytes 00:00:20.282 /PDM/Queue/E1000-Xmit/AllocFailures 0 times 00:00:20.282 /PDM/Queue/E1000-Xmit/Flush 0 calls 00:00:20.282 /PDM/Queue/E1000-Xmit/FlushLeftovers 0 times 00:00:20.282 /PDM/Queue/E1000-Xmit/Insert 0 calls 00:00:20.282 /PDM/Queue/E1000-Xmit/cItems 1 count 00:00:20.282 /PDM/Queue/E1000-Xmit/cbItem 16 bytes 00:00:20.282 /PDM/Queue/Keyboard/AllocFailures 0 times 00:00:20.282 /PDM/Queue/Keyboard/Flush 0 calls 00:00:20.282 /PDM/Queue/Keyboard/FlushLeftovers 0 times 00:00:20.282 /PDM/Queue/Keyboard/Insert 0 calls 00:00:20.282 /PDM/Queue/Keyboard/cItems 64 count 00:00:20.282 /PDM/Queue/Keyboard/cbItem 16 bytes 00:00:20.282 /PDM/Queue/Mouse/AllocFailures 0 times 00:00:20.282 /PDM/Queue/Mouse/Flush 0 calls 00:00:20.282 /PDM/Queue/Mouse/FlushLeftovers 0 times 00:00:20.282 /PDM/Queue/Mouse/Insert 0 calls 00:00:20.282 /PDM/Queue/Mouse/cItems 128 count 00:00:20.282 /PDM/Queue/Mouse/cbItem 48 bytes 00:00:20.282 /PDM/Queue/Mouse_1/AllocFailures 0 times 00:00:20.282 /PDM/Queue/Mouse_1/Flush 0 calls 00:00:20.282 /PDM/Queue/Mouse_1/FlushLeftovers 0 times 00:00:20.282 /PDM/Queue/Mouse_1/Insert 0 calls 00:00:20.282 /PDM/Queue/Mouse_1/cItems 128 count 00:00:20.282 /PDM/Queue/Mouse_1/cbItem 48 bytes 00:00:20.282 /PGM/CPU0/cGuestModeChanges 7621 times 00:00:20.282 /PGM/CPU1/cGuestModeChanges 1 times 00:00:20.282 /PGM/ChunkR3Map/Mapped 115 count 00:00:20.282 /PGM/ChunkR3Map/Unmapped 0 count 00:00:20.282 /PGM/ChunkR3Map/c 115 count 00:00:20.282 /PGM/ChunkR3Map/cMax 512 count 00:00:20.282 /PGM/LargePage/Recheck 0 times 00:00:20.282 /PGM/LargePage/Refused 0 times 00:00:20.282 /PGM/LargePage/Reused 0 times 00:00:20.282 /PGM/Page/cAllPages 296011 count 00:00:20.282 /PGM/Page/cBalloonedPages 0 count 00:00:20.282 /PGM/Page/cHandyPages 100 count 00:00:20.282 /PGM/Page/cLargePages 0 count 00:00:20.282 /PGM/Page/cLargePagesDisabled 0 count 00:00:20.282 /PGM/Page/cMonitoredPages 0 count 00:00:20.282 /PGM/Page/cPrivatePages 92565 count 00:00:20.282 /PGM/Page/cPureMmioPages 41 count 00:00:20.282 /PGM/Page/cReadLockedPages 0 count 00:00:20.282 /PGM/Page/cReusedSharedPages 0 count 00:00:20.282 /PGM/Page/cSharedPages 0 count 00:00:20.282 /PGM/Page/cWriteLockedPages 0 count 00:00:20.282 /PGM/Page/cWrittenToPages 0 count 00:00:20.282 /PGM/Page/cZeroPages 203405 count 00:00:20.282 /PGM/ShMod/Check 0 ticks/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PGM/cRelocations 0 times 00:00:20.282 /PROF/CPU0/EM/Capped 0 ticks/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/CPU0/EM/ForcedActions 22566 times 00:00:20.282 /PROF/CPU0/EM/Halted 161 times 00:00:20.282 /PROF/CPU0/EM/RAWTotal 0 times 00:00:20.282 /PROF/CPU0/EM/REMTotal 7618 times 00:00:20.282 /PROF/CPU0/EM/Total 48505381743 ticks/call ( 4850= 5381743 ticks, 1 times, max 48505381743, min 48505381743) 00:00:20.282 /PROF/CPU1/EM/Capped 0 ticks/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/CPU1/EM/ForcedActions 374 times 00:00:20.282 /PROF/CPU1/EM/Halted 373 times 00:00:20.282 /PROF/CPU1/EM/RAWTotal 0 times 00:00:20.282 /PROF/CPU1/EM/REMTotal 0 times 00:00:20.282 /PROF/CPU1/EM/Total 48503954720 ticks/call ( 4850= 3954720 ticks, 1 times, max 48503954720, min 48503954720) 00:00:20.282 /PROF/VM/CPU0/Halt/Block 15137796 ns/call ( 243718523= 3 ticks, 161 times, max 20424928, min 596509) 00:00:20.282 /PROF/VM/CPU0/Halt/BlockInsomnia 0 ns/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/VM/CPU0/Halt/BlockOnTime 0 ns/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/VM/CPU0/Halt/BlockOverslept 0 ns/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/VM/CPU0/Halt/Timers 205 ns/call ( 6609= 3 ticks, 322 times, max 700, min 119) 00:00:20.282 /PROF/VM/CPU0/Halt/Yield 0 ns/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/VM/CPU1/Halt/Block 1909178 ns/call ( 1715778277= 0 ticks, 8987 times, max 94505214, min 1) 00:00:20.282 /PROF/VM/CPU1/Halt/BlockInsomnia 0 ns/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/VM/CPU1/Halt/BlockOnTime 0 ns/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/VM/CPU1/Halt/BlockOverslept 0 ns/call ( = 0 ticks, 0 times, max 0, min -1) 00:00:20.282 /PROF/VM/CPU1/Halt/Timers 3487 ns/call ( 11940215= 5 ticks, 34239 times, max 39592690, min 2) 00:00:20.282 /PROF/VM/CPU1/Halt/Yield 1414 ns/call ( 141= 4 ticks, 1 times, max 1414, min 1414) 00:00:20.282 /REM/TbFlushCount 3809 times 00:00:20.282 /REM/TbPhysInvldCount 5405 times 00:00:20.282 /REM/TlbFlushCount 15318 times 00:00:20.282 /TM/CPU/00/cNsExecuting 13380724102 ns 00:00:20.282 /TM/CPU/00/cNsHalted 2437443656 ns 00:00:20.282 /TM/CPU/00/cNsOther 1548775724 ns 00:00:20.282 /TM/CPU/00/cNsTotal 17366943482 ns 00:00:20.282 /TM/CPU/00/cPeriodsExecuting 238380 count 00:00:20.282 /TM/CPU/00/cPeriodsHalted 161 count 00:00:20.282 /TM/CPU/00/pctExecuting 93 % 00:00:20.282 /TM/CPU/00/pctHalted 0 % 00:00:20.282 /TM/CPU/00/pctOther 6 % 00:00:20.282 /TM/CPU/01/cNsExecuting 0 ns 00:00:20.282 /TM/CPU/01/cNsHalted 17294073774 ns 00:00:20.282 /TM/CPU/01/cNsOther 72363612 ns 00:00:20.282 /TM/CPU/01/cNsTotal 17366437386 ns 00:00:20.282 /TM/CPU/01/cPeriodsExecuting 0 count 00:00:20.282 /TM/CPU/01/cPeriodsHalted 373 count 00:00:20.282 /TM/CPU/01/pctExecuting 0 % 00:00:20.282 /TM/CPU/01/pctHalted 99 % 00:00:20.282 /TM/CPU/01/pctOther 0 % 00:00:20.282 /TM/CPU/pctExecuting 42 % 00:00:20.282 /TM/CPU/pctHalted 54 % 00:00:20.282 /TM/CPU/pctOther 3 % 00:00:20.282 /TM/MaxHzHint 0 Hz 00:00:20.282 /TM/R0/1nsSteps 23495 times 00:00:20.282 /TM/R3/1nsSteps 23921 times 00:00:20.282 /TM/TSC/offCPU0 679897 ticks 00:00:20.282 /TM/TSC/offCPU1 0 ticks 00:00:20.282 /TM/VirtualSync/CurrentOffset 744670 ns 00:00:20.282 /VUSB/0/cUrbsInPool 0 count 00:00:20.282 ********************* End of statistics ********************** 00:00:20.299 NAT: zone(nm:mbuf, used:0) 00:00:20.299 NAT: zone(nm:mbuf_cluster, used:0) 00:00:20.299 NAT: zone(nm:mbuf_packet, used:0) 00:00:20.299 NAT: zone(nm:mbuf_jumbo_pagesize, used:0) 00:00:20.299 NAT: zone(nm:mbuf_jumbo_9k, used:0) 00:00:20.299 NAT: zone(nm:mbuf_jumbo_16k, used:0) 00:00:20.300 OSS: Closed /dev/dsp for DAC 00:00:20.300 OSS: Closed /dev/dsp for ADC 00:00:20.306 Changing the VM state from 'DESTROYING' to 'TERMINATED'. --EeQfGwPcQSOJBaQU--