From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 06:24:10 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 8B728106566B; Sun, 19 Jul 2009 06:24:09 +0000 (UTC) (envelope-from nork@FreeBSD.org) Date: Sun, 19 Jul 2009 15:24:07 +0900 From: Norikatsu Shigemura To: Christophe Fillot Message-Id: <20090719152407.c9f3b912.nork@FreeBSD.org> X-Mailer: Sylpheed 2.6.0 (GTK+ 2.16.4; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Sun__19_Jul_2009_15_24_07_+0900_HNiXccZAy.jMgNZB" Cc: Max, freebsd-emulation@FreeBSD.org, Pavel Volkov , Norikatsu Shigemura , Khon Subject: Dynamips has two minor bugs. 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 Jul 2009 06:24:10 -0000 This is a multi-part message in MIME format. --Multipart=_Sun__19_Jul_2009_15_24_07_+0900_HNiXccZAy.jMgNZB Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi Christophe, and FreeBSD's dynamips port maintainer. I found two minor bugs. 1. dynamips -m can't parse Cisco format (0001.0002.0003), because parse_mac_addr() can parse it, but not return(0). Please see also attached 'patch-net.c'. 2. dynamips can't communicate to real world via FreeBSD's gen_eth (libpcap). In this case, bpf(4) requires BIOCFEEDBACK. So I investigated like attached 'patch-gen_eth.c'. SEE ALSO: http://lists.freebsd.org/pipermail/freebsd-net/2009-July/022423.html >> ports maintainers May I commit these patch to ports/emulators/dynamips-devel (0.2.8RC2) and ports/emulators/dynamips (0.2.7)? --Multipart=_Sun__19_Jul_2009_15_24_07_+0900_HNiXccZAy.jMgNZB Content-Type: text/plain; name="patch-net.c" Content-Disposition: attachment; filename="patch-net.c" Content-Transfer-Encoding: 7bit --- net.c.orig 2007-10-14 17:43:07.000000000 +0900 +++ net.c 2009-07-19 15:03:19.654842448 +0900 @@ -209,6 +209,7 @@ int parse_mac_addr(n_eth_addr_t *addr,ch addr->eth_addr_byte[3] = v[1] & 0xFF; addr->eth_addr_byte[4] = (v[2] >> 8) & 0xFF; addr->eth_addr_byte[5] = v[2] & 0xFF; + return(0); } return(-1); --Multipart=_Sun__19_Jul_2009_15_24_07_+0900_HNiXccZAy.jMgNZB Content-Type: text/plain; name="patch-gen_eth.c" Content-Disposition: attachment; filename="patch-gen_eth.c" Content-Transfer-Encoding: 7bit --- gen_eth.c.orig 2007-10-14 17:43:08.000000000 +0900 +++ gen_eth.c 2009-07-19 15:02:43.491124095 +0900 @@ -45,8 +45,13 @@ pcap_t *gen_eth_init(char *device) if (!(p = pcap_open_live(device,2048,TRUE,10,pcap_errbuf))) goto pcap_error; - /* Accept only incoming packets */ - pcap_setdirection(p,PCAP_D_IN); + pcap_setdirection(p,PCAP_D_INOUT); +#ifdef BIOCFEEDBACK + { + in on = 1; + ioctl(pcap_fileno(p), BIOCFEEDBACK, &on); + } +#endif #else p = pcap_open(device,2048, PCAP_OPENFLAG_PROMISCUOUS | --Multipart=_Sun__19_Jul_2009_15_24_07_+0900_HNiXccZAy.jMgNZB-- From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 09:08:02 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from hub.freebsd.org (localhost [127.0.0.1]) by hub.freebsd.org (Postfix) with ESMTP id 5C450106564A; Sun, 19 Jul 2009 09:08:01 +0000 (UTC) (envelope-from nork@FreeBSD.org) Date: Sun, 19 Jul 2009 18:07:53 +0900 From: Norikatsu Shigemura To: Christophe Fillot Message-Id: <20090719180754.eaeebccb.nork@FreeBSD.org> In-Reply-To: <20090719152407.c9f3b912.nork@FreeBSD.org> References: <20090719152407.c9f3b912.nork@FreeBSD.org> X-Mailer: Sylpheed 2.6.0 (GTK+ 2.16.4; i386-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart=_Sun__19_Jul_2009_18_07_54_+0900_+d0PAEx6tyl4SbUZ" Cc: Max, freebsd-emulation@FreeBSD.org, Pavel Volkov , Norikatsu Shigemura , Khon Subject: Re: Dynamips has two minor bugs. 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 Jul 2009 09:08:02 -0000 This is a multi-part message in MIME format. --Multipart=_Sun__19_Jul_2009_18_07_54_+0900_+d0PAEx6tyl4SbUZ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sun, 19 Jul 2009 15:24:07 +0900 Norikatsu Shigemura wrote: > 2. dynamips can't communicate to real world via FreeBSD's gen_eth > (libpcap). In this case, bpf(4) requires BIOCFEEDBACK. So I > investigated like attached 'patch-gen_eth.c'. Oops, I missed! I re-made a new patch. Please see attached file. --Multipart=_Sun__19_Jul_2009_18_07_54_+0900_+d0PAEx6tyl4SbUZ Content-Type: text/plain; name="patch-gen_eth.c" Content-Disposition: attachment; filename="patch-gen_eth.c" Content-Transfer-Encoding: 7bit --- gen_eth.c.orig 2007-10-14 17:43:08.000000000 +0900 +++ gen_eth.c 2009-07-19 15:46:08.291856897 +0900 @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -45,8 +46,13 @@ pcap_t *gen_eth_init(char *device) if (!(p = pcap_open_live(device,2048,TRUE,10,pcap_errbuf))) goto pcap_error; - /* Accept only incoming packets */ - pcap_setdirection(p,PCAP_D_IN); + pcap_setdirection(p,PCAP_D_INOUT); +#ifdef BIOCFEEDBACK + { + int on = 1; + ioctl(pcap_fileno(p), BIOCFEEDBACK, &on); + } +#endif #else p = pcap_open(device,2048, PCAP_OPENFLAG_PROMISCUOUS | --Multipart=_Sun__19_Jul_2009_18_07_54_+0900_+d0PAEx6tyl4SbUZ-- From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 13:54:28 2009 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 8F054106566C; Sun, 19 Jul 2009 13:54:28 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from aiolos.otenet.gr (aiolos.otenet.gr [83.235.67.30]) by mx1.freebsd.org (Postfix) with ESMTP id A16368FC14; Sun, 19 Jul 2009 13:54:27 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4494041.home.otenet.gr [94.71.94.225]) by aiolos.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n6J82xGp025181; Sun, 19 Jul 2009 11:03:00 +0300 Message-ID: <4A62D333.9090203@otenet.gr> Date: Sun, 19 Jul 2009 11:02:59 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.22 (X11/20090702) MIME-Version: 1.0 To: "Marc G. Fournier" References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 19 Jul 2009 15:08:35 +0000 Cc: Tom Rhodes , "doc@FreeBSD.org" , Gabor PALI , Daichi GOTO , "Simon L. Nielsen" , freebsd-emulation@freebsd.org, Giorgos Keramidas , Rene Ladan Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 13:54:29 -0000 Marc G. Fournier wrote: > On Sat, 18 Jul 2009, Manolis Kiagias wrote: > >> But isn't qemu distinctly different in the way it works from a >> virtualization program like VMWare or VirtualBox? I think the first >> paragraph serves well as a gentle introduction to the topic. > > How different? Wine, I could see, but qemu? Please elaborate ... > AFAIK qemu also provides processor emulation, thus is mostly referred to as an emulator rather than a virtual machine. I am no expert on this though - I've used qemu in the past but could never get the level of performance possible with VirtualBox or VMWare (which beats them both I believe). The paragraph was loosely based on the original one stating "No virtualization solution for FreeBSD as a host". Seems the original author also did not consider qemu as a virtual machine in this sense. From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 17:11:45 2009 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 CF25A1065673; Sun, 19 Jul 2009 17:11:45 +0000 (UTC) (envelope-from manolis@FreeBSD.org) Received: from aiolos.otenet.gr (aiolos.otenet.gr [83.235.67.30]) by mx1.freebsd.org (Postfix) with ESMTP id 44D028FC2A; Sun, 19 Jul 2009 17:11:45 +0000 (UTC) (envelope-from manolis@FreeBSD.org) Received: from atomic.dyndns.org (athedsl-4471496.home.otenet.gr [94.71.122.184]) by aiolos.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n6JHBgia020952; Sun, 19 Jul 2009 20:11:42 +0300 Message-ID: <4A6353CE.7060403@FreeBSD.org> Date: Sun, 19 Jul 2009 20:11:42 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.22 (X11/20090702) MIME-Version: 1.0 To: "Simon L. Nielsen" References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> In-Reply-To: <20090719164310.GD1164@arthur.nitro.dk> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: Tom Rhodes , doc@FreeBSD.org, pgj@FreeBSD.org, daichi@FreeBSD.org, scrappy@hub.org, freebsd-emulation@FreeBSD.org, keramida@FreeBSD.org, rene@FreeBSD.org Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 17:11:46 -0000 Simon L. Nielsen wrote: > On 2009.07.19 11:34:38 -0400, Tom Rhodes wrote: > >> On Sun, 19 Jul 2009 11:02:59 +0300 >> Manolis Kiagias wrote: >> >> >>> Marc G. Fournier wrote: >>> >>>> On Sat, 18 Jul 2009, Manolis Kiagias wrote: >>>> >>>> >>>>> But isn't qemu distinctly different in the way it works from a >>>>> virtualization program like VMWare or VirtualBox? I think the first >>>>> paragraph serves well as a gentle introduction to the topic. >>>>> >>>> How different? Wine, I could see, but qemu? Please elaborate ... >>>> >>> AFAIK qemu also provides processor emulation, thus is mostly referred to >>> as an emulator rather than a virtual machine. I am no expert on this >>> though - I've used qemu in the past but could never get the level of >>> performance possible with VirtualBox or VMWare (which beats them both I >>> believe). >>> >> Interesting - see, I tried doing an install of qemu a long >> while ago but never went beyond installing it. Though, from >> what I have read, I would not consider it a "virtual machine >> host solution" either. While I understand it runs image files, >> I don't think it's geared for several OS images, running >> concurrently. Again, note, I only installed - and when the >> image I had (passed by a friend) failed to run, I just removed >> it. >> > > I really don't see the big difference between qemu and VMware / > Virtual Box. qemu is more flexible in hardware support - VMware (and > Virtual Box?) is faster. > > Just like VMware server multiple concurrent virtual machines just run > in different processes. Yes, qemu is slower than VMware but e.g. for > testing og kernel hacking it works nicely. I can't comment on Virtual > Box's speed as I haven't tried it. > > [reordered] > > >>> The paragraph was loosely based on the original one stating "No >>> virtualization solution for FreeBSD as a host". Seems the original >>> author also did not consider qemu as a virtual machine in this sense. >>> > > Yes, it came from there, it wasn't any more correct IMO there :-). > > I guess my basic problem with the paragraph is that it seems to me to > be praising Sun a tad much for releasing Virtual Box while ignoring > that qemu has been available freely for years, but perhaps that's just > me. > > This is a good point, and one I have not actually considered. I believe Qemu is not mentioned anywhere in the Handbook and I guess it deserves a place here. > Anyway, I think I made my point and I will let it be up to Manolis as > the author was should be in the section and what should not. > > I will start writing a section on qemu. Installation is probably easier than VirtualBox, but since this is actually a command line tool, it will be interesting to show a few examples on installing a guest system etc. Will then rephrase this introduction paragraph accordingly. Will send in the patch for review here when it is ready (I need to brush up a bit on my qemu skills, haven't used it for a while). I have the patches for the trademark stuff you suggested and will commit them later on tonight - when my afternoon headache is hopefully over... Thanks! From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 15:57:38 2009 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 2BECF106566C; Sun, 19 Jul 2009 15:57:38 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from gloomweaver.pittgoth.com (gloomweaver.pittgoth.com [205.134.165.107]) by mx1.freebsd.org (Postfix) with ESMTP id DC69D8FC13; Sun, 19 Jul 2009 15:57:37 +0000 (UTC) (envelope-from trhodes@FreeBSD.org) Received: from localhost.fbsdsecure.org (c-76-21-171-252.hsd1.va.comcast.net [76.21.171.252]) (authenticated bits=0) by gloomweaver.pittgoth.com (8.14.3/8.14.3) with ESMTP id n6JFb6kb044531 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 19 Jul 2009 11:37:07 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Sun, 19 Jul 2009 11:34:38 -0400 From: Tom Rhodes To: Manolis Kiagias Message-Id: <20090719113438.07c05110.trhodes@FreeBSD.org> In-Reply-To: <4A62D333.9090203@otenet.gr> References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 19 Jul 2009 18:11:38 +0000 Cc: trhodes@FreeBSD.org, doc@FreeBSD.org, pgj@FreeBSD.org, daichi@FreeBSD.org, simon@FreeBSD.org, scrappy@hub.org, freebsd-emulation@FreeBSD.org, keramida@FreeBSD.org, rene@FreeBSD.org, manolis@FreeBSD.org Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 15:57:38 -0000 On Sun, 19 Jul 2009 11:02:59 +0300 Manolis Kiagias wrote: > Marc G. Fournier wrote: > > On Sat, 18 Jul 2009, Manolis Kiagias wrote: > > > >> But isn't qemu distinctly different in the way it works from a > >> virtualization program like VMWare or VirtualBox? I think the first > >> paragraph serves well as a gentle introduction to the topic. > > > > How different? Wine, I could see, but qemu? Please elaborate ... > > > > AFAIK qemu also provides processor emulation, thus is mostly referred to > as an emulator rather than a virtual machine. I am no expert on this > though - I've used qemu in the past but could never get the level of > performance possible with VirtualBox or VMWare (which beats them both I > believe). > > The paragraph was loosely based on the original one stating "No > virtualization solution for FreeBSD as a host". Seems the original > author also did not consider qemu as a virtual machine in this sense. > Interesting - see, I tried doing an install of qemu a long while ago but never went beyond installing it. Though, from what I have read, I would not consider it a "virtual machine host solution" either. While I understand it runs image files, I don't think it's geared for several OS images, running concurrently. Again, note, I only installed - and when the image I had (passed by a friend) failed to run, I just removed it. In the end, my virtualization solution has been VMWare ESXi, and VirtualBox only on a Linux host. So, I reserve the right to be wrong. :P -- Tom Rhodes From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 16:43:11 2009 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 6EA78106568A; Sun, 19 Jul 2009 16:43:11 +0000 (UTC) (envelope-from simon@nitro.dk) Received: from mx.nitro.dk (zarniwoop.nitro.dk [83.92.207.38]) by mx1.freebsd.org (Postfix) with ESMTP id 1F50B8FC2E; Sun, 19 Jul 2009 16:43:11 +0000 (UTC) (envelope-from simon@nitro.dk) Received: from arthur.nitro.dk (arthur.bofh [192.168.2.3]) by mx.nitro.dk (Postfix) with ESMTP id 6F0F22D4906; Sun, 19 Jul 2009 16:43:10 +0000 (UTC) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 6894F5C14; Sun, 19 Jul 2009 18:43:10 +0200 (CEST) Date: Sun, 19 Jul 2009 18:43:10 +0200 From: "Simon L. Nielsen" To: Tom Rhodes Message-ID: <20090719164310.GD1164@arthur.nitro.dk> References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090719113438.07c05110.trhodes@FreeBSD.org> User-Agent: Mutt/1.5.20 (2009-06-14) X-Mailman-Approved-At: Sun, 19 Jul 2009 19:21:15 +0000 Cc: Manolis Kiagias , doc@FreeBSD.org, pgj@FreeBSD.org, daichi@FreeBSD.org, scrappy@hub.org, freebsd-emulation@FreeBSD.org, keramida@FreeBSD.org, rene@FreeBSD.org, manolis@FreeBSD.org Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 16:43:12 -0000 On 2009.07.19 11:34:38 -0400, Tom Rhodes wrote: > On Sun, 19 Jul 2009 11:02:59 +0300 > Manolis Kiagias wrote: > > > Marc G. Fournier wrote: > > > On Sat, 18 Jul 2009, Manolis Kiagias wrote: > > > > > >> But isn't qemu distinctly different in the way it works from a > > >> virtualization program like VMWare or VirtualBox? I think the first > > >> paragraph serves well as a gentle introduction to the topic. > > > > > > How different? Wine, I could see, but qemu? Please elaborate ... > > > > AFAIK qemu also provides processor emulation, thus is mostly referred to > > as an emulator rather than a virtual machine. I am no expert on this > > though - I've used qemu in the past but could never get the level of > > performance possible with VirtualBox or VMWare (which beats them both I > > believe). > > Interesting - see, I tried doing an install of qemu a long > while ago but never went beyond installing it. Though, from > what I have read, I would not consider it a "virtual machine > host solution" either. While I understand it runs image files, > I don't think it's geared for several OS images, running > concurrently. Again, note, I only installed - and when the > image I had (passed by a friend) failed to run, I just removed > it. I really don't see the big difference between qemu and VMware / Virtual Box. qemu is more flexible in hardware support - VMware (and Virtual Box?) is faster. Just like VMware server multiple concurrent virtual machines just run in different processes. Yes, qemu is slower than VMware but e.g. for testing og kernel hacking it works nicely. I can't comment on Virtual Box's speed as I haven't tried it. [reordered] > > The paragraph was loosely based on the original one stating "No > > virtualization solution for FreeBSD as a host". Seems the original > > author also did not consider qemu as a virtual machine in this sense. Yes, it came from there, it wasn't any more correct IMO there :-). I guess my basic problem with the paragraph is that it seems to me to be praising Sun a tad much for releasing Virtual Box while ignoring that qemu has been available freely for years, but perhaps that's just me. Anyway, I think I made my point and I will let it be up to Manolis as the author was should be in the section and what should not. -- Simon L. Nielsen From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 18:09:12 2009 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 CD232106564A; Sun, 19 Jul 2009 18:09:12 +0000 (UTC) (envelope-from pali.gabor@googlemail.com) Received: from mail-bw0-f208.google.com (mail-bw0-f208.google.com [209.85.218.208]) by mx1.freebsd.org (Postfix) with ESMTP id DA42B8FC0A; Sun, 19 Jul 2009 18:09:10 +0000 (UTC) (envelope-from pali.gabor@googlemail.com) Received: by bwz4 with SMTP id 4so1421654bwz.43 for ; Sun, 19 Jul 2009 11:09:09 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:sender:received:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:content-transfer-encoding; bh=RZ8RBhzRHqKgS/MI8iV5XGjwrpd4HHiaLNBgfWVoHMU=; b=F5xuPv0MDdBZw8WWCIOo4APxIHXZ24rFYCAdf7Z6MVG1Slu6ziA2oD5P0r1nB0hbcl 3/tbVKtuA80t6Fb3VfDxg6ynHDhMWDIEsk5Iu0XCaGtmx7jBtwAJtXPWH3TIj3uo8bFg hJSQ/1BjPQyUqCVyY5RFHl5gJ0nuXKeSCpHkg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; b=w/u27IxYFEh6vP/QmseJgPtmuyFuyd8XB8fW6E6WdAV0w4zIU9E50XqlpGC/KnTnJq QafuqN2l2rebfipJCJWLDrEKUFGoG8pws4nKAnBcEy6ntaVpIoI1GwpGcMLMu0JNcg8Z rVGxAjG9rMnOmdhQ8p46ZurVXKzaPQfv5i8yA= MIME-Version: 1.0 Sender: pali.gabor@googlemail.com Received: by 10.223.125.144 with SMTP id y16mr942783far.93.1248025557525; Sun, 19 Jul 2009 10:45:57 -0700 (PDT) In-Reply-To: <4A6353CE.7060403@FreeBSD.org> References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> <4A6353CE.7060403@FreeBSD.org> Date: Sun, 19 Jul 2009 19:45:57 +0200 X-Google-Sender-Auth: 36c2fd019bba7c65 Message-ID: <685a6ef80907191045p49fdbe1fm6f7697388b7fa3bd@mail.gmail.com> From: Gabor PALI To: Manolis Kiagias Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 19 Jul 2009 19:21:23 +0000 Cc: Tom Rhodes , doc@freebsd.org, daichi@freebsd.org, "Simon L. Nielsen" , scrappy@hub.org, freebsd-emulation@freebsd.org, keramida@freebsd.org, rene@freebsd.org, loader@freebsd.org Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 18:09:13 -0000 Hey Manolis, On Sun, Jul 19, 2009 at 7:11 PM, Manolis Kiagias wrote: > I will start writing a section on qemu. For your information, there is a PR [1] about adding a section on qemu to the Handbook. You should contact its responsible (loader@, CCed, just for sure), because he might have something on the topic. Hope that helps, :g [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/127923 From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 18:41:51 2009 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 008C110656A3 for ; Sun, 19 Jul 2009 18:41:51 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 7108B8FC12 for ; Sun, 19 Jul 2009 18:41:50 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 0CECA1E002B2; Sun, 19 Jul 2009 20:41:49 +0200 (CEST) Received: from triton.kn-bremen.de (noident@localhost [127.0.0.1]) by triton.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n6JIeclc067442; Sun, 19 Jul 2009 20:40:38 +0200 (CEST) (envelope-from nox@triton.kn-bremen.de) Received: (from nox@localhost) by triton.kn-bremen.de (8.14.3/8.14.3/Submit) id n6JIebPe067441; Sun, 19 Jul 2009 20:40:37 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sun, 19 Jul 2009 20:40:37 +0200 To: Manolis Kiagias Message-ID: <20090719184037.GA67283@triton.kn-bremen.de> References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> <4A6353CE.7060403@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4A6353CE.7060403@FreeBSD.org> User-Agent: Mutt/1.5.20 (2009-06-14) X-Mailman-Approved-At: Sun, 19 Jul 2009 19:27:30 +0000 Cc: Tom Rhodes , doc@FreeBSD.org, pgj@FreeBSD.org, daichi@FreeBSD.org, "Simon L. Nielsen" , scrappy@hub.org, freebsd-emulation@FreeBSD.org, keramida@FreeBSD.org, rene@FreeBSD.org Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 18:41:51 -0000 On Sun, Jul 19, 2009 at 08:11:42PM +0300, Manolis Kiagias wrote: > Simon L. Nielsen wrote: > > On 2009.07.19 11:34:38 -0400, Tom Rhodes wrote: > > > >> On Sun, 19 Jul 2009 11:02:59 +0300 > >> Manolis Kiagias wrote: > >> > >> > >>> Marc G. Fournier wrote: > >>> > >>>> On Sat, 18 Jul 2009, Manolis Kiagias wrote: > >>>> > >>>> > >>>>> But isn't qemu distinctly different in the way it works from a > >>>>> virtualization program like VMWare or VirtualBox? I think the first > >>>>> paragraph serves well as a gentle introduction to the topic. > >>>>> > >>>> How different? Wine, I could see, but qemu? Please elaborate ... > >>>> > >>> AFAIK qemu also provides processor emulation, thus is mostly referred to > >>> as an emulator rather than a virtual machine. I am no expert on this > >>> though - I've used qemu in the past but could never get the level of > >>> performance possible with VirtualBox or VMWare (which beats them both I > >>> believe). > >>> > >> Interesting - see, I tried doing an install of qemu a long > >> while ago but never went beyond installing it. Though, from > >> what I have read, I would not consider it a "virtual machine > >> host solution" either. While I understand it runs image files, > >> I don't think it's geared for several OS images, running > >> concurrently. Again, note, I only installed - and when the > >> image I had (passed by a friend) failed to run, I just removed > >> it. > >> > > > > I really don't see the big difference between qemu and VMware / > > Virtual Box. qemu is more flexible in hardware support - VMware (and > > Virtual Box?) is faster. > > > > Just like VMware server multiple concurrent virtual machines just run > > in different processes. Yes, qemu is slower than VMware but e.g. for > > testing og kernel hacking it works nicely. I can't comment on Virtual > > Box's speed as I haven't tried it. > > > > [reordered] > > > > > >>> The paragraph was loosely based on the original one stating "No > >>> virtualization solution for FreeBSD as a host". Seems the original > >>> author also did not consider qemu as a virtual machine in this sense. > >>> > > > > Yes, it came from there, it wasn't any more correct IMO there :-). > > > > I guess my basic problem with the paragraph is that it seems to me to > > be praising Sun a tad much for releasing Virtual Box while ignoring > > that qemu has been available freely for years, but perhaps that's just > > me. > > > > > > This is a good point, and one I have not actually considered. > I believe Qemu is not mentioned anywhere in the Handbook and I guess it > deserves a place here. > > > Anyway, I think I made my point and I will let it be up to Manolis as > > the author was should be in the section and what should not. > > > > > I will start writing a section on qemu. Installation is probably easier > than VirtualBox, but since this is actually a command line tool, it will > be interesting to show a few examples on installing a guest system etc. > Will then rephrase this introduction paragraph accordingly. Will send > in the patch for review here when it is ready (I need to brush up a bit > on my qemu skills, haven't used it for a while). Actually I started a handbook section on qemu a while ago already, see this thread: http://lists.freebsd.org/pipermail/freebsd-doc/2008-December/015248.html So it was worked on, but apparently never got committed... Just thought I'd mention... :) Juergen From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 19:35:35 2009 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 F0725106564A; Sun, 19 Jul 2009 19:35:34 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-bw0-f208.google.com (mail-bw0-f208.google.com [209.85.218.208]) by mx1.freebsd.org (Postfix) with ESMTP id 005998FC1B; Sun, 19 Jul 2009 19:35:32 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by bwz4 with SMTP id 4so1444300bwz.43 for ; Sun, 19 Jul 2009 12:35:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=aKocNbykJk9RneJ/WD8umm4pkRIXXonpYv31HHadpcM=; b=i0f+9kRb1kpFTQuPdUZZ8e/dvfcj3KFyGBnlTrs/y9cXNLoHXH0GPQCxqX5Z1nGm9O ZyulB28/0pDgmxj3L0Ri7fQVZg8ONBSRPpCBSrlPpwqXh01pJA6CtVdQ6MxcOXv+gk54 fgRFN8C4/1jqswUMMfo0VEt81OGl6NWTfxE5M= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=U/SZkkIh72t593NJPAPgBMtGJCKxE4n7NTD8NI8DeJAzQsXFdEbR8Q6cnDGoDJG6Ox ugtzI9zRzGUaqswNkyRzkLy5lMxtTJHKARcw2ID1lOlVauAxZPeaY8aNYESTbLOl+OuJ SlusPLxEo3YlRQAwFFd48kVAIwfo3sSh4a59Q= MIME-Version: 1.0 Received: by 10.223.120.197 with SMTP id e5mr963370far.25.1248030662946; Sun, 19 Jul 2009 12:11:02 -0700 (PDT) In-Reply-To: <4A6353CE.7060403@FreeBSD.org> References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> <4A6353CE.7060403@FreeBSD.org> Date: Sun, 19 Jul 2009 15:11:02 -0400 Message-ID: <4ad871310907191211i7fb8a7f5qb146ed8b2038f06e@mail.gmail.com> From: Glen Barber To: Manolis Kiagias Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 19 Jul 2009 19:40:15 +0000 Cc: Tom Rhodes , doc@freebsd.org, pgj@freebsd.org, daichi@freebsd.org, "Simon L. Nielsen" , scrappy@hub.org, freebsd-emulation@freebsd.org, keramida@freebsd.org, rene@freebsd.org Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 19:35:35 -0000 On Sun, Jul 19, 2009 at 1:11 PM, Manolis Kiagias wrote: [really big snip] > > This is a good point, and one I have not actually considered. > I believe Qemu is not mentioned anywhere in the Handbook and I guess it > deserves a place here. > While it is not mentioned in the Handbook, there is a Wiki page about Qemu [1]. Out of curiosity however, I remember nox@ mentioning that KQemu will no longer be developed [2]. My interpretation of that announcement was that Qemu will no longer be developed as well. Is this incorrect? [1] - http://wiki.freebsd.org/qemu [2] - http://www.nabble.com/plans-to-retire-kqemu-(poll)-td23893816.html -- Glen Barber From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 20:53:40 2009 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 08FE21065675 for ; Sun, 19 Jul 2009 20:53:40 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from marvin.chruetertee.ch (marvin.chruetertee.ch [217.150.245.55]) by mx1.freebsd.org (Postfix) with ESMTP id 89FB78FC18 for ; Sun, 19 Jul 2009 20:53:39 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from daedalus.network.local (200-9.3-85.cust.bluewin.ch [85.3.9.200]) (authenticated bits=0) by marvin.chruetertee.ch (8.14.3/8.14.3) with ESMTP id n6JKaNOB019924 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sun, 19 Jul 2009 20:36:23 GMT (envelope-from beat@FreeBSD.org) Message-ID: <4A63840D.7050404@FreeBSD.org> Date: Sun, 19 Jul 2009 22:37:33 +0200 From: Beat Gaetzi User-Agent: Thunderbird 2.0.0.22 (X11/20090713) MIME-Version: 1.0 To: Boris References: In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@FreeBSD.org Subject: Re: Compilation failure on SVN version of vbox port 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 Jul 2009 20:53:40 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Hi, Boris wrote: > Hi all, > > I have tried the last version of vbox port : virtualbox-3.0.51r21573 > unfortunately I got compilation error: > I am running 8-BETA2 amd64 : > FreeBSD houdini 8.0-BETA2 FreeBSD 8.0-BETA2 #7: Sat Jul 18 22:42:20 BST > 2009 root@houdini:/usr/obj/usr/src/sys/CUSTGEN amd64 > [...] > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c: > In function 'RTR0MemUserCopyFrom': > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:43: > error: expected ')' before 'user_addr_t' > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:43: > warning: type defaults to 'int' in declaration of 'type name' > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:43: > warning: passing argument 1 of 'copyin' makes pointer from integer > without a cast > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c: > In function 'RTR0MemUserCopyTo': > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:52: > warning: passing argument 2 of 'copyout' makes pointer from integer > without a cast > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c: > In function 'RTR0MemKernelIsValidAddr': > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:67: > error: 'R3Ptr' undeclared (first use in this function) > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:67: > error: (Each undeclared identifier is reported only once > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:67: > error: for each function it appears in.) > kmk[2]: *** [/usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/out/freebsd.amd64/release/obj/RuntimeR0Drv/r0drv/freebsd/memuserkernel-r0drv-freebsd.o] > Error 1 Which SVN revision of the port do you use? This error should be fixed with SVN revision 414. Please note the SVN version of the virtualbox port is just for testing/development. So it is possible that the port does not compile, have a incorrect pkg-plist or crash your system. We also do not bump PORTREVISION in SVN if something was fixed/changed. Beat -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.10 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkpjhA0ACgkQQMW893dCSdvuhwCfUDORy9U9MfiAH+pTa7Qvyojk 7h8An2Ic8hq2O/6ggsdDhrrZCQVBcDeq =NDuc -----END PGP SIGNATURE----- From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 21:02:21 2009 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 2FE7D1065720; Sun, 19 Jul 2009 21:02:21 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: from mail-fx0-f205.google.com (mail-fx0-f205.google.com [209.85.220.205]) by mx1.freebsd.org (Postfix) with ESMTP id 62E518FC2A; Sun, 19 Jul 2009 21:02:20 +0000 (UTC) (envelope-from glen.j.barber@gmail.com) Received: by fxm1 with SMTP id 1so92637fxm.43 for ; Sun, 19 Jul 2009 14:02:19 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=l6rD4D0IGJIdwIeYGoh660JHAgm1t1/udumVcQKhxNw=; b=bZsSrlU0Cip0VsvojWI4hQJ+7wBQzNAXdHfAKlajkca/G2eqD26vZWM0iU3pkRAxXS Vld1N6xgqwZzV2dyswyxfmQQ0OYe7Q2f/Ol/xy8uGRTFB+Hu91U4OXnBaG12RscB+DiL 1VkJIx+kY2XmPpUiahEEG6J9LkDcvCPhZ6uW0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=R+F/2Ey6VBjFJ/Dj024SnUoCL7RFOWmGYJDK6CW7Eb6pJOjVlnmqCWEmsDkNEBTkXV TDWY+DN4GhyEXi4kzTAmfbJbUYhW852DqJDutdJo8QRJ/8FNRpdNd4UwwCpx0Y8OEt8z fqUdL6I0tlvxIGs8EtqlQ6TP7C0gPXodRxHFg= MIME-Version: 1.0 Received: by 10.223.120.197 with SMTP id e5mr980782far.25.1248037339387; Sun, 19 Jul 2009 14:02:19 -0700 (PDT) In-Reply-To: <200907192054.n6JKsAJB035652@triton.kn-bremen.de> References: <4A5C5F13.7030607@FreeBSD.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> <4A6353CE.7060403@FreeBSD.org> <4ad871310907191211i7fb8a7f5qb146ed8b2038f06e@mail.gmail.com> <200907192054.n6JKsAJB035652@triton.kn-bremen.de> Date: Sun, 19 Jul 2009 17:02:19 -0400 Message-ID: <4ad871310907191402m1907056cs14dd6d5be457d945@mail.gmail.com> From: Glen Barber To: Juergen Lock Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-emulation@freebsd.org, doc@freebsd.org Subject: Re: qemu (was: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter) 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 Jul 2009 21:02:22 -0000 [CCs trimmed to avoid another bounce] On Sun, Jul 19, 2009 at 4:54 PM, Juergen Lock wrote= : > In article <4ad871310907191211i7fb8a7f5qb146ed8b2038f06e@mail.gmail.com> = you write: >>On Sun, Jul 19, 2009 at 1:11 PM, Manolis Kiagias wro= te: >> >>[really big snip] >> >>> >>> This is a good point, and one I have not actually considered. >>> I believe Qemu is not mentioned anywhere in the Handbook and I guess it >>> deserves a place here. >>> >> >>While it is not mentioned in the Handbook, there is a Wiki page about >>Qemu [1]. =A0Out of curiosity however, I remember nox@ mentioning that >>KQemu will no longer be developed [2]. =A0My interpretation of that >>announcement was that Qemu will no longer be developed as well. =A0Is >>this incorrect? > > Actually it is, qemu itself is very much alive and kicking, its just > its virtualization support that has moved focus from kqemu to kvm. > (And yes we really could use an up-to-date and working port for that...) > Juergen, Glad to see I was misinterpreting the announcement. Thanks! --=20 Glen Barber From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 20:21:14 2009 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 39FF8106566B; Sun, 19 Jul 2009 20:21:14 +0000 (UTC) (envelope-from manolis@FreeBSD.org) Received: from aiolos.otenet.gr (aiolos.otenet.gr [83.235.67.30]) by mx1.freebsd.org (Postfix) with ESMTP id 88A0B8FC13; Sun, 19 Jul 2009 20:21:13 +0000 (UTC) (envelope-from manolis@FreeBSD.org) Received: from atomic.dyndns.org (athedsl-4471496.home.otenet.gr [94.71.122.184]) by aiolos.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n6JKLAJY001370; Sun, 19 Jul 2009 23:21:11 +0300 Message-ID: <4A638036.40304@FreeBSD.org> Date: Sun, 19 Jul 2009 23:21:10 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.22 (X11/20090702) MIME-Version: 1.0 To: Juergen Lock References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> <4A6353CE.7060403@FreeBSD.org> <20090719184037.GA67283@triton.kn-bremen.de> In-Reply-To: <20090719184037.GA67283@triton.kn-bremen.de> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Sun, 19 Jul 2009 21:20:36 +0000 Cc: Tom Rhodes , doc@FreeBSD.org, pgj@FreeBSD.org, daichi@FreeBSD.org, "Simon L. Nielsen" , scrappy@hub.org, freebsd-emulation@FreeBSD.org, keramida@FreeBSD.org, rene@FreeBSD.org Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 20:21:14 -0000 Juergen Lock wrote: > >> >> I will start writing a section on qemu. Installation is probably easier >> than VirtualBox, but since this is actually a command line tool, it will >> be interesting to show a few examples on installing a guest system etc. >> Will then rephrase this introduction paragraph accordingly. Will send >> in the patch for review here when it is ready (I need to brush up a bit >> on my qemu skills, haven't used it for a while). >> > > Actually I started a handbook section on qemu a while ago already, see > this thread: > http://lists.freebsd.org/pipermail/freebsd-doc/2008-December/015248.html > > So it was worked on, but apparently never got committed... > > Just thought I'd mention... :) > Juergen > > Thanks, this patch looks very similar to what I had in mind (in fact, it seems to be even more detailed in the networking area). I can help with this if loader@ doesn't have other plans. From owner-freebsd-emulation@FreeBSD.ORG Sun Jul 19 20:55:50 2009 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 12E6910656DB; Sun, 19 Jul 2009 20:55:50 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id B4E678FC24; Sun, 19 Jul 2009 20:55:49 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id CA15B1E002B2; Sun, 19 Jul 2009 22:55:48 +0200 (CEST) Received: from triton.kn-bremen.de (noident@localhost [127.0.0.1]) by triton.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n6JKsBjG036854; Sun, 19 Jul 2009 22:54:11 +0200 (CEST) (envelope-from nox@triton.kn-bremen.de) Received: (from nox@localhost) by triton.kn-bremen.de (8.14.3/8.14.3/Submit) id n6JKsAJB035652; Sun, 19 Jul 2009 22:54:10 +0200 (CEST) (envelope-from nox) Date: Sun, 19 Jul 2009 22:54:10 +0200 (CEST) From: Juergen Lock Message-Id: <200907192054.n6JKsAJB035652@triton.kn-bremen.de> To: glen.j.barber@gmail.com X-Newsgroups: local.list.freebsd.doc In-Reply-To: <4ad871310907191211i7fb8a7f5qb146ed8b2038f06e@mail.gmail.com> References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> <4A6353CE.7060403@FreeBSD.org> Organization: home X-Mailman-Approved-At: Sun, 19 Jul 2009 21:28:16 +0000 Cc: Tom Rhodes , doc@freebsd.org, pgj@freebsd.org, daichi@freebsd.org, "Simon L. Nielsen" , scrappy@hub.org, freebsd-emulation@freebsd.org, keramida@freebsd.org, rene@freebsd.org Subject: qemu (was: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter) 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 Jul 2009 20:55:51 -0000 In article <4ad871310907191211i7fb8a7f5qb146ed8b2038f06e@mail.gmail.com> you write: >On Sun, Jul 19, 2009 at 1:11 PM, Manolis Kiagias wrote: > >[really big snip] > >> >> This is a good point, and one I have not actually considered. >> I believe Qemu is not mentioned anywhere in the Handbook and I guess it >> deserves a place here. >> > >While it is not mentioned in the Handbook, there is a Wiki page about >Qemu [1]. Out of curiosity however, I remember nox@ mentioning that >KQemu will no longer be developed [2]. My interpretation of that >announcement was that Qemu will no longer be developed as well. Is >this incorrect? Actually it is, qemu itself is very much alive and kicking, its just its virtualization support that has moved focus from kqemu to kvm. (And yes we really could use an up-to-date and working port for that...) HTH, Juergen From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 04:38:04 2009 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 3C56F106564A; Mon, 20 Jul 2009 04:38:04 +0000 (UTC) (envelope-from fjoe@samodelkin.net) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.153]) by mx1.freebsd.org (Postfix) with ESMTP id A088B8FC12; Mon, 20 Jul 2009 04:38:03 +0000 (UTC) (envelope-from fjoe@samodelkin.net) Received: by fg-out-1718.google.com with SMTP id 13so601802fge.12 for ; Sun, 19 Jul 2009 21:38:02 -0700 (PDT) Received: by 10.86.68.18 with SMTP id q18mr2972919fga.68.1248062793003; Sun, 19 Jul 2009 21:06:33 -0700 (PDT) Received: from ?10.61.43.81? ([91.204.27.17]) by mx.google.com with ESMTPS id e20sm8839639fga.10.2009.07.19.21.06.31 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 19 Jul 2009 21:06:32 -0700 (PDT) Mime-Version: 1.0 (Apple Message framework v1071.1) Content-Type: text/plain; charset=us-ascii; format=flowed From: Max Khon In-Reply-To: <20090719152407.c9f3b912.nork@FreeBSD.org> Date: Mon, 20 Jul 2009 11:06:28 +0700 Content-Transfer-Encoding: 7bit Message-Id: <78D32019-1C75-4FE8-BF59-A5A3CF58766B@samodelkin.net> References: <20090719152407.c9f3b912.nork@FreeBSD.org> To: Norikatsu Shigemura X-Mailer: Apple Mail (2.1071.1) Cc: Pavel Volkov , freebsd-emulation@FreeBSD.org, Christophe Fillot , Max Khon Subject: Re: Dynamips has two minor bugs. 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 Jul 2009 04:38:04 -0000 Hello! On 19.07.2009, at 13:24, Norikatsu Shigemura wrote: > Hi Christophe, and FreeBSD's dynamips port maintainer. > > I found two minor bugs. > > 1. dynamips -m can't parse Cisco format (0001.0002.0003), because > parse_mac_addr() can parse it, but not return(0). Please see > also attached 'patch-net.c'. > > 2. dynamips can't communicate to real world via FreeBSD's gen_eth > (libpcap). In this case, bpf(4) requires BIOCFEEDBACK. So I > investigated like attached 'patch-gen_eth.c'. > > SEE ALSO: http://lists.freebsd.org/pipermail/freebsd-net/2009-July/022423.html > > > >> ports maintainers > May I commit these patch to ports/emulators/dynamips-devel (0.2.8RC2) > and ports/emulators/dynamips (0.2.7)? > Go ahead! You may also take maintainership of dynamips port if you like. Max From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 07:37:50 2009 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 7B6211065672; Mon, 20 Jul 2009 07:37:50 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from aiolos.otenet.gr (aiolos.otenet.gr [83.235.67.30]) by mx1.freebsd.org (Postfix) with ESMTP id D0F1E8FC20; Mon, 20 Jul 2009 07:37:49 +0000 (UTC) (envelope-from sonicy@otenet.gr) Received: from atomic.dyndns.org (athedsl-4471496.home.otenet.gr [94.71.122.184]) by aiolos.otenet.gr (8.13.8/8.13.8/Debian-3) with ESMTP id n6K7bl0f003972; Mon, 20 Jul 2009 10:37:47 +0300 Message-ID: <4A641ECB.4070607@otenet.gr> Date: Mon, 20 Jul 2009 10:37:47 +0300 From: Manolis Kiagias User-Agent: Thunderbird 2.0.0.22 (X11/20090702) MIME-Version: 1.0 To: loader References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> <4A6353CE.7060403@FreeBSD.org> <685a6ef80907191045p49fdbe1fm6f7697388b7fa3bd@mail.gmail.com> <200907200723.n6K7Nh6p001637@freefall.freebsd.org> In-Reply-To: <200907200723.n6K7Nh6p001637@freefall.freebsd.org> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: scrappy@hub.org, freebsd-emulation@FreeBSD.org, doc@FreeBSD.org Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 07:37:51 -0000 loader wrote: > Gabor PALI wrote: > > >> Hey Manolis, >> >> On Sun, Jul 19, 2009 at 7:11 PM, Manolis Kiagias wrote: >> >> >>> I will start writing a section on qemu. >>> >> For your information, there is a PR [1] about adding a section on qemu >> to the Handbook. You should contact its responsible (loader@, CCed, >> just for sure), because he might have something on the topic. >> >> Hope that helps, >> :g >> >> [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/127923 >> > > Hi, > > Juergen Lock sent me a patch about Qemu, > maybe we can commit it and continue working this one? > > http://lists.freebsd.org/pipermail/freebsd-doc/2008-December/015248.html > > Regards, > loader > (removed long list of CCs, most people are hopefully subscribed to either doc@ or emulation@) Sure, I've seen the patch and it mostly looks fine, maybe needs a few mostly cosmetic nits. If it is alright with you, I'll make a few changes and send a link for review. From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 11:06:53 2009 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 3D6F11065674 for ; Mon, 20 Jul 2009 11:06:53 +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 2AB088FC25 for ; Mon, 20 Jul 2009 11:06:53 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n6KB6rgr002236 for ; Mon, 20 Jul 2009 11:06:53 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n6KB6qNa002232 for freebsd-emulation@FreeBSD.org; Mon, 20 Jul 2009 11:06:52 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 20 Jul 2009 11:06:52 GMT Message-Id: <200907201106.n6KB6qNa002232@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 Jul 2009 11:06:53 -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/136321 emulation x11-toolkits/linux-pango: please update linux based po o ports/136229 emulation [linux] certain linux apps look for libraries using a o ports/135341 emulation [PATCH] linux-f10 ports that install manpages: add NOM o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o ports/135322 emulation Port graphics/linux_dri has incorrect packaging list c o kern/130724 emulation [linprocfs] [patch] cpuinfo in linprocfs is dated, cau o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n f ports/127018 emulation Linuxulator incapable of using FreeBSD's LDAP environm o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/97326 emulation [linux] file descriptor leakage in linux emulation o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/56451 emulation [linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/21463 emulation [linux] Linux compatability mode should not allow setu o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 18 problems total. From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 07:23:45 2009 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 56D051065673; Mon, 20 Jul 2009 07:23:45 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 37E538FC18; Mon, 20 Jul 2009 07:23:45 +0000 (UTC) (envelope-from loader@FreeBSD.org) Received: from freefall.freebsd.org (loader@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n6K7NjZS001638; Mon, 20 Jul 2009 07:23:45 GMT (envelope-from loader@freefall.freebsd.org) Received: (from loader@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n6K7Nh6p001637; Mon, 20 Jul 2009 07:23:43 GMT (envelope-from loader) Date: Mon, 20 Jul 2009 07:23:43 GMT Message-Id: <200907200723.n6K7Nh6p001637@freefall.freebsd.org> From: loader To: Gabor PALI References: <4A5C5F13.7030607@FreeBSD.org> <4A5D5ED7.5000101@freebsd.org> <20090717215636.GA1141@arthur.nitro.dk> <4A61733D.9010702@FreeBSD.org> <4A62D333.9090203@otenet.gr> <20090719113438.07c05110.trhodes@FreeBSD.org> <20090719164310.GD1164@arthur.nitro.dk> <4A6353CE.7060403@FreeBSD.org> <685a6ef80907191045p49fdbe1fm6f7697388b7fa3bd@mail.gmail.com> In-Reply-To: <685a6ef80907191045p49fdbe1fm6f7697388b7fa3bd@mail.gmail.com> (Gabor PALI's message of "Sun, 19 Jul 2009 19:45:57 +0200") MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailman-Approved-At: Mon, 20 Jul 2009 12:13:10 +0000 Cc: Tom Rhodes , doc@FreeBSD.org, daichi@FreeBSD.org, "Simon L. Nielsen" , scrappy@hub.org, freebsd-emulation@FreeBSD.org, keramida@FreeBSD.org, rene@FreeBSD.org, Manolis Kiagias Subject: Re: [PATCH] Add a VirtualBox section to Handbook's 'Virtualization' chapter 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 Jul 2009 07:23:45 -0000 Gabor PALI wrote: > Hey Manolis, > > On Sun, Jul 19, 2009 at 7:11 PM, Manolis Kiagias wrote: > >> I will start writing a section on qemu. > > For your information, there is a PR [1] about adding a section on qemu > to the Handbook. You should contact its responsible (loader@, CCed, > just for sure), because he might have something on the topic. > > Hope that helps, > :g > > [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=docs/127923 Hi, Juergen Lock sent me a patch about Qemu, maybe we can commit it and continue working this one? http://lists.freebsd.org/pipermail/freebsd-doc/2008-December/015248.html Regards, loader From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 12:30:37 2009 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 EECA31065680 for ; Mon, 20 Jul 2009 12:30:37 +0000 (UTC) (envelope-from vova@sw.ru) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id 5BA8E8FC12 for ; Mon, 20 Jul 2009 12:30:36 +0000 (UTC) (envelope-from vova@sw.ru) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id n6KCTWQ1011503 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 20 Jul 2009 16:29:34 +0400 (MSD) Received: from vova by vbook.fbsd.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MSrzo-0002t5-7r; Mon, 20 Jul 2009 16:29:32 +0400 From: Vladimir Grebenschikov To: Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= In-Reply-To: <1247658678.5135.6.camel@localhost> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Date: Mon, 20 Jul 2009 16:29:32 +0400 Message-Id: <1248092972.1756.7.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru 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 Jul 2009 12:30:38 -0000 Hi=20 New attempt,=20 recent 8-current, with recent virtualbox from SVN (3.0.51.r21573)-=20 same as before - VM internally works as expected, but completely no redraw of screen. So if do nothing - just black screen until will windows load, if I try to close window with VM - it shows grayed "snapshot" of current state. After windows loads it shows some icons (like icons in quick launch) only. -------- =D0=98=D1=81=D1=85=D0=BE=D0=B4=D0=BD=D0=BE=D0=B5 =D1=81=D0=BE=D0= =BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B5 -------- =D0=9E=D1=82: Vladimir Grebenschikov Reply-to: vova@fbsd.ru =D0=9A=D0=BE=D0=BC=D1=83: Bernhard Fr=C3=B6hlich =D0=9A=D0=BE=D0=BF=D0=B8=D1=8F: freebsd-emulation@freebsd.org =D0=A2=D0=B5=D0=BC=D0=B0: Re: VirtualBox WinXP SP2 guest OS black screen =D0=94=D0=B0=D1=82=D0=B0: Wed, 15 Jul 2009 15:51:18 +0400 =D0=92 =D0=B2=D1=82, 14/07/2009 =D0=B2 22:26 +0200, Bernhard Fr=C3=B6hlich = =D0=BF=D0=B8=D1=88=D0=B5=D1=82: > On Tue, July 14, 2009 10:09 pm, Vladimir Grebenschikov wrote: > > =C3=B7 =C3=90=C3=8E, 13/07/2009 =C3=97 14:14 +0400, Vladimir Grebenschi= kov =C3=90=C3=89=C3=9B=C3=85=C3=94: > > > > After revert to version virtualbox_6.tgz (without rebuild, just old > > binaries and vboxdrv.ko built for usual port) everything works again. > > > > Looks like, something broken in port. >=20 > Could you try the latest port from svn? They have fixed a lot of bugs > before releasing VirtualBox 3.0.0 so chances are good that this is a vbox > bug and it's already fixed. >=20 > svn co > http://svn.bluelife.at/projects/packages/blueports/emulators/virtualbox >=20 > If that bug persists in that version then please build with the DEBUG > option and try to get a stacktrace. Hmm, looks like there is another bug. Now it just panics on attempt to start VM: vbook dumped core - see /var/crash/vmcore.10 Wed Jul 15 15:35:34 MSD 2009 FreeBSD vbook 8.0-BETA1 FreeBSD 8.0-BETA1 #5: Wed Jul 15 12:12:40 MSD 2009 = root@vbook:/usr/obj/usr/src/sys/VBOOK i386 panic:=20 GNU gdb 6.1.1 [FreeBSD] Copyright 2004 Free Software Foundation, Inc. GDB is free software, covered by the GNU General Public License, and you ar= e welcome to change it and/or distribute copies of it under certain condition= s. Type "show copying" to see the conditions. There is absolutely no warranty for GDB. Type "show warranty" for details. This GDB was configured as "i386-marcel-freebsd"... Unread portion of the kernel message buffer: Fatal trap 12: page fault while in kernel mode fault virtual address =3D 0x0 fault code =3D supervisor write, page not present instruction pointer =3D 0x20:0xc06d17bd stack pointer =3D 0x28:0xe8c939d4 frame pointer =3D 0x28:0xe8c939dc code segment =3D base 0x0, limit 0xfffff, type 0x1b =3D DPL 0, pres 1, def32 1, gran 1 processor eflags =3D interrupt enabled, resume, IOPL =3D 0 current process =3D 2186 (initial thread) Physical memory: 2038 MB Dumping 206 MB: 191 175 159 143 127 111 95 79 63 47 31 15 ... #0 doadump () at pcpu.h:246 246 pcpu.h: No such file or directory. in pcpu.h (kgdb) #0 doadump () at pcpu.h:246 #1 0xc0481b49 in db_fncall (dummy1=3D1, dummy2=3D0, dummy3=3D-1065550432,=20 dummy4=3D0xe8c93778 "") at /usr/src/sys/ddb/db_command.c:548 #2 0xc0481f41 in db_command (last_cmdp=3D0xc07755fc, cmd_table=3D0x0, dopa= ger=3D1) at /usr/src/sys/ddb/db_command.c:445 #3 0xc048209a in db_command_loop () at /usr/src/sys/ddb/db_command.c:498 #4 0xc0483f0d in db_trap (type=3D12, code=3D0) at /usr/src/sys/ddb/db_main= .c:229 #5 0xc058b7b4 in kdb_trap (type=3D12, code=3D0, tf=3D0xe8c93994) at /usr/src/sys/kern/subr_kdb.c:534 #6 0xc06d6ccf in trap_fatal (frame=3D0xe8c93994, eva=3D0) at /usr/src/sys/i386/i386/trap.c:924 #7 0xc06d6f70 in trap_pfault (frame=3D0xe8c93994, usermode=3D0, eva=3D0) at /usr/src/sys/i386/i386/trap.c:846 #8 0xc06d7902 in trap (frame=3D0xe8c93994) at /usr/src/sys/i386/i386/trap.= c:528 #9 0xc06bd3bb in calltrap () at /usr/src/sys/i386/i386/exception.s:165 #10 0xc06d17bd in pmap_insert_entry (pmap=3DVariable "pmap" is not availabl= e. ) at /usr/src/sys/i386/i386/pmap.c:2214 #11 0xc06d345e in pmap_enter (pmap=3D0xc5a2bd60, va=3D1211068416, access=3D= 0 '\0',=20 m=3DVariable "m" is not available. ) at /usr/src/sys/i386/i386/pmap.c:3123 #12 0xc0b212e6 in rtR0MemObjNativeMapUser () from /boot/modules/vboxdrv.ko #13 0xc0b20009 in RTR0MemObjMapUser () from /boot/modules/vboxdrv.ko #14 0xc0b0da3c in SUPR0GipMap () from /boot/modules/vboxdrv.ko #15 0xc0b10608 in supdrvIOCtl () from /boot/modules/vboxdrv.ko #16 0xc0b0c46a in VBoxDrvFreeBSDIOCtl () from /boot/modules/vboxdrv.ko #17 0xc04fe7c7 in devfs_ioctl_f (fp=3D0xc5ebc6c0, com=3D3307338768,=20 data=3D0xc5ebc6c0, cred=3D0xc6c26680, td=3D0xc6668d20) at /usr/src/sys/fs/devfs/devfs_vnops.c:659 #18 0xc059a7d8 in kern_ioctl (td=3D0xc6668d20, fd=3D19, com=3D3223868948,=20 data=3D0xc5ebc6c0 "birddrib\030") at file.h:262 #19 0xc059a944 in ioctl (td=3D0xc6668d20, uap=3D0xe8c93cf8) at /usr/src/sys/kern/sys_generic.c:678 #20 0xc06d7297 in syscall (frame=3D0xe8c93d38) at /usr/src/sys/i386/i386/trap.c:1073 #21 0xc06bd420 in Xint0x80_syscall () at /usr/src/sys/i386/i386/exception.s:261 #22 0x00000033 in ?? () Previous frame inner to this frame (corrupt stack?) (kgdb)=20 --=20 Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 15:53:07 2009 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 402011065672 for ; Mon, 20 Jul 2009 15:53:07 +0000 (UTC) (envelope-from ImVT@online.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.freebsd.org (Postfix) with ESMTP id CD85F8FC19 for ; Mon, 20 Jul 2009 15:53:06 +0000 (UTC) (envelope-from ImVT@online.de) Received: from [192.168.178.21] (p54B315AD.dip0.t-ipconnect.de [84.179.21.173]) by mrelayeu.kundenserver.de (node=mreu2) with ESMTP (Nemesis) id 0MKv5w-1MSuyc05Bz-000lYg; Mon, 20 Jul 2009 17:40:30 +0200 From: Stefan To: emulation@FreeBSD.org Date: Mon, 20 Jul 2009 17:40:29 +0000 Message-Id: <1248111629.2921.3.camel@myhome.me> Mime-Version: 1.0 X-Mailer: Evolution 2.26.2 FreeBSD GNOME Team Port X-Provags-ID: V01U2FsdGVkX19287M3Fve0/5Flt9+eOdyH4Goq/z+Eap3Yr9Z Df1JGwpt+n8NyyzqpYUsSp0hP91z78UMWpol0pOwpPkGfk3jHo xy+/wSIAEl0fSIB04Mn1Q== Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: problems with port linux-f10-flashplugin10 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 Jul 2009 15:53:07 -0000 hello, I have a problem to install this port linux-f10-flashplugin10. The message after is: bsd.linux-apps.mk test failed: The component openldap is not defined for LINUX_DIST_SUFFIX= (the corresponding variable openldap_FILE is not defined The ports emulators/linux_base-fc4, ftp/linux-curl, security/linux-openssl are installed. Is it possible to tell me what is wrong? Many thanks! stan From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 16:26:26 2009 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 C543F106566B for ; Mon, 20 Jul 2009 16:26:26 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from mail-qy0-f204.google.com (mail-qy0-f204.google.com [209.85.221.204]) by mx1.freebsd.org (Postfix) with ESMTP id 6E0278FC16 for ; Mon, 20 Jul 2009 16:26:26 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by qyk42 with SMTP id 42so1858296qyk.3 for ; Mon, 20 Jul 2009 09:26:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:user-agent :mime-version:content-type:content-transfer-encoding:x-priority :importance; bh=fGNb4pwjRppseVtFAlpNhvX5hYNj9Oq9q8vKCL/6N7M=; b=rJmjuPVEUxeT7Vlkuwvab9WxBfR6nPaIKEeCXAhXihTwKiMCOW8FJMz8GCZocf6uSw Q1li3y1sxe3kFckA9jESWsK4P1fyufcy/INJIhWb9InTkxusUyb+p1X1jAAF1HiGgthE 8EpHVhHAI3jF7Fq2WXDRzudpE8eyC8ph0aNmE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=pfvTbWiO2ffLj/VegGORFVJvBxFIMHHTIngXD8qi2Nc+Ypj1w4xEVh2swdVXM5g45d Vr5OkmGLlodncVKYO+ZZg5vN59NkzS7fs2xwztAL+Gy2zc34j1ipLo2FHCfBxHvLYpnO Vb9uggXsoZIPitGvTm7nq5/y3qTJtCQ2rKRc4= Received: by 10.224.73.206 with SMTP id r14mr2788164qaj.311.1248107184329; Mon, 20 Jul 2009 09:26:24 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id 6sm7278707qwk.34.2009.07.20.09.26.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 20 Jul 2009 09:26:23 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id F40D4B80C2; Mon, 20 Jul 2009 13:26:18 -0300 (BRT) Received: from 189.93.6.178 (SquirrelMail authenticated user matheus) by cygnus.homeunix.com with HTTP; Mon, 20 Jul 2009 13:26:18 -0300 (BRT) Message-ID: <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> In-Reply-To: <1248092972.1756.7.camel@localhost> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> Date: Mon, 20 Jul 2009 13:26:18 -0300 (BRT) From: "Nenhum_de_Nos" To: freebsd-emulation@freebsd.org User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 16:26:27 -0000 On Mon, July 20, 2009 09:29, Vladimir Grebenschikov wrote: > Hi > > New attempt, > recent 8-current, with recent virtualbox from SVN (3.0.51.r21573)- typo right ? you meant 2.0.51 ? I couldn't build 3.0.2 on my freebsd 8-beta1 amd64. I no typo, please share :) matheus -- We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 16:35:41 2009 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 994B9106566C for ; Mon, 20 Jul 2009 16:35:41 +0000 (UTC) (envelope-from vova@sw.ru) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id 132AF8FC23 for ; Mon, 20 Jul 2009 16:35:40 +0000 (UTC) (envelope-from vova@sw.ru) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id n6KGZLMw024990 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 20 Jul 2009 20:35:22 +0400 (MSD) Received: from vova by vbook.fbsd.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MSvpg-0001Hr-OV; Mon, 20 Jul 2009 20:35:20 +0400 From: Vladimir Grebenschikov To: Nenhum_de_Nos In-Reply-To: <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 20 Jul 2009 20:35:20 +0400 Message-Id: <1248107720.1756.29.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru 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 Jul 2009 16:35:41 -0000 Hi > > New attempt, > > recent 8-current, with recent virtualbox from SVN (3.0.51.r21573)- > > typo right ? you meant 2.0.51 ? No > I couldn't build 3.0.2 on my freebsd 8-beta1 amd64. I no typo, please > share :) $ svn co http://svn.bluelife.at/projects/packages/blueports/emulators/virtualbox ... $ cd virtualbox $ make -V PKGNAME virtualbox-3.0.51.r21573 $ But, it is i386 can't say anything about amd64. > matheus > -- Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 17:29:26 2009 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 C52D71065673 for ; Mon, 20 Jul 2009 17:29:26 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: from mail-ew0-f222.google.com (mail-ew0-f222.google.com [209.85.219.222]) by mx1.freebsd.org (Postfix) with ESMTP id 45B2A8FC12 for ; Mon, 20 Jul 2009 17:29:25 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: by ewy22 with SMTP id 22so775514ewy.43 for ; Mon, 20 Jul 2009 10:29:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=WTtM6UpsAdzfynBtLphijARwcJDhAdn2WYhZrSfdWHw=; b=jLa6bWn0JyJIGJjTpPv6RxuRe7OXAI4mgfHGQDY/Wy+KPsPK7IZZmkyA7CwbW11T8P n+ByJU2/u0PoEEVj/IDvb5jWDSi0HyDFZXNtozTQEADBGxoXbgVrV3oh+Hc0Hk6cOFxL nKRd7FGSDkhwC9XXDKtWAt8qzELaGQoq1hUDI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=Ef9ZgZvsISfEXXuHE/0bGjkFve8FV5YcutmNFeTzJhd6PV2KJCxuL0tURSdF9ZOumh vgyac4LpSouG9KOyaWyHUqVItezX/IOV+Tin4IeZ6IkWUZ31Nyx2JIA4BPKnASQRqtmY Nw6VImXxXwRtldA4TRcr0aNvXib/ab65DEfxE= MIME-Version: 1.0 Received: by 10.216.48.195 with SMTP id v45mr1255966web.123.1248110964706; Mon, 20 Jul 2009 10:29:24 -0700 (PDT) In-Reply-To: <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> Date: Mon, 20 Jul 2009 18:29:24 +0100 Message-ID: From: Boris To: Nenhum_de_Nos Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 17:29:27 -0000 Hi Matheus, I got Revision 427 compiled on amd64 unfortunately it crashes at the time of launching any VM. I have provided some details to Beat and pointed at this thread as the issue looked similar to Vladimir's one when reading the core.txt file produced after the system crash. Let's see what comes back from Beat and the folks porting the port to FreeBSD. Boris On Mon, Jul 20, 2009 at 5:26 PM, Nenhum_de_Nos wrote: > > On Mon, July 20, 2009 09:29, Vladimir Grebenschikov wrote: > > Hi > > > > New attempt, > > recent 8-current, with recent virtualbox from SVN (3.0.51.r21573)- > > typo right ? you meant 2.0.51 ? > > I couldn't build 3.0.2 on my freebsd 8-beta1 amd64. I no typo, please > share :) > > matheus > > -- > We will call you cygnus, > The God of balance you shall be > > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > > http://en.wikipedia.org/wiki/Posting_style > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to " > freebsd-emulation-unsubscribe@freebsd.org" > From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 17:31:09 2009 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 F1E201065674 for ; Mon, 20 Jul 2009 17:31:09 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: from mail-ew0-f222.google.com (mail-ew0-f222.google.com [209.85.219.222]) by mx1.freebsd.org (Postfix) with ESMTP id 5757C8FC15 for ; Mon, 20 Jul 2009 17:31:09 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: by ewy22 with SMTP id 22so776624ewy.43 for ; Mon, 20 Jul 2009 10:31:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=PfySnr3w43HiiAJ0KOIw+IV94YAZo7hOD79McvFCxIg=; b=ZdXvQW7NlV7pkLxtGQ47Hpm4ZCuaSXy3BnS7oJA7bhK64tfDq1S18MVoX2W2RcDB3q cUkGSXBmMk4UUjOVf4/vV/8yBTyu2dVVCHY1ydBMf4LIHZTe7jk69KWRYBAnv4097fyX uwEXMJGnk3H/5/aPaBVZrCyy3PK1bjk24iKac= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=N512g4qTPr+WD2W8rKtK3S7WbVQLTQIjeT1+Dz973RP21HRgtONtBoM1u/P082LCk/ APSs8JhglNuFPiuDm3DLnCXSOZm5kjZ16IfwaEtS5ZjSRkX1PnFpB2sd21bq9tIiKZTe oJMmI7ZSgdjsOLo6VUXfjhpuSOCBOJ2MsBsC4= MIME-Version: 1.0 Received: by 10.216.47.201 with SMTP id t51mr1180728web.198.1248111068350; Mon, 20 Jul 2009 10:31:08 -0700 (PDT) In-Reply-To: <4A63840D.7050404@FreeBSD.org> References: <4A63840D.7050404@FreeBSD.org> Date: Mon, 20 Jul 2009 18:31:08 +0100 Message-ID: From: Boris To: freebsd-emulation@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: Compilation failure on SVN version of vbox port 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 Jul 2009 17:31:10 -0000 Just for archive. Compilation worked on amd64 8-BETA2 when getting all the patch files from svn. Thanks Beat. Boris On Sun, Jul 19, 2009 at 9:37 PM, Beat Gaetzi wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Hi, > > Boris wrote: > > Hi all, > > > > I have tried the last version of vbox port : virtualbox-3.0.51r21573 > > unfortunately I got compilation error: > > I am running 8-BETA2 amd64 : > > FreeBSD houdini 8.0-BETA2 FreeBSD 8.0-BETA2 #7: Sat Jul 18 22:42:20 BST > > 2009 root@houdini:/usr/obj/usr/src/sys/CUSTGEN amd64 > > [...] > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c: > > In function 'RTR0MemUserCopyFrom': > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:43: > > error: expected ')' before 'user_addr_t' > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:43: > > warning: type defaults to 'int' in declaration of 'type name' > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:43: > > warning: passing argument 1 of 'copyin' makes pointer from integer > > without a cast > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c: > > In function 'RTR0MemUserCopyTo': > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:52: > > warning: passing argument 2 of 'copyout' makes pointer from integer > > without a cast > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c: > > In function 'RTR0MemKernelIsValidAddr': > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:67: > > error: 'R3Ptr' undeclared (first use in this function) > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:67: > > error: (Each undeclared identifier is reported only once > > > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/src/VBox/Runtime/r0drv/freebsd/memuserkernel-r0drv-freebsd.c:67: > > error: for each function it appears in.) > > kmk[2]: *** > [/usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r21573/out/freebsd.amd64/release/obj/RuntimeR0Drv/r0drv/freebsd/memuserkernel-r0drv-freebsd.o] > > Error 1 > > Which SVN revision of the port do you use? This error should be fixed > with SVN revision 414. > Please note the SVN version of the virtualbox port is just for > testing/development. So it is possible that the port does not compile, > have a incorrect pkg-plist or crash your system. We also do not bump > PORTREVISION in SVN if something was fixed/changed. > > Beat > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v2.0.10 (FreeBSD) > Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org > > iEYEARECAAYFAkpjhA0ACgkQQMW893dCSdvuhwCfUDORy9U9MfiAH+pTa7Qvyojk > 7h8An2Ic8hq2O/6ggsdDhrrZCQVBcDeq > =NDuc > -----END PGP SIGNATURE----- > From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 17:32:56 2009 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 84474106564A for ; Mon, 20 Jul 2009 17:32:56 +0000 (UTC) (envelope-from gary.jennejohn@freenet.de) Received: from mout6.freenet.de (mout6.freenet.de [IPv6:2001:748:100:40::2:8]) by mx1.freebsd.org (Postfix) with ESMTP id 1F8C98FC08 for ; Mon, 20 Jul 2009 17:32:56 +0000 (UTC) (envelope-from gary.jennejohn@freenet.de) Received: from [195.4.92.15] (helo=5.mx.freenet.de) by mout6.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #92) id 1MSwjO-0001Db-71; Mon, 20 Jul 2009 19:32:54 +0200 Received: from tffb2.t.pppool.de ([89.55.255.178]:20727 helo=ernst.jennejohn.org) by 5.mx.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #93) id 1MSwjN-0003JV-Qo; Mon, 20 Jul 2009 19:32:54 +0200 Date: Mon, 20 Jul 2009 19:32:52 +0200 From: Gary Jennejohn To: Stefan Message-ID: <20090720193252.2e479a0f@ernst.jennejohn.org> In-Reply-To: <1248111629.2921.3.camel@myhome.me> References: <1248111629.2921.3.camel@myhome.me> X-Mailer: Claws Mail 3.7.2 (GTK+ 2.16.2; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-purgate-ID: 149285::1248111174-00002DAB-128EDDE0/0-0/0-0 Cc: emulation@FreeBSD.org Subject: Re: problems with port linux-f10-flashplugin10 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gary.jennejohn@freenet.de 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 Jul 2009 17:32:56 -0000 On Mon, 20 Jul 2009 17:40:29 +0000 Stefan wrote: > hello, > > I have a problem to install this port linux-f10-flashplugin10. > The message after is: > > bsd.linux-apps.mk test failed: The component openldap is not defined for > LINUX_DIST_SUFFIX= (the corresponding variable openldap_FILE is not > defined > > The ports emulators/linux_base-fc4, ftp/linux-curl, > security/linux-openssl are installed. > Is it possible to tell me what is wrong? > > Many thanks! > AFAIK you need at least linux_base-f8 or linux_base-f10 installed. FYI this is what I have installed with a working linux-flashplugin-10.0r22 linux-f8-atk-1.20.0_1 linux-f8-cairo-1.4.14_1 linux-f8-curl-7.18.2_1 linux-f8-expat-2.0.1_1 linux-f8-fontconfig-2.4.2_1 linux-f8-gtk2-2.12.8_1 linux-f8-hicolor-icon-theme-0.5_1 linux-f8-jpeg-6b_1 linux-f8-libidn-0.6.14_1 linux-f8-libssh2-0.18_1 linux-f8-nspr-4.7.3_1 linux-f8-nss-3.12.2.0_1 linux-f8-openssl-0.9.8b_1 linux-f8-pango-1.18.4_1 linux-f8-png-1.2.22_1 linux-f8-sqlite3-3.4.2_2 linux-f8-tiff-3.8.2_1 linux-f8-xorg-libs-7.3_3 linux-flashplugin-10.0r22 linux_base-f10-10 I also have OVERRIDE_LINUX_BASE_PORT=f8 OVERRIDE_LINUX_NONBASE_PORTS=f8 in /etc/make.conf. In addition you must set compat.linux.osrelease=2.6.16 and, if you're running on AMD64, compat.linux32.maxssiz=4194304 in /etc/sysctl.conf. --- Gary Jennejohn From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 17:38:11 2009 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 2D608106566B for ; Mon, 20 Jul 2009 17:38:11 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from qw-out-2122.google.com (qw-out-2122.google.com [74.125.92.26]) by mx1.freebsd.org (Postfix) with ESMTP id C70358FC16 for ; Mon, 20 Jul 2009 17:38:10 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by qw-out-2122.google.com with SMTP id 3so771302qwe.7 for ; Mon, 20 Jul 2009 10:38:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:user-agent :mime-version:content-type:content-transfer-encoding:x-priority :importance; bh=x8974XwnOHjJ0UJ2+e6tUAiHc3vtvg1lLHeRqRhO8Mw=; b=n5seCbvjYdzYSRVo3MlJOQ279klo9OflLM9XgtQIgSZqtKLB2BpLG3mjBhhhG7hwI6 /vwYOCSngdJyptf08uOjqSwb3NtZyRycolu36/Vuz51Ly2J2po2bzaBIrkcALaHYqinT uZVi7mK9ms7g7OfxunGgGVDmrAu/ESXaOAUq4= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=qUKUT6Llz4T0MRiv1TjQz9bjP5Ocuhwvu/OiyBx/++GBEPgY2ZcJasuRJ1taFETSIP A4tlCvGFTRyJd/udp4eylmm5Qb7eRGggtCYOdDvkgyxQwxJrKTy1sCT/6hUMFmVJfVUr McMtq4N3YTN/Lhv56NuBxSuOmxiJrwP7aPnq0= Received: by 10.224.11.13 with SMTP id r13mr2912849qar.154.1248111486875; Mon, 20 Jul 2009 10:38:06 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id 6sm7390705qwd.2.2009.07.20.10.38.05 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 20 Jul 2009 10:38:06 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id 8CF8CB80C2; Mon, 20 Jul 2009 14:38:01 -0300 (BRT) Received: from 189.93.6.178 (SquirrelMail authenticated user matheus) by cygnus.homeunix.com with HTTP; Mon, 20 Jul 2009 14:38:01 -0300 (BRT) Message-ID: In-Reply-To: <1248107720.1756.29.camel@localhost> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248107720.1756.29.camel@localhost> Date: Mon, 20 Jul 2009 14:38:01 -0300 (BRT) From: "Nenhum_de_Nos" To: freebsd-emulation@freebsd.org User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 17:38:11 -0000 On Mon, July 20, 2009 13:35, Vladimir Grebenschikov wrote: > Hi > >> > New attempt, >> > recent 8-current, with recent virtualbox from SVN (3.0.51.r21573)- >> >> typo right ? you meant 2.0.51 ? > > No great !!! :) >> I couldn't build 3.0.2 on my freebsd 8-beta1 amd64. I no typo, please >> share :) > > $ svn co > http://svn.bluelife.at/projects/packages/blueports/emulators/virtualbox > ... > $ cd virtualbox > $ make -V PKGNAME > virtualbox-3.0.51.r21573 > $ > > But, it is i386 can't say anything about amd64. I can say it is some minutes :) does it build out-of-the-box on stable ? thanks, matheus >> matheus >> > -- > Vladimir B. Grebenschikov > vova@fbsd.ru > -- We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 17:48:15 2009 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 996291065672 for ; Mon, 20 Jul 2009 17:48:15 +0000 (UTC) (envelope-from vova@sw.ru) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id 079AF8FC1A for ; Mon, 20 Jul 2009 17:48:14 +0000 (UTC) (envelope-from vova@sw.ru) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id n6KHlse4019450 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 20 Jul 2009 21:47:56 +0400 (MSD) Received: from vova by vbook.fbsd.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MSwxu-0004l8-MQ; Mon, 20 Jul 2009 21:47:54 +0400 From: Vladimir Grebenschikov To: Boris In-Reply-To: References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Mon, 20 Jul 2009 21:47:54 +0400 Message-Id: <1248112074.1756.39.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru 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 Jul 2009 17:48:15 -0000 Hi > I got Revision 427 compiled on amd64 unfortunately it crashes at the time of > launching any VM. I have provided some details to Beat and pointed at this > thread as the issue looked similar to Vladimir's one when reading the > core.txt file produced after the system crash. It does not crash any more with very recent kernel. So, probably you may do another try. Only issue I have - no screen refresh, and it kills whole thing for me. > Let's see what comes back from Beat and the folks porting the port to > FreeBSD. > > Boris -- Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 17:49:48 2009 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 210F51065674 for ; Mon, 20 Jul 2009 17:49:48 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from mail-qy0-f204.google.com (mail-qy0-f204.google.com [209.85.221.204]) by mx1.freebsd.org (Postfix) with ESMTP id BA9F58FC23 for ; Mon, 20 Jul 2009 17:49:47 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by qyk42 with SMTP id 42so1923828qyk.3 for ; Mon, 20 Jul 2009 10:49:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:cc :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; bh=pBPW1xbBUzLdUNOrXsgiNGt1ctNxtXmUbS2MNXArww0=; b=omvmAXO7v/G2kbUt1Pc43ZcqMgqGGnbNtY4f5qjvZgOtlHz/Ig9UAe94Kduim0o7iN wT6fmsJ3jgN30/jsq5RkPgF94++BgVt5VgKizJBEX/XG4k6bsvm1o59QbkhQohiRIwlI fUnwr7zv9TAUtwYKlPI8OKevfbVpuhXsxDaIw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to:cc :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=h3AwnZUyNbe4on609cFeB+Ilikn8RF4XU9Elf8lb/7dorF0eF+82vLhOxeoFEKra63 8/dCX3uZg+BY1W8SYUM2JYjHidXuG4HLn+qrqjOZP9MFtc0+dwGLZ7smQoeu8fEzlJJ7 ttvMNqVZm5sEuXAjWQBVtxKdoNiFkD+j3vNaU= Received: by 10.224.45.141 with SMTP id e13mr2878424qaf.218.1248112187146; Mon, 20 Jul 2009 10:49:47 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id 7sm4722329qwf.48.2009.07.20.10.49.45 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 20 Jul 2009 10:49:46 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id 8300DB80C2; Mon, 20 Jul 2009 14:49:41 -0300 (BRT) Received: from 189.93.6.178 (SquirrelMail authenticated user matheus) by cygnus.homeunix.com with HTTP; Mon, 20 Jul 2009 14:49:41 -0300 (BRT) Message-ID: <828ae68e8d8f605233104e36626e28a6.squirrel@cygnus.homeunix.com> In-Reply-To: References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> Date: Mon, 20 Jul 2009 14:49:41 -0300 (BRT) From: "Nenhum_de_Nos" To: "Boris" User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 17:49:48 -0000 On Mon, July 20, 2009 14:29, Boris wrote: > Hi Matheus, > > I got Revision 427 compiled on amd64 unfortunately it crashes at the time > of > launching any VM. I have provided some details to Beat and pointed at this > thread as the issue looked similar to Vladimir's one when reading the > core.txt file produced after the system crash. thanks for the info. I sent a mail to ask for 3.0 and freebsd but no responses last week. but this is great news, it is in time to be born :) I have this problem also, I want to use intel VT-x to run amd64 linux in vm's. looking forward to run this :) > Let's see what comes back from Beat and the folks porting the port to > FreeBSD. can't hardly wait for this :) thanks, matheus > Boris > > > On Mon, Jul 20, 2009 at 5:26 PM, Nenhum_de_Nos > wrote: > >> >> On Mon, July 20, 2009 09:29, Vladimir Grebenschikov wrote: >> > Hi >> > >> > New attempt, >> > recent 8-current, with recent virtualbox from SVN (3.0.51.r21573)- >> >> typo right ? you meant 2.0.51 ? >> >> I couldn't build 3.0.2 on my freebsd 8-beta1 amd64. I no typo, please >> share :) >> >> matheus >> >> -- >> We will call you cygnus, >> The God of balance you shall be >> >> A: Because it messes up the order in which people normally read text. >> Q: Why is top-posting such a bad thing? >> >> http://en.wikipedia.org/wiki/Posting_style >> _______________________________________________ >> freebsd-emulation@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-emulation >> To unsubscribe, send any mail to " >> freebsd-emulation-unsubscribe@freebsd.org" >> > -- We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 20:33:58 2009 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 C7B81106567E for ; Mon, 20 Jul 2009 20:33:58 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.157]) by mx1.freebsd.org (Postfix) with ESMTP id 4659D8FC12 for ; Mon, 20 Jul 2009 20:33:58 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by fg-out-1718.google.com with SMTP id 13so750111fge.12 for ; Mon, 20 Jul 2009 13:33:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:user-agent :mime-version:content-type:content-transfer-encoding:x-priority :importance; bh=HXKBJHfLu/uv+mQwIYMyu5uuJP96gvlUmU8gb1DhgaY=; b=jNmvE5LqlfBHtJKU6XMbt4JGTHcdlR8T0U8O7RyGhS1WgAb+eBIWjelPD5anwchHtf 8SH0obVQmjrHnhFCO7PitYa3QdFe72BZhvdD28zpF60GvfrsQIXvQaOirWgCzbeF83R+ qis2y+rpbH9iBf9GpaDkmoFzZTmUOeUz9iNLY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=Sak0lWcuvRGO8MiW8XF77n+kYCmmC2wJbGa5o4lE9D/5SOtEqZW1LZJxBDKd9ZyR6u X5BPOUnY2Ix08rgV5816QZkb3WiaoYzTbZrHkscPj9yT5SnVENVMzKBHKhuM9pJ33jJW f7qB3+YIJdtrGmQnyIZ9mo9oiIJaJUY6imlhk= Received: by 10.86.9.10 with SMTP id 10mr3960010fgi.48.1248122037389; Mon, 20 Jul 2009 13:33:57 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id l12sm10966701fgb.8.2009.07.20.13.33.55 (version=TLSv1/SSLv3 cipher=RC4-MD5); Mon, 20 Jul 2009 13:33:56 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id 26B56B80C2; Mon, 20 Jul 2009 17:33:48 -0300 (BRT) Received: from 189.93.6.178 (SquirrelMail authenticated user matheus) by cygnus.homeunix.com with HTTP; Mon, 20 Jul 2009 17:33:48 -0300 (BRT) Message-ID: <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> In-Reply-To: <1248112074.1756.39.camel@localhost> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> Date: Mon, 20 Jul 2009 17:33:48 -0300 (BRT) From: "Nenhum_de_Nos" To: freebsd-emulation@freebsd.org User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 20:33:59 -0000 On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: > Hi > >> I got Revision 427 compiled on amd64 unfortunately it crashes at the >> time of >> launching any VM. I have provided some details to Beat and pointed at >> this >> thread as the issue looked similar to Vladimir's one when reading the >> core.txt file produced after the system crash. > > It does not crash any more with very recent kernel. > So, probably you may do another try. I have here: $ uname -a FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT 2009 root@xxx:/usr/obj/usr/src/sys/xxx amd64 and got to boot debian 5 amd64 cd and right now I'm quite at the end of the install. this is just possible using just one cpu. when tried using two cpu's, somewhere before disk selection it dies. my goal is to run a linux amd64 with as much cores I can (goal is all 4) running folding at home (cpu intense app). I read about 3.0 lets us use VT-x and run multicore ok, anyone tested this ? thanks and great work on vbox and freebsd !! the port compiles fine in here. I just recompiled vbox. would be a good idea to recompile all ? matheus > Only issue I have - no screen refresh, and it kills whole thing for me. > >> Let's see what comes back from Beat and the folks porting the port to >> FreeBSD. >> >> Boris > > -- > Vladimir B. Grebenschikov > vova@fbsd.ru > -- We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Mon Jul 20 21:54:39 2009 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 77B4F106564A for ; Mon, 20 Jul 2009 21:54:39 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: from mail-ew0-f222.google.com (mail-ew0-f222.google.com [209.85.219.222]) by mx1.freebsd.org (Postfix) with ESMTP id 00CD38FC0A for ; Mon, 20 Jul 2009 21:54:38 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: by ewy22 with SMTP id 22so940129ewy.43 for ; Mon, 20 Jul 2009 14:54:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=zT37u6FmUJoFLAwg7V5+ZJ6u/gVlvstiM/z2CxlAp6g=; b=FDoHjdQrYxwDXCewufplsuqcFqTcC5hi8J7QIeRwuDTRJMMsb5zxeO1x1os3/lO1Ft 8ZoqnKOU9MYTZQ1Mm7EMglxi9P3ypsQZ1DRV2cJsHkEBhf2Zd35VlS8dXZNPnnYnCGd5 LwC8CZL1NurY82U7qNTY+5DXcElKPwci5Vzk8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=EuaublSgs+2lAPdSHEtJWbIdTpbSR59evbF5cdylQBAsniLhi4a/mdgnMbnr3dpgq4 O17/WOYXraaGtZdCNt9JRaOkx/m5Mcc8VWqyo6CrFDtl/d1nPNfwT3Z8o44iqx9276O4 DRDJb0eHWoB9Qa3EZW/Cb1b9JkFBz5JQ5CBRk= MIME-Version: 1.0 Received: by 10.216.45.65 with SMTP id o43mr1304730web.4.1248126877765; Mon, 20 Jul 2009 14:54:37 -0700 (PDT) In-Reply-To: <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> References: <1247175832.1455.36.camel@zero.mshome.net> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> Date: Mon, 20 Jul 2009 22:54:37 +0100 Message-ID: From: Boris To: freebsd-emulation Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 21:54:39 -0000 No luck for me. I have recompiled my kernel with the latest from CVS (I noticed the pmap.c version 1.665 previous I used was 1.664). I recompiled virtualbox rev427 as well. VirtualBox starts but whenever I launch a VM the system crashes just after hitting the start button, with and without VT-x enabled. Worse thing is the memory dump does not complete so I have got no trace to analyse. Vladimir, Could you confirm a few things for me please? - did you upgrade from 7.2 to 8-CURRENT? or did you do a fresh install from snapshot? - I am using a customer kernel, I noticed you do it as well. Could you post a diff -ruN GENERIC VBOOK for me please? Thanks, Boris On Mon, Jul 20, 2009 at 9:33 PM, Nenhum_de_Nos wrote: > > On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: > > Hi > > > >> I got Revision 427 compiled on amd64 unfortunately it crashes at the > >> time of > >> launching any VM. I have provided some details to Beat and pointed at > >> this > >> thread as the issue looked similar to Vladimir's one when reading the > >> core.txt file produced after the system crash. > > > > It does not crash any more with very recent kernel. > > So, probably you may do another try. > > I have here: > $ uname -a > FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT 2009 > root@xxx:/usr/obj/usr/src/sys/xxx amd64 > > and got to boot debian 5 amd64 cd and right now I'm quite at the end of > the install. this is just possible using just one cpu. when tried using > two cpu's, somewhere before disk selection it dies. > > my goal is to run a linux amd64 with as much cores I can (goal is all 4) > running folding at home (cpu intense app). > > I read about 3.0 lets us use VT-x and run multicore ok, anyone tested this > ? > > thanks and great work on vbox and freebsd !! the port compiles fine in > here. I just recompiled vbox. would be a good idea to recompile all ? > > matheus > > > Only issue I have - no screen refresh, and it kills whole thing for me. > > > >> Let's see what comes back from Beat and the folks porting the port to > >> FreeBSD. > >> > >> Boris > > > > -- > > Vladimir B. Grebenschikov > > vova@fbsd.ru > > > > > -- > We will call you cygnus, > The God of balance you shall be > > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > > http://en.wikipedia.org/wiki/Posting_style > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to " > freebsd-emulation-unsubscribe@freebsd.org" > From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 21 00:26:35 2009 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 4F6D11065672 for ; Tue, 21 Jul 2009 00:26:35 +0000 (UTC) (envelope-from cwt@networks.cwu.edu) Received: from nsc0.cwu.edu (nsc0.cwu.edu [72.233.196.16]) by mx1.freebsd.org (Postfix) with ESMTP id 293AE8FC14 for ; Tue, 21 Jul 2009 00:26:34 +0000 (UTC) (envelope-from cwt@networks.cwu.edu) Received: from n.cwu.edu (n.cwu.edu [198.104.69.57]) by nsc0.cwu.edu (8.14.3/8.14.3) with ESMTP id n6KNoTgI012743 for ; Mon, 20 Jul 2009 16:50:29 -0700 (PDT) (envelope-from cwt@networks.cwu.edu) Received: from n.cwu.edu (localhost [127.0.0.1]) by n.cwu.edu (8.13.3/8.13.3) with ESMTP id n6KNoTHw028612 for ; Mon, 20 Jul 2009 16:50:29 -0700 (PDT) (envelope-from cwt@networks.cwu.edu) Received: from localhost (cwt@localhost) by n.cwu.edu (8.13.3/8.13.1/Submit) with ESMTP id n6KNoTwS028609 for ; Mon, 20 Jul 2009 16:50:29 -0700 (PDT) (envelope-from cwt@networks.cwu.edu) X-Authentication-Warning: n.cwu.edu: cwt owned process doing -bs Date: Mon, 20 Jul 2009 16:50:29 -0700 (PDT) From: Chris Timmons X-X-Sender: cwt@n.cwu.edu To: freebsd-emulation@FreeBSD.org Message-ID: <20090720164237.K25579@n.cwu.edu> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender DNS name whitelisted, not delayed by milter-greylist-4.0 (nsc0.cwu.edu [72.233.196.16]); Mon, 20 Jul 2009 16:50:29 -0700 (PDT) Cc: Subject: linux_base on 7-Stable for linux-oracle-instantclient? 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 Jul 2009 00:26:35 -0000 Would anyone care to suggest an appropriate linux_base port for supporting the linux-oracle-instantclient port(s)? In present-day 7-Stable are there grave caveats for forcing Linux 2.6 syscall compatibility to use one of the more recent -fc base systems? We are trying to get a reasonable Perl interface on FreeBSD into Oracle; any other suggestions welcome. Regards, -Chris From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 21 00:50:00 2009 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 97BAD106564A for ; Tue, 21 Jul 2009 00:50:00 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id 53B068FC1A for ; Tue, 21 Jul 2009 00:50:00 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from gate.ipt.ru ([194.62.233.123] helo=h30.sp.ipt.ru) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1MT3Dh-000Oi5-1I; Tue, 21 Jul 2009 04:28:37 +0400 To: Stefan References: <1248111629.2921.3.camel@myhome.me> From: Boris Samorodov Date: Tue, 21 Jul 2009 04:28:36 +0400 In-Reply-To: <1248111629.2921.3.camel@myhome.me> (Stefan's message of "Mon\, 20 Jul 2009 17\:40\:29 +0000") Message-ID: <32743787@h30.sp.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: emulation@FreeBSD.org Subject: Re: problems with port linux-f10-flashplugin10 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 Jul 2009 00:50:00 -0000 On Mon, 20 Jul 2009 17:40:29 +0000 Stefan wrote: > I have a problem to install this port linux-f10-flashplugin10. > The message after is: > > bsd.linux-apps.mk test failed: The component openldap is not defined for > LINUX_DIST_SUFFIX= (the corresponding variable openldap_FILE is not > defined > The ports emulators/linux_base-fc4, ftp/linux-curl, > security/linux-openssl are installed. > Is it possible to tell me what is wrong? This port should be used at FreeBSD-8.x (and linux base port linux_base-f10). For 7.x you have a linux-flashplugin10 port which may be used with non-default linux base port linux_base-f8. Please read /usr/ports/UPDATING and this maillist archieves for more information about linux ports updating. -- WBR, bsam From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 21 06:55:31 2009 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 AFADF106564A for ; Tue, 21 Jul 2009 06:55:31 +0000 (UTC) (envelope-from vova@sw.ru) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id 2E6FE8FC12 for ; Tue, 21 Jul 2009 06:55:30 +0000 (UTC) (envelope-from vova@sw.ru) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id n6L6tQA4014857 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 21 Jul 2009 10:55:27 +0400 (MSD) Received: from vova by vbook.fbsd.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MT9G1-0000W3-NI; Tue, 21 Jul 2009 10:55:25 +0400 From: Vladimir Grebenschikov To: Boris In-Reply-To: References: <1247175832.1455.36.camel@zero.mshome.net> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> Content-Type: text/plain; charset="KOI8-R" Content-Transfer-Encoding: quoted-printable Date: Tue, 21 Jul 2009 10:55:25 +0400 Message-Id: <1248159325.1695.17.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Cc: freebsd-emulation Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru 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 Jul 2009 06:55:31 -0000 =F7 =D0=CE, 20/07/2009 =D7 22:54 +0100, Boris =D0=C9=DB=C5=D4: > No luck for me. I have recompiled my kernel with the latest from CVS (I > noticed the pmap.c version 1.665 previous I used was 1.664). > I recompiled virtualbox rev427 as well. Same pmap here. > VirtualBox starts but whenever I launch a VM the system crashes just afte= r > hitting the start button, with and without VT-x enabled. Did you reload kernel module after rebuild of port ? I am sure it will be good to have virtualbox-kmod port. Rebuild whole virtualbox after each kernel update - is too long task. Truly speaking I've recompiled whole world. But can't suggest to try it now due to libraries changes. (every port should be rebuilt) > Worse thing is the memory dump does not complete so I have got no trace t= o > analyse. >=20 > Vladimir, >=20 > Could you confirm a few things for me please? >=20 > - did you upgrade from 7.2 to 8-CURRENT? or did you do a fresh install fr= om > snapshot? I live on -CURRENT for long time. (since 3-CURRENT I guess) > - I am using a customer kernel, I noticed you do it as well. Could you po= st > a diff -ruN GENERIC VBOOK for me please? No much sense to put diff - almost everything was changed, my configuration lives too long with just minor changes. Whole kernel config below. > Thanks, >=20 > Boris machine "i386" ident VBOOK maxusers 0 options SCHED_4BSD #options SCHED_ULE #ULE scheduler=20 options INCLUDE_CONFIG_FILE # Include this file in kernel cpu "I686_CPU" # aka Pentium Pro(tm) options COMPAT_43 options COMPAT_FREEBSD4 # Enable FreeBSD4 compatibility syscalls options COMPAT_FREEBSD5 options COMPAT_FREEBSD7 makeoptions DEBUG=3D-g =20 #makeoptions KERNEL=3Datang #device mem # Memory and kernel memory devices #device io # I/O device #options SMP # Symmetric MultiProcessor Kernel device apic device acpi options INET #Internet communications protocols device ether #Generic Ethernet device loop #Network loopback device device bpf #Berkeley packet filter options IPFIREWALL #firewall options IPFIREWALL_VERBOSE #print information about dropped pa= ckets options IPFIREWALL_FORWARD #options "IPFIREWALL_VERBOSE_LIMIT=3D100" #limit verbosity options IPDIVERT #divert sockets options DUMMYNET #options IPSEC #options IPSEC_ESP options FFS #Fast filesystem options PSEUDOFS options PROCFS #Process filesystem options SOFTUPDATES # Allow this many swap-devices. device scbus #base SCSI code device da #SCSI direct access devices (aka disks) device sa #SCSI tapes device cd #SCSI CD-ROMs device pass #CAM passthrough driver options SCSI_DELAY=3D1000=09 device pty #Pseudo ttys - can go as high as 256 device speaker #Play IBM BASIC-style noises out your speaker device md # Memory "disks" #device isa device atkbdc device atkbd=20 device psm device vga device sc options MAXCONS=3D16 # number of virtual consoles #options SC_DFLT_FONT # compile font in #makeoptions SC_DFLT_FONT=3D"cp866-vio" options SC_HISTORY_SIZE=3D1024 # number of history buffer lines #options SC_DISABLE_REBOOT # disable reboot key sequence options SC_NO_SUSPEND_VTYSWITCH options TEKEN_UTF8 options TEKEN_XTERM device ata device atadisk # ATA disk drives device atapicd # ATAPI CDROM drives #device atapifd # ATAPI floppy drives #device atapist # ATAPI tape drives #device atapicam #device fdc=09 #device sio device uart device puc device pci #device apm device smbus device intpm device smb device iicbus device iicbb device ic device iic device iicsmb=09 device pmtimer options KTRACE #kernel tracing options DDB options KDB options GDB options BREAK_TO_DEBUGGER #a BREAK on a comconsole goes to #DDB, if available. options KDB_UNATTENDED options SC_PIXEL_MODE # OLDCARD #device pcic #device card 1 # NEWCARD # Pcmcia and cardbus bridge support device cbb # cardbus (yenta) bridge device pccard device cardbus device random options _KPOSIX_PRIORITY_SCHEDULING #device acpica #options ACPI_DEBUG options KBD_INSTALL_CDEV #device firewire #device fwohci #device sbp options PREEMPTION #options FULL_PREEMPTION options AH_SUPPORT_AR5416 --=20 Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 21 08:41:43 2009 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 0D96D106564A for ; Tue, 21 Jul 2009 08:41:43 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id BD45B8FC14 for ; Tue, 21 Jul 2009 08:41:42 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from gate.ipt.ru ([194.62.233.123] helo=h30.sp.ipt.ru) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1MTAur-0005B1-6B; Tue, 21 Jul 2009 12:41:41 +0400 To: Chris Timmons References: <20090720164237.K25579@n.cwu.edu> From: Boris Samorodov Date: Tue, 21 Jul 2009 12:41:40 +0400 In-Reply-To: <20090720164237.K25579@n.cwu.edu> (Chris Timmons's message of "Mon\, 20 Jul 2009 16\:50\:29 -0700 \(PDT\)") Message-ID: <23781883@h30.sp.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@FreeBSD.org Subject: Re: linux_base on 7-Stable for linux-oracle-instantclient? 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 Jul 2009 08:41:43 -0000 On Mon, 20 Jul 2009 16:50:29 -0700 (PDT) Chris Timmons wrote: > Would anyone care to suggest an appropriate linux_base port for > supporting the linux-oracle-instantclient port(s)? > In present-day 7-Stable are there grave caveats for forcing Linux 2.6 > syscall compatibility to use one of the more recent -fc base systems? The default (and recommended) port for 7.x is linux_base-fc4. > We are trying to get a reasonable Perl interface on FreeBSD into > Oracle; any other suggestions welcome. Other possibility for 7.x is linux_base-f8. It isn't a default though and one should read /usr/ports/UPDATING as well as this maillist archieves for details how to upgrade a linux base port. -- WBR, bsam From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 21 08:58:39 2009 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 15EA3106566B for ; Tue, 21 Jul 2009 08:58:39 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail.itac.at (mail.itac.at [213.47.211.116]) by mx1.freebsd.org (Postfix) with ESMTP id 86C358FC16 for ; Tue, 21 Jul 2009 08:58:38 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1MTBBD-0006Ir-OY; Tue, 21 Jul 2009 10:58:35 +0200 Received: from 77.119.209.158 (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Tue, 21 Jul 2009 10:58:35 +0200 (CEST) Message-ID: In-Reply-To: <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> Date: Tue, 21 Jul 2009 10:58:35 +0200 (CEST) From: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= To: "Nenhum_de_Nos" User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 08:58:39 -0000 On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: > > On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >> Hi >> >>> I got Revision 427 compiled on amd64 unfortunately it crashes at the >>> time of >>> launching any VM. I have provided some details to Beat and pointed at >>> this >>> thread as the issue looked similar to Vladimir's one when reading the >>> core.txt file produced after the system crash. >> >> It does not crash any more with very recent kernel. >> So, probably you may do another try. > > I have here: > $ uname -a > FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT 2009 > root@xxx:/usr/obj/usr/src/sys/xxx amd64 > > and got to boot debian 5 amd64 cd and right now I'm quite at the end of > the install. this is just possible using just one cpu. when tried using > two cpu's, somewhere before disk selection it dies. Did the install finish successfully or did the vm crash? Because with 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM after a few minutes with I/O activity. I couldn't fully install Arch Linux nor Windows7 yet. > my goal is to run a linux amd64 with as much cores I can (goal is all 4) > running folding at home (cpu intense app). > > I read about 3.0 lets us use VT-x and run multicore ok, anyone tested this > ? VT-x is not yet working on FreeBSD. > thanks and great work on vbox and freebsd !! the port compiles fine in > here. I just recompiled vbox. would be a good idea to recompile all ? > > matheus > >> Only issue I have - no screen refresh, and it kills whole thing for me. >> >>> Let's see what comes back from Beat and the folks porting the port to >>> FreeBSD. >>> >>> Boris >> >> -- >> Vladimir B. Grebenschikov >> vova@fbsd.ru -- Bernhard Fröhlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 21 16:17:28 2009 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 CE4BC10656F5 for ; Tue, 21 Jul 2009 16:17:28 +0000 (UTC) (envelope-from shildret@scotth.emsphone.com) Received: from scotth.emsphone.com (scotth.emsphone.com [199.67.51.179]) by mx1.freebsd.org (Postfix) with ESMTP id 9F22B8FC19 for ; Tue, 21 Jul 2009 16:17:28 +0000 (UTC) (envelope-from shildret@scotth.emsphone.com) Received: from scotth.emsphone.com (localhost [127.0.0.1]) by scotth.emsphone.com (8.14.3/8.14.3) with ESMTP id n6LFnmhS040707; Tue, 21 Jul 2009 10:49:48 -0500 (CDT) (envelope-from shildret@scotth.emsphone.com) Received: (from shildret@localhost) by scotth.emsphone.com (8.14.3/8.14.3/Submit) id n6LFnmD2040706; Tue, 21 Jul 2009 10:49:48 -0500 (CDT) (envelope-from shildret@scotth.emsphone.com) From: "Scott T. Hildreth" To: Chris Timmons In-Reply-To: <20090720164237.K25579@n.cwu.edu> References: <20090720164237.K25579@n.cwu.edu> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 21 Jul 2009 10:49:48 -0500 Message-Id: <1248191388.4379.63.camel@scotth.emsphone.com> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port Cc: freebsd-emulation@freebsd.org Subject: Re: linux_base on 7-Stable for linux-oracle-instantclient? 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 Jul 2009 16:17:29 -0000 On Mon, 2009-07-20 at 16:50 -0700, Chris Timmons wrote: > Would anyone care to suggest an appropriate linux_base port for supporting > the linux-oracle-instantclient port(s)? > > In present-day 7-Stable are there grave caveats for forcing Linux 2.6 > syscall compatibility to use one of the more recent -fc base systems? > > We are trying to get a reasonable Perl interface on FreeBSD into Oracle; > any other suggestions welcome. What exactly are you trying to do? If you want to use DBD::Oracle a linux perl will be needed, basically you will need to install linux_dist-gentoo-stage3 do a change root and compile perl, DBD::Oracle...etc. You can always run a Proxyserver somewhere and use DBD::Proxy to connect to Oracle. > > Regards, > -Chris > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.org" From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 21 17:11:26 2009 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 DD3CA106566C for ; Tue, 21 Jul 2009 17:11:26 +0000 (UTC) (envelope-from cwt@networks.cwu.edu) Received: from nsc0.cwu.edu (nsc0.cwu.edu [72.233.196.16]) by mx1.freebsd.org (Postfix) with ESMTP id B59EB8FC16 for ; Tue, 21 Jul 2009 17:11:26 +0000 (UTC) (envelope-from cwt@networks.cwu.edu) Received: from n.cwu.edu (n.cwu.edu [198.104.69.57]) by nsc0.cwu.edu (8.14.3/8.14.3) with ESMTP id n6LHBQs7087471; Tue, 21 Jul 2009 10:11:26 -0700 (PDT) (envelope-from cwt@networks.cwu.edu) Received: from n.cwu.edu (localhost [127.0.0.1]) by n.cwu.edu (8.13.3/8.13.3) with ESMTP id n6LHBQhU033944; Tue, 21 Jul 2009 10:11:26 -0700 (PDT) (envelope-from cwt@networks.cwu.edu) Received: from localhost (cwt@localhost) by n.cwu.edu (8.13.3/8.13.1/Submit) with ESMTP id n6LHBPh3033941; Tue, 21 Jul 2009 10:11:25 -0700 (PDT) (envelope-from cwt@networks.cwu.edu) X-Authentication-Warning: n.cwu.edu: cwt owned process doing -bs Date: Tue, 21 Jul 2009 10:11:25 -0700 (PDT) From: Chris Timmons X-X-Sender: cwt@n.cwu.edu To: "Scott T. Hildreth" In-Reply-To: <1248191388.4379.63.camel@scotth.emsphone.com> Message-ID: <20090721095129.A33299@n.cwu.edu> References: <20090720164237.K25579@n.cwu.edu> <1248191388.4379.63.camel@scotth.emsphone.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Sender DNS name whitelisted, not delayed by milter-greylist-4.0 (nsc0.cwu.edu [72.233.196.16]); Tue, 21 Jul 2009 10:11:26 -0700 (PDT) Cc: freebsd-emulation@freebsd.org Subject: Re: linux_base on 7-Stable for linux-oracle-instantclient? 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 Jul 2009 17:11:27 -0000 We need basic access to an Oracle database via Perl DBI on FreeBSD 7-stable. Does linux_dist-gentoo-stage3 facilitate compiling/installing a linux perl better than doing so using the fc4 linux_base? It seems like I will need some combination of the linux-instantclient and Oracle-8 client ports installed, then a linux perl to interface with them(?) The proxy is in interesting idea which I will look into. -c On Tue, 21 Jul 2009, Scott T. Hildreth wrote: >> We are trying to get a reasonable Perl interface on FreeBSD into Oracle; >> any other suggestions welcome. > > What exactly are you trying to do? If you want to use DBD::Oracle a > linux perl will be needed, basically you will need to install linux_dist-gentoo-stage3 > do a change root and compile perl, DBD::Oracle...etc. You can always run > a Proxyserver somewhere and use DBD::Proxy to connect to Oracle. From owner-freebsd-emulation@FreeBSD.ORG Tue Jul 21 17:30:30 2009 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 58F6F106566C for ; Tue, 21 Jul 2009 17:30:30 +0000 (UTC) (envelope-from shildret@scotth.emsphone.com) Received: from scotth.emsphone.com (scotth.emsphone.com [199.67.51.179]) by mx1.freebsd.org (Postfix) with ESMTP id 2892E8FC17 for ; Tue, 21 Jul 2009 17:30:29 +0000 (UTC) (envelope-from shildret@scotth.emsphone.com) Received: from scotth.emsphone.com (localhost [127.0.0.1]) by scotth.emsphone.com (8.14.3/8.14.3) with ESMTP id n6LHUTcr041204; Tue, 21 Jul 2009 12:30:29 -0500 (CDT) (envelope-from shildret@scotth.emsphone.com) Received: (from shildret@localhost) by scotth.emsphone.com (8.14.3/8.14.3/Submit) id n6LHUTn7041203; Tue, 21 Jul 2009 12:30:29 -0500 (CDT) (envelope-from shildret@scotth.emsphone.com) From: "Scott T. Hildreth" To: Chris Timmons In-Reply-To: <20090721095129.A33299@n.cwu.edu> References: <20090720164237.K25579@n.cwu.edu> <1248191388.4379.63.camel@scotth.emsphone.com> <20090721095129.A33299@n.cwu.edu> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Tue, 21 Jul 2009 12:30:29 -0500 Message-Id: <1248197429.4379.73.camel@scotth.emsphone.com> Mime-Version: 1.0 X-Mailer: Evolution 2.24.5 FreeBSD GNOME Team Port Cc: freebsd-emulation@freebsd.org Subject: Re: linux_base on 7-Stable for linux-oracle-instantclient? 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 Jul 2009 17:30:30 -0000 On Tue, 2009-07-21 at 10:11 -0700, Chris Timmons wrote: > We need basic access to an Oracle database via Perl DBI on FreeBSD > 7-stable. Does linux_dist-gentoo-stage3 facilitate compiling/installing a > linux perl better than doing so using the fc4 linux_base? fc4-linux base does have dev ports, so you can't compile. > > It seems like I will need some combination of the linux-instantclient and > Oracle-8 client ports installed, then a linux perl to interface with > them(?) The 8 client is to old, current version of DBD::Oracle won't compile with it. > > The proxy is in interesting idea which I will look into. > > -c > > On Tue, 21 Jul 2009, Scott T. Hildreth wrote: > > >> We are trying to get a reasonable Perl interface on FreeBSD into Oracle; > >> any other suggestions welcome. > > > > What exactly are you trying to do? If you want to use DBD::Oracle a > > linux perl will be needed, basically you will need to install linux_dist-gentoo-stage3 > > do a change root and compile perl, DBD::Oracle...etc. You can always run > > a Proxyserver somewhere and use DBD::Proxy to connect to Oracle. From owner-freebsd-emulation@FreeBSD.ORG Wed Jul 22 07:35:49 2009 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 72128106566B for ; Wed, 22 Jul 2009 07:35:49 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from marvin.chruetertee.ch (marvin.chruetertee.ch [217.150.245.55]) by mx1.freebsd.org (Postfix) with ESMTP id 03AD58FC14 for ; Wed, 22 Jul 2009 07:35:48 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from daedalus.network.local (gprs13.swisscom-mobile.ch [193.247.250.13]) (authenticated bits=0) by marvin.chruetertee.ch (8.14.3/8.14.3) with ESMTP id n6M7ZjoP083719 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Wed, 22 Jul 2009 07:35:47 GMT (envelope-from beat@FreeBSD.org) Message-ID: <4A66C193.9090704@FreeBSD.org> Date: Wed, 22 Jul 2009 09:36:51 +0200 From: Beat Gaetzi User-Agent: Thunderbird 2.0.0.22 (X11/20090713) MIME-Version: 1.0 To: Boris References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@FreeBSD.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 07:35:49 -0000 Hi, Boris wrote: > I got Revision 427 compiled on amd64 unfortunately it crashes at the time of > launching any VM. I have provided some details to Beat and pointed at this > thread as the issue looked similar to Vladimir's one when reading the > core.txt file produced after the system crash. Could you please test the latest version from svn (rev 428) and check If the panic still occur. Thanks, Beat From owner-freebsd-emulation@FreeBSD.ORG Wed Jul 22 08:36:49 2009 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 7D95F106566B; Wed, 22 Jul 2009 08:36:49 +0000 (UTC) (envelope-from pol@opk.ru) Received: from fire.iib.ru (fire.iib.ru [195.151.95.16]) by mx1.freebsd.org (Postfix) with ESMTP id 096068FC18; Wed, 22 Jul 2009 08:36:48 +0000 (UTC) (envelope-from pol@opk.ru) Received: from mars.iib.ru (mars.iib.ru [192.168.49.100]) by fire.iib.ru (8.9/8.9) with ESMTP id n6M81hdT005125; Wed, 22 Jul 2009 12:01:44 +0400 (MSD) (envelope-from pol@opk.ru) Received: from [192.168.100.36] (polwin.iib.ru [192.168.100.36]) (user=pol mech=PLAIN bits=0) by mars.iib.ru (8.13.3/8.13.3) with ESMTP id n6M81fuO009723; Wed, 22 Jul 2009 12:01:42 +0400 (MSD) (envelope-from pol@opk.ru) Message-ID: <4A66C729.703@opk.ru> Date: Wed, 22 Jul 2009 12:00:41 +0400 From: Pavel I Volkov User-Agent: Thunderbird 2.0.0.22 (Windows/20090605) MIME-Version: 1.0 To: Max Khon References: <20090719152407.c9f3b912.nork@FreeBSD.org> <78D32019-1C75-4FE8-BF59-A5A3CF58766B@samodelkin.net> In-Reply-To: <78D32019-1C75-4FE8-BF59-A5A3CF58766B@samodelkin.net> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Scanned: ClamAV 0.94/9604/Wed Jul 22 04:59:17 2009 on kav.iib.ru. X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.2 (fire.iib.ru [192.168.49.14]); Wed, 22 Jul 2009 12:01:45 +0400 (MSD) X-Spam-Status: No, score=-101.3 required=6.0 tests=ALL_TRUSTED,AWL, USER_IN_WHITELIST autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on fire.iib.ru Cc: Pavel Volkov , freebsd-emulation@FreeBSD.org, Christophe Fillot , Norikatsu Shigemura Subject: Re: Dynamips has two minor bugs. 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 Jul 2009 08:36:49 -0000 Hello. The first patch is correct and will be used. The second patch causes errors in conjunction work with a network, and requires further study. (packet loss, increase in the time of delivery packages, unexpected icmp redirect in to network) "Router" ip: 192.168.0.250/24 host ip: 192.168.0.45/24 remote ip: 192.168.0.252/24 with path: Router#sh arp | i 0.(45|252) Internet 192.168.0.45 0 000d.56ce.9f67 ARPA FastEthernet0/0 Internet 192.168.0.252 0 0000.0c07.ac64 ARPA FastEthernet0/0 Router# Router#ping 192.168.0.252 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.0.252, timeout is 2 seconds: !.!!. Success rate is 60 percent (3/5), round-trip min/avg/max = 888/888/888 ms Router# Router#ping 192.168.0.45 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.0.45, timeout is 2 seconds: ..!!! Success rate is 60 percent (3/5), round-trip min/avg/max = 968/981/1008 ms Router# on host: ... icmp redirect from 192.168.0.250: 192.168.0.167 => 192.168.0.167 icmp redirect from 192.168.0.250: 192.168.0.167 => 192.168.0.167 icmp redirect from 192.168.0.250: 192.168.0.167 => 192.168.0.167 icmp redirect from 192.168.0.250: 192.168.0.167 => 192.168.0.167 ... without patch: Router#sh arp | i 0.(252|45) Internet 192.168.0.45 0 000d.56ce.9f67 ARPA FastEthernet0/0 Internet 192.168.0.252 4 0000.0c07.ac64 ARPA FastEthernet0/0 Router# Router#ping 192.168.0.252 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.0.252, timeout is 2 seconds: !!!!! Success rate is 100 percent (5/5), round-trip min/avg/max = 8/9/12 ms Router# Router#ping 192.168.0.45 Type escape sequence to abort. Sending 5, 100-byte ICMP Echos to 192.168.0.45, timeout is 2 seconds: ..... Success rate is 0 percent (0/5) Router# Max Khon пишет: > Hello! > > On 19.07.2009, at 13:24, Norikatsu Shigemura wrote: > >> Hi Christophe, and FreeBSD's dynamips port maintainer. >> >> I found two minor bugs. >> >> 1. dynamips -m can't parse Cisco format (0001.0002.0003), because >> parse_mac_addr() can parse it, but not return(0). Please see >> also attached 'patch-net.c'. >> >> 2. dynamips can't communicate to real world via FreeBSD's gen_eth >> (libpcap). In this case, bpf(4) requires BIOCFEEDBACK. So I >> investigated like attached 'patch-gen_eth.c'. >> >> SEE ALSO: >> http://lists.freebsd.org/pipermail/freebsd-net/2009-July/022423.html >> >> >> >> ports maintainers >> May I commit these patch to ports/emulators/dynamips-devel >> (0.2.8RC2) >> and ports/emulators/dynamips (0.2.7)? >> > > Go ahead! You may also take maintainership of dynamips port if you like. > > Max From owner-freebsd-emulation@FreeBSD.ORG Wed Jul 22 14:14:54 2009 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 8A1DA1065672 for ; Wed, 22 Jul 2009 14:14:54 +0000 (UTC) (envelope-from rjk@wintek.com) Received: from mail.wintek.com (mail.wintek.com [199.233.104.86]) by mx1.freebsd.org (Postfix) with ESMTP id 4D0798FC15 for ; Wed, 22 Jul 2009 14:14:53 +0000 (UTC) (envelope-from rjk@wintek.com) Received: from samba.wintek.local (samba.wintek.com [206.230.2.229]) by mail.wintek.com (8.14.3/8.14.3/Wintek) with ESMTP id n6MEErfI008604; Wed, 22 Jul 2009 10:14:53 -0400 (EDT) (envelope-from rjk@wintek.com) Received: from rjk.wintek.local (rjk.wintek.local [172.28.1.248]) by samba.wintek.local (8.14.3/8.14.3) with ESMTP id n6MEEfMx035911; Wed, 22 Jul 2009 10:14:42 -0400 (EDT) (envelope-from rjk@wintek.com) Message-ID: <4A671ED7.4030901@wintek.com> Date: Wed, 22 Jul 2009 10:14:47 -0400 From: Richard Kuhns Organization: Wintek Corporation User-Agent: Thunderbird 2.0.0.22 (X11/20090624) MIME-Version: 1.0 To: Beat Gaetzi References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <4A66C193.9090704@FreeBSD.org> In-Reply-To: <4A66C193.9090704@FreeBSD.org> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "freebsd-emulation@freebsd.org" , Boris Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: rjk@wintek.com 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 Jul 2009 14:14:54 -0000 Beat Gaetzi wrote: > Hi, > > Boris wrote: >> I got Revision 427 compiled on amd64 unfortunately it crashes at the time of >> launching any VM. I have provided some details to Beat and pointed at this >> thread as the issue looked similar to Vladimir's one when reading the >> core.txt file produced after the system crash. > > Could you please test the latest version from svn (rev 428) and check If > the panic still occur. > And there was great rejoicing... I'm running FreeBSD 7.2/i386 as of 2009-07-15. I've been running virtualbox-2.2.51, since under every update since then every vm's console was essentially dark until I started to close the window, at which time I could see grey-out text/images. I just finished building and installing this version, and it works! Many thanks, and congratulations on a job well done! One quick question: concening networking, are we still limited to NAT? Thanks again! - Rich -- Richard Kuhns Wintek Corporation E-mail: rjk@wintek.com 427 N 6th Street STE C Receptionist: 765-742-8428 Lafayette, IN 47901-2211 Direct Line: 765-269-8541 United States of America From owner-freebsd-emulation@FreeBSD.ORG Wed Jul 22 23:15:54 2009 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 E5501106564A for ; Wed, 22 Jul 2009 23:15:54 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from mail-qy0-f191.google.com (mail-qy0-f191.google.com [209.85.221.191]) by mx1.freebsd.org (Postfix) with ESMTP id 892028FC17 for ; Wed, 22 Jul 2009 23:15:54 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by qyk29 with SMTP id 29so760413qyk.3 for ; Wed, 22 Jul 2009 16:15:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:user-agent :mime-version:content-type:content-transfer-encoding:x-priority :importance; bh=1ndtEl5yv8A30vQNtgRfbDewcqp1Vx9lXIjqLefvmIk=; b=juamO+YhY/uk07gdOTIQ7KlpUkGP02LMw6mwUxg4LtrcqLSOi+f5mASZc6xfjxyeqI Nk4Rjs6LAP/dVEVipGlqOJXRU2s93PC2AC80LsbyigoAjDOFOYWGBKD5gpR1IHl10Qwr +Fm7eoZaRPlUZ2iup5qcFPHSH5TYJ27HOE1YQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=i9/Qax3z6efTFGZtMxAd0RADkCpQ/azb4LBb3pClfz1QboNkXeYsDrGOAhGM7p0NXS NSObc0XvaoNbiTziTbY2JF7ocX6xkF1qjJF7/5kdM5kCFvTj17YEX4vWssgj60lebmx/ sCTlfOnkkXmwMcwyNw7vIMqSStomYRil/fEhI= Received: by 10.224.80.204 with SMTP id u12mr1416591qak.82.1248304553755; Wed, 22 Jul 2009 16:15:53 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id 7sm1276749qwf.28.2009.07.22.16.15.51 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 22 Jul 2009 16:15:52 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id 77F9BB80C2; Wed, 22 Jul 2009 20:15:47 -0300 (BRT) Received: from 189.93.50.125 (SquirrelMail authenticated user matheus) by cygnus.homeunix.com with HTTP; Wed, 22 Jul 2009 20:15:47 -0300 (BRT) Message-ID: <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> In-Reply-To: References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> Date: Wed, 22 Jul 2009 20:15:47 -0300 (BRT) From: "Nenhum_de_Nos" To: freebsd-emulation@freebsd.org User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 23:15:55 -0000 On Tue, July 21, 2009 05:58, Bernhard Fröhlich wrote: > On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: >> >> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >>> Hi >>> >>>> I got Revision 427 compiled on amd64 unfortunately it crashes at the >>>> time of >>>> launching any VM. I have provided some details to Beat and pointed at >>>> this >>>> thread as the issue looked similar to Vladimir's one when reading the >>>> core.txt file produced after the system crash. >>> >>> It does not crash any more with very recent kernel. >>> So, probably you may do another try. >> >> I have here: >> $ uname -a >> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT >> 2009 >> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >> >> and got to boot debian 5 amd64 cd and right now I'm quite at the end of >> the install. this is just possible using just one cpu. when tried using >> two cpu's, somewhere before disk selection it dies. > > Did the install finish successfully or did the vm crash? Because with > 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM after a > few minutes with I/O activity. I couldn't fully install Arch Linux nor > Windows7 yet. I got it running here. tested the last svn rev today. i got so much happy I installed debian and got both cpu to full load. a while after I looked and my box was frozen :( so now on small steps. I have now two cpu and VT-x enabled. it looks good so far. but I know when I fire folding at home, using both cpu is no good anymore. I'll let it this way for a while to see if it freezes, and then will try one cpu and full load. this is work, so I'll try to reproduce this at home, using 8-beta and post here. thanks, matheus >> my goal is to run a linux amd64 with as much cores I can (goal is all 4) >> running folding at home (cpu intense app). >> >> I read about 3.0 lets us use VT-x and run multicore ok, anyone tested >> this >> ? > > VT-x is not yet working on FreeBSD. > >> thanks and great work on vbox and freebsd !! the port compiles fine in >> here. I just recompiled vbox. would be a good idea to recompile all ? >> >> matheus >> >>> Only issue I have - no screen refresh, and it kills whole thing for me. >>> >>>> Let's see what comes back from Beat and the folks porting the port to >>>> FreeBSD. >>>> >>>> Boris >>> >>> -- >>> Vladimir B. Grebenschikov >>> vova@fbsd.ru > > > -- > Bernhard Fröhlich > http://www.bluelife.at/ > > -- We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Thu Jul 23 00:02:27 2009 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 A9FEE1065672 for ; Thu, 23 Jul 2009 00:02:27 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from mail-qy0-f191.google.com (mail-qy0-f191.google.com [209.85.221.191]) by mx1.freebsd.org (Postfix) with ESMTP id 4C9988FC14 for ; Thu, 23 Jul 2009 00:02:27 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by qyk29 with SMTP id 29so786761qyk.3 for ; Wed, 22 Jul 2009 17:02:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:user-agent :mime-version:content-type:content-transfer-encoding:x-priority :importance; bh=In6tpgTNzJgJ4cVjvLlhTbwnnHk9TFPTzshWKDbwv/4=; b=UtoUxXtsu3fdjzVrJbxDIM9EN4fv7UatY4WAJAS2+OgT4yA4SszvJOYrM+X48Wh1Yg eOOHOfwOPJ3zkpt2MMNGI0tyG+frh+w8e8KIhmhiF27cVLCYMZmZE/D78dun4OKb9b8E R7ilY4f1eskfIr+3zxt4/vmxCYX0qi1IS+Mhk= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=qWSoYkSW5sul78qNhCdFVMkFpcJPecGO54ut9qe5+9QGuVdyMjbs0ZKHmoAWPQMko3 myKTFiT42sbpk2OOoXp6oASUnw7NEX7xXTrRK/NrvL7ZC1MYVy1OLlJdsY5wo2vk4d0D X69tUXxLP6hs9BLIBEbLYV/vMaFjv0Kf599DM= Received: by 10.224.29.8 with SMTP id o8mr1436723qac.87.1248307345888; Wed, 22 Jul 2009 17:02:25 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id 8sm1346657qwj.16.2009.07.22.17.02.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 22 Jul 2009 17:02:24 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id 77297B80C2; Wed, 22 Jul 2009 21:02:20 -0300 (BRT) Received: from 189.93.50.125 (SquirrelMail authenticated user matheus) by cygnus.homeunix.com with HTTP; Wed, 22 Jul 2009 21:02:20 -0300 (BRT) Message-ID: <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> In-Reply-To: <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> Date: Wed, 22 Jul 2009 21:02:20 -0300 (BRT) From: "Nenhum_de_Nos" To: freebsd-emulation@freebsd.org User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 00:02:27 -0000 On Wed, July 22, 2009 20:15, Nenhum_de_Nos wrote: > > On Tue, July 21, 2009 05:58, Bernhard Fröhlich wrote: >> On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: >>> >>> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >>>> Hi >>>> >>>>> I got Revision 427 compiled on amd64 unfortunately it crashes at the >>>>> time of >>>>> launching any VM. I have provided some details to Beat and pointed at >>>>> this >>>>> thread as the issue looked similar to Vladimir's one when reading the >>>>> core.txt file produced after the system crash. >>>> >>>> It does not crash any more with very recent kernel. >>>> So, probably you may do another try. >>> >>> I have here: >>> $ uname -a >>> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT >>> 2009 >>> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >>> >>> and got to boot debian 5 amd64 cd and right now I'm quite at the end of >>> the install. this is just possible using just one cpu. when tried using >>> two cpu's, somewhere before disk selection it dies. >> >> Did the install finish successfully or did the vm crash? Because with >> 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM after a >> few minutes with I/O activity. I couldn't fully install Arch Linux nor >> Windows7 yet. > > I got it running here. tested the last svn rev today. i got so much happy > I installed debian and got both cpu to full load. a while after I looked > and my box was frozen :( > > so now on small steps. I have now two cpu and VT-x enabled. it looks good > so far. but I know when I fire folding at home, using both cpu is no good > anymore. > I'll let it this way for a while to see if it freezes, and then will try > one cpu and full load. > > this is work, so I'll try to reproduce this at home, using 8-beta and post > here. > > thanks, slight change of plans. I did run the single core test first. 40 minutes full load and ok. I'll run both cores and a single core full load to see. thanks, matheus > matheus >>> my goal is to run a linux amd64 with as much cores I can (goal is all >>> 4) >>> running folding at home (cpu intense app). >>> >>> I read about 3.0 lets us use VT-x and run multicore ok, anyone tested >>> this >>> ? >> >> VT-x is not yet working on FreeBSD. >> >>> thanks and great work on vbox and freebsd !! the port compiles fine in >>> here. I just recompiled vbox. would be a good idea to recompile all ? >>> >>> matheus >>> >>>> Only issue I have - no screen refresh, and it kills whole thing for >>>> me. >>>> >>>>> Let's see what comes back from Beat and the folks porting the port to >>>>> FreeBSD. >>>>> >>>>> Boris >>>> >>>> -- >>>> Vladimir B. Grebenschikov >>>> vova@fbsd.ru >> >> >> -- >> Bernhard Fröhlich >> http://www.bluelife.at/ >> >> > > > -- > We will call you cygnus, > The God of balance you shall be > > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > > http://en.wikipedia.org/wiki/Posting_style > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to > "freebsd-emulation-unsubscribe@freebsd.org" > -- We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Thu Jul 23 06:14:37 2009 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 5DB6E106566B for ; Thu, 23 Jul 2009 06:14:37 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail.itac.at (mail.itac.at [213.47.211.116]) by mx1.freebsd.org (Postfix) with ESMTP id 6CB8E8FC14 for ; Thu, 23 Jul 2009 06:14:35 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1MTrZW-0000Jy-Qa; Thu, 23 Jul 2009 08:14:30 +0200 Received: from 83.64.253.201 (proxying for unknown) (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Thu, 23 Jul 2009 08:14:30 +0200 (CEST) Message-ID: <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> In-Reply-To: <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> Date: Thu, 23 Jul 2009 08:14:30 +0200 (CEST) From: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= To: "Nenhum_de_Nos" User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 06:14:37 -0000 On Thu, July 23, 2009 2:02 am, Nenhum_de_Nos wrote: > > On Wed, July 22, 2009 20:15, Nenhum_de_Nos wrote: >> >> On Tue, July 21, 2009 05:58, Bernhard Fröhlich wrote: >>> On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: >>>> >>>> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >>>>> Hi >>>>> >>>>>> I got Revision 427 compiled on amd64 unfortunately it crashes at the >>>>>> time of >>>>>> launching any VM. I have provided some details to Beat and pointed >>>>>> at >>>>>> this >>>>>> thread as the issue looked similar to Vladimir's one when reading >>>>>> the >>>>>> core.txt file produced after the system crash. >>>>> >>>>> It does not crash any more with very recent kernel. >>>>> So, probably you may do another try. >>>> >>>> I have here: >>>> $ uname -a >>>> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT >>>> 2009 >>>> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >>>> >>>> and got to boot debian 5 amd64 cd and right now I'm quite at the end >>>> of >>>> the install. this is just possible using just one cpu. when tried >>>> using >>>> two cpu's, somewhere before disk selection it dies. >>> >>> Did the install finish successfully or did the vm crash? Because with >>> 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM after a >>> few minutes with I/O activity. I couldn't fully install Arch Linux nor >>> Windows7 yet. >> >> I got it running here. tested the last svn rev today. i got so much >> happy >> I installed debian and got both cpu to full load. a while after I looked >> and my box was frozen :( >> >> so now on small steps. I have now two cpu and VT-x enabled. it looks >> good >> so far. but I know when I fire folding at home, using both cpu is no >> good >> anymore. >> I'll let it this way for a while to see if it freezes, and then will try >> one cpu and full load. >> >> this is work, so I'll try to reproduce this at home, using 8-beta and >> post >> here. >> >> thanks, > > slight change of plans. I did run the single core test first. 40 minutes > full load and ok. > > I'll run both cores and a single core full load to see. > Sounds good so far. Could you please also try to copy something in the VM around? Would be interesting if that causes the crash. Thanks! -- Bernhard Fröhlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Thu Jul 23 14:42:29 2009 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 4DD7B1065686 for ; Thu, 23 Jul 2009 14:42:29 +0000 (UTC) (envelope-from vova@sw.ru) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id 6F1278FC19 for ; Thu, 23 Jul 2009 14:42:27 +0000 (UTC) (envelope-from vova@sw.ru) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id n6NEf8D5015483 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 23 Jul 2009 18:41:09 +0400 (MSD) Received: from vova by vbook.fbsd.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MTzTo-0007pn-7R; Thu, 23 Jul 2009 18:41:08 +0400 From: Vladimir Grebenschikov To: Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= In-Reply-To: <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Date: Thu, 23 Jul 2009 18:41:08 +0400 Message-Id: <1248360068.29930.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru 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 Jul 2009 14:42:29 -0000 Hi=20 Bernhard, can you provide an idea how to dig non-working refresh for me ? It works fine on virtualbox5 and virtualbox6 archives, but when I've upgraded some time ago using port from tree it (screen refresh) does not work for me any more. -------- =D0=98=D1=81=D1=85=D0=BE=D0=B4=D0=BD=D0=BE=D0=B5 =D1=81=D0=BE=D0= =BE=D0=B1=D1=89=D0=B5=D0=BD=D0=B8=D0=B5 -------- =D0=9E=D1=82: Bernhard Fr=C3=B6hlich =D0=9A=D0=BE=D0=BC=D1=83: Nenhum_de_Nos =D0=9A=D0=BE=D0=BF=D0=B8=D1=8F: freebsd-emulation@freebsd.org =D0=A2=D0=B5=D0=BC=D0=B0: Re: VirtualBox - no screen refresh =D0=94=D0=B0=D1=82=D0=B0: Thu, 23 Jul 2009 08:14:30 +0200 (CEST) On Thu, July 23, 2009 2:02 am, Nenhum_de_Nos wrote: > > On Wed, July 22, 2009 20:15, Nenhum_de_Nos wrote: >> >> On Tue, July 21, 2009 05:58, Bernhard Fr=C3=B6hlich wrote: >>> On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: >>>> >>>> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >>>>> Hi >>>>> >>>>>> I got Revision 427 compiled on amd64 unfortunately it crashes at the >>>>>> time of >>>>>> launching any VM. I have provided some details to Beat and pointed >>>>>> at >>>>>> this >>>>>> thread as the issue looked similar to Vladimir's one when reading >>>>>> the >>>>>> core.txt file produced after the system crash. >>>>> >>>>> It does not crash any more with very recent kernel. >>>>> So, probably you may do another try. >>>> >>>> I have here: >>>> $ uname -a >>>> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT >>>> 2009 >>>> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >>>> >>>> and got to boot debian 5 amd64 cd and right now I'm quite at the end >>>> of >>>> the install. this is just possible using just one cpu. when tried >>>> using >>>> two cpu's, somewhere before disk selection it dies. >>> >>> Did the install finish successfully or did the vm crash? Because with >>> 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM after a >>> few minutes with I/O activity. I couldn't fully install Arch Linux nor >>> Windows7 yet. >> >> I got it running here. tested the last svn rev today. i got so much >> happy >> I installed debian and got both cpu to full load. a while after I looked >> and my box was frozen :( >> >> so now on small steps. I have now two cpu and VT-x enabled. it looks >> good >> so far. but I know when I fire folding at home, using both cpu is no >> good >> anymore. >> I'll let it this way for a while to see if it freezes, and then will try >> one cpu and full load. >> >> this is work, so I'll try to reproduce this at home, using 8-beta and >> post >> here. >> >> thanks, > > slight change of plans. I did run the single core test first. 40 minutes > full load and ok. > > I'll run both cores and a single core full load to see. > Sounds good so far. Could you please also try to copy something in the VM around? Would be interesting if that causes the crash. Thanks! --=20 Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-emulation@FreeBSD.ORG Thu Jul 23 15:34:15 2009 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 57FC21065670 for ; Thu, 23 Jul 2009 15:34:15 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail.itac.at (mail.itac.at [213.47.211.116]) by mx1.freebsd.org (Postfix) with ESMTP id C79E28FC15 for ; Thu, 23 Jul 2009 15:34:14 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1MU0J1-0004ZC-QQ; Thu, 23 Jul 2009 17:34:03 +0200 Received: from 83.64.253.201 (proxying for unknown) (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Thu, 23 Jul 2009 17:34:03 +0200 (CEST) Message-ID: <6287b3ed5dd4e989761abbf72faf44d4.squirrel@webmail.itac.at> In-Reply-To: <1248360068.29930.3.camel@localhost> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> <1248360068.29930.3.camel@localhost> Date: Thu, 23 Jul 2009 17:34:03 +0200 (CEST) From: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= To: vova@fbsd.ru User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 15:34:15 -0000 On Thu, July 23, 2009 4:41 pm, Vladimir Grebenschikov wrote: > Hi > > Bernhard, can you provide an idea how to dig non-working refresh for > me ? > > It works fine on virtualbox5 and virtualbox6 archives, but when I've > upgraded some time ago using port from tree it (screen refresh) does not > work for me any more. The stacktrace you posted at the beginning of the thread looks like a locking problem and i have already talked to Alexander Eichner about that but he hasn't seen that problem yet and first needs to figure out what is going wrong there. Sorry, but i guess i can't help you much more than that. -- Bernhard Fröhlich http://www.bluelife.at/ > -------- ИÑходное Ñообщение -------- > От: Bernhard Fröhlich > Кому: Nenhum_de_Nos > КопиÑ: freebsd-emulation@freebsd.org > Тема: Re: VirtualBox - no screen refresh > Дата: Thu, 23 Jul 2009 08:14:30 +0200 (CEST) > > On Thu, July 23, 2009 2:02 am, Nenhum_de_Nos wrote: >> >> On Wed, July 22, 2009 20:15, Nenhum_de_Nos wrote: >>> >>> On Tue, July 21, 2009 05:58, Bernhard Fröhlich wrote: >>>> On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: >>>>> >>>>> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >>>>>> Hi >>>>>> >>>>>>> I got Revision 427 compiled on amd64 unfortunately it crashes at >>>>>>> the >>>>>>> time of >>>>>>> launching any VM. I have provided some details to Beat and pointed >>>>>>> at >>>>>>> this >>>>>>> thread as the issue looked similar to Vladimir's one when reading >>>>>>> the >>>>>>> core.txt file produced after the system crash. >>>>>> >>>>>> It does not crash any more with very recent kernel. >>>>>> So, probably you may do another try. >>>>> >>>>> I have here: >>>>> $ uname -a >>>>> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT >>>>> 2009 >>>>> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >>>>> >>>>> and got to boot debian 5 amd64 cd and right now I'm quite at the end >>>>> of >>>>> the install. this is just possible using just one cpu. when tried >>>>> using >>>>> two cpu's, somewhere before disk selection it dies. >>>> >>>> Did the install finish successfully or did the vm crash? Because with >>>> 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM after >>>> a >>>> few minutes with I/O activity. I couldn't fully install Arch Linux nor >>>> Windows7 yet. >>> >>> I got it running here. tested the last svn rev today. i got so much >>> happy >>> I installed debian and got both cpu to full load. a while after I >>> looked >>> and my box was frozen :( >>> >>> so now on small steps. I have now two cpu and VT-x enabled. it looks >>> good >>> so far. but I know when I fire folding at home, using both cpu is no >>> good >>> anymore. >>> I'll let it this way for a while to see if it freezes, and then will >>> try >>> one cpu and full load. >>> >>> this is work, so I'll try to reproduce this at home, using 8-beta and >>> post >>> here. >>> >>> thanks, >> >> slight change of plans. I did run the single core test first. 40 minutes >> full load and ok. >> >> I'll run both cores and a single core full load to see. >> > > Sounds good so far. Could you please also try to copy something in the VM > around? Would be interesting if that causes the crash. > > > Thanks! > > -- > Vladimir B. Grebenschikov > vova@fbsd.ru From owner-freebsd-emulation@FreeBSD.ORG Thu Jul 23 16:37:50 2009 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 9F9371065670 for ; Thu, 23 Jul 2009 16:37:50 +0000 (UTC) (envelope-from vova@sw.ru) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id D15278FC15 for ; Thu, 23 Jul 2009 16:37:46 +0000 (UTC) (envelope-from vova@sw.ru) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id n6NGaMhl023470 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 23 Jul 2009 20:36:23 +0400 (MSD) Received: from vova by vbook.fbsd.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MU1HK-0005JY-2b; Thu, 23 Jul 2009 20:36:22 +0400 From: Vladimir Grebenschikov To: Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= In-Reply-To: <6287b3ed5dd4e989761abbf72faf44d4.squirrel@webmail.itac.at> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> <1248360068.29930.3.camel@localhost> <6287b3ed5dd4e989761abbf72faf44d4.squirrel@webmail.itac.at> Content-Type: multipart/mixed; boundary="=-fJUQ0PSfSFuimxWwmbqZ" Date: Thu, 23 Jul 2009 20:36:21 +0400 Message-Id: <1248366981.20166.14.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru 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 Jul 2009 16:37:50 -0000 --=-fJUQ0PSfSFuimxWwmbqZ Content-Type: text/plain Content-Transfer-Encoding: 7bit > Bernhard, can you provide an idea how to dig non-working refresh for > me ? > > It works fine on virtualbox5 and virtualbox6 archives, but when I've > upgraded some time ago using port from tree it (screen refresh) does not > work for me any more. The stacktrace you posted at the beginning of the thread looks like a locking problem and i have already talked to Alexander Eichner about that but he hasn't seen that problem yet and first needs to figure out what is going wrong there. Sorry, but i guess i can't help you much more than that. Stacktrace is no relevant any more, virtualbox does not crash for me. Everything works, but console window is black on boot and during VM work. I have only two exceptions - * after XP load's some icons shown (see vm-desktop.png shot) * at any time if I try to close machine window close dialog pop-ups and main window with right picture grayed (vm-close-dialog.png shot). I can repeat that to get actual picture. I am pretty sure that problem is not with in-VM software, because BIOS information is not displayed also. -- Vladimir B. Grebenschikov vova@fbsd.ru --=-fJUQ0PSfSFuimxWwmbqZ-- From owner-freebsd-emulation@FreeBSD.ORG Thu Jul 23 20:33:42 2009 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 C471C1065672 for ; Thu, 23 Jul 2009 20:33:42 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail.itac.at (mail.itac.at [213.47.211.116]) by mx1.freebsd.org (Postfix) with ESMTP id 3D8A38FC0C for ; Thu, 23 Jul 2009 20:33:41 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1MU4yv-0006lB-0x; Thu, 23 Jul 2009 22:33:37 +0200 Received: from 78.142.74.81 (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Thu, 23 Jul 2009 22:33:37 +0200 (CEST) Message-ID: <24ceef1e1d28183b90ec9331670cf8f2.squirrel@webmail.itac.at> In-Reply-To: <1248366981.20166.14.camel@localhost> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> <1248360068.29930.3.camel@localhost> <6287b3ed5dd4e989761abbf72faf44d4.squirrel@webmail.itac.at> <1248366981.20166.14.camel@localhost> Date: Thu, 23 Jul 2009 22:33:37 +0200 (CEST) From: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= To: vova@fbsd.ru User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 20:33:43 -0000 On Thu, July 23, 2009 6:36 pm, Vladimir Grebenschikov wrote: >> Bernhard, can you provide an idea how to dig non-working refresh for >> me ? >> >> It works fine on virtualbox5 and virtualbox6 archives, but when I've >> upgraded some time ago using port from tree it (screen refresh) does not >> work for me any more. > > The stacktrace you posted at the beginning of the thread looks like a > locking problem and i have already talked to Alexander Eichner about that > but he hasn't seen that problem yet and first needs to figure out what is > going wrong there. > > Sorry, but i guess i can't help you much more than that. > > Stacktrace is no relevant any more, virtualbox does not crash for me. > Everything works, but console window is black on boot and during VM work. > > I have only two exceptions - > * after XP load's some icons shown (see vm-desktop.png shot) > * at any time if I try to close machine window close dialog > pop-ups and main window with right picture grayed > (vm-close-dialog.png shot). I can repeat that to get actual > picture. > > I am pretty sure that problem is not with in-VM software, because BIOS > information is not displayed also. Could you try to set the environment variable XLIB_SKIP_ARGB_VISUALS=1 before you start VirtualBox? The screenshots look like that could be the issue. -- Bernhard Fröhlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 06:01:55 2009 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 58103106564A for ; Fri, 24 Jul 2009 06:01:55 +0000 (UTC) (envelope-from vova@sw.ru) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id BDF6C8FC14 for ; Fri, 24 Jul 2009 06:01:54 +0000 (UTC) (envelope-from vova@sw.ru) Received: from vbook.fbsd.ru ([77.232.23.6]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id n6O60jer032149 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 24 Jul 2009 10:00:46 +0400 (MSD) Received: from vova by vbook.fbsd.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MUDpl-0001HH-4z; Fri, 24 Jul 2009 10:00:45 +0400 From: Vladimir Grebenschikov To: Bernhard =?ISO-8859-1?Q?Fr=F6hlich?= In-Reply-To: <24ceef1e1d28183b90ec9331670cf8f2.squirrel@webmail.itac.at> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> <1248360068.29930.3.camel@localhost> <6287b3ed5dd4e989761abbf72faf44d4.squirrel@webmail.itac.at> <1248366981.20166.14.camel@localhost> <24ceef1e1d28183b90ec9331670cf8f2.squirrel@webmail.itac.at> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Fri, 24 Jul 2009 10:00:44 +0400 Message-Id: <1248415244.2149.19.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru 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 Jul 2009 06:01:55 -0000 Hi > Could you try to set the environment variable XLIB_SKIP_ARGB_VISUALS=1 > before you start VirtualBox? The screenshots look like that could be > the > issue. Yes, it helps. Something wrong with my system ? -- Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 06:43:23 2009 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 5B7DA106566C for ; Fri, 24 Jul 2009 06:43:23 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from mail.itac.at (mail.itac.at [213.47.211.116]) by mx1.freebsd.org (Postfix) with ESMTP id 059E58FC0A for ; Fri, 24 Jul 2009 06:43:22 +0000 (UTC) (envelope-from decke@bluelife.at) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1MUEUv-0002PL-NZ; Fri, 24 Jul 2009 08:43:17 +0200 Received: from 83.64.253.201 (proxying for unknown) (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Fri, 24 Jul 2009 08:43:17 +0200 (CEST) Message-ID: <6142ff19a572dcca7099e8c4ac7bde45.squirrel@webmail.itac.at> In-Reply-To: <1248415244.2149.19.camel@localhost> References: <1247175832.1455.36.camel@zero.mshome.net> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> <1248360068.29930.3.camel@localhost> <6287b3ed5dd4e989761abbf72faf44d4.squirrel@webmail.itac.at> <1248366981.20166.14.camel@localhost> <24ceef1e1d28183b90ec9331670cf8f2.squirrel@webmail.itac.at> <1248415244.2149.19.camel@localhost> Date: Fri, 24 Jul 2009 08:43:17 +0200 (CEST) From: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= To: vova@fbsd.ru User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 06:43:23 -0000 On Fri, July 24, 2009 8:00 am, Vladimir Grebenschikov wrote: > Hi > >> Could you try to set the environment variable XLIB_SKIP_ARGB_VISUALS=1 >> before you start VirtualBox? The screenshots look like that could be >> the >> issue. > > Yes, it helps. Good to hear that! > Something wrong with my system ? > It's probably a bug in vbox and they know about it because it also happens on Linux and we've seen a few commits and mails in the last days for it. http://www.virtualbox.org/changeset/21760 When we update our port the next time with the upstream code then please test if it works for you without that workaround. -- Bernhard Fröhlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 08:37:28 2009 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 C9F6C106566B for ; Fri, 24 Jul 2009 08:37:28 +0000 (UTC) (envelope-from eingorn777@gmail.com) Received: from mail-bw0-f219.google.com (mail-bw0-f219.google.com [209.85.218.219]) by mx1.freebsd.org (Postfix) with ESMTP id 537698FC0C for ; Fri, 24 Jul 2009 08:37:28 +0000 (UTC) (envelope-from eingorn777@gmail.com) Received: by bwz19 with SMTP id 19so1270782bwz.43 for ; Fri, 24 Jul 2009 01:37:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=CHmT2k/bYjyRDpd6UjpF6hgeL4+AJZT+gl+Bftcnv1I=; b=pGunpQMcml7n8cXkoXCgHn/q3wjliiPMC4kUh36mxry5TyuEUIJe9Glzobt5ZzEabg RyvBLhjCoja1ihzIHnEqJ39wI+k9Yi/ExmMJ9Obs6Pv9xLIFXjvVvH0C0F2pyhKtMrig vHGFwd3T72fPiKBzm18x4RzP6IjDc+cnxo0QI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=GqXTGaP+pj59C8Jr1MVSIEnLhAdhE7LNCq6rJK20Ek4aXIneqUCO/yOuok1o9YlWje YZbnLXsNw77Dd6MxQW31/r9VmPftyuW+iXVtuAmVLItUfJcDyLmFyGNnj8Ckyq0jH3W5 0x487TNmLXsTSBLIGyAU+NAvakGG8GjgH5eDI= MIME-Version: 1.0 Received: by 10.223.105.9 with SMTP id r9mr1581939fao.66.1248424647134; Fri, 24 Jul 2009 01:37:27 -0700 (PDT) In-Reply-To: References: Date: Fri, 24 Jul 2009 08:37:27 +0000 Message-ID: <23ae50da0907240137w2e86d3f9wee7ae0ad711e2a8f@mail.gmail.com> From: Dmitry Lunts To: barbara Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: freebsd-emulation Subject: Re: Sound disappeared when updating linux_base-fc4->linux_base-fc6 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 Jul 2009 08:37:29 -0000 Thanks for response! It didn't help Regards, Dmitry 2009/7/11, barbara : > Can you try setting the hw.snd.compat_linux_mmap sysctl to 1? > > > --=20 =D0=A1 =D1=83=D0=B2=D0=B0=D0=B6=D0=B5=D0=BD=D0=B8=D0=B5=D0=BC, =D0=94=D0=BC= =D0=B8=D1=82=D1=80=D0=B8=D0=B9 Best regards, Dmitry email: eingorn777@gmail.com tel#: +7-917-214-6140 ICQ: 462-495-123 Skype: dialect777 From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 11:53:05 2009 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 B851C1065672 for ; Fri, 24 Jul 2009 11:53:05 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from mail-qy0-f191.google.com (mail-qy0-f191.google.com [209.85.221.191]) by mx1.freebsd.org (Postfix) with ESMTP id 573A38FC23 for ; Fri, 24 Jul 2009 11:53:05 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by qyk29 with SMTP id 29so1984668qyk.3 for ; Fri, 24 Jul 2009 04:53:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:cc :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; bh=9l6bJtlzwTUMhlqFvHyDYJ6tnAc6UqTNBOfzSsL8pYQ=; b=rotFnAqP71InaiGguQoJK6GQZGnUCxg+cI8ZkQA/7YMZ12TXFCmq4aWwhzOVugI3XC bJN/XtTtmY4RgYb+Jp09PCdLj6r/krbON5dvkqzgJ7Esguj9oy2U5yF/W3ODCvdf5f5P VNaH9OPs83hXx/PxyGUdHRKJeyhP3DcPqsfpU= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to:cc :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=tc45G4yUP3LDug2H8VFNsZuwD7dCzMihiumQdwAvEKWeWB8s52y/chvHczrKrmI4we yv+93yTcOo3f4iyRb7fw2uIYvPrmGIP2j9i14oVVuCYrHVQ8xuF4XZOovzBZTqC6EBfo VGH872O6JAlBFWPYuit9lCF9g0OOR71sPfl68= Received: by 10.224.60.69 with SMTP id o5mr3295821qah.28.1248436384653; Fri, 24 Jul 2009 04:53:04 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id 6sm4520791qwd.32.2009.07.24.04.53.02 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 24 Jul 2009 04:53:03 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id 1EB4EB80C2; Fri, 24 Jul 2009 08:52:58 -0300 (BRT) Received: from 189.92.194.138 (SquirrelMail authenticated user matheus) by cygnus.homeunix.com with HTTP; Fri, 24 Jul 2009 08:52:58 -0300 (BRT) Message-ID: <303711a7f2bf0541214dc7fe3af1c13d.squirrel@cygnus.homeunix.com> In-Reply-To: <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> Date: Fri, 24 Jul 2009 08:52:58 -0300 (BRT) From: "Nenhum_de_Nos" To: Bernhard =?iso-8859-1?Q?Fr=F6hlich?= User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 11:53:06 -0000 On Thu, July 23, 2009 03:14, Bernhard Fröhlich wrote: > On Thu, July 23, 2009 2:02 am, Nenhum_de_Nos wrote: >> >> On Wed, July 22, 2009 20:15, Nenhum_de_Nos wrote: >>> >>> On Tue, July 21, 2009 05:58, Bernhard Fröhlich wrote: >>>> On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: >>>>> >>>>> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >>>>>> Hi >>>>>> >>>>>>> I got Revision 427 compiled on amd64 unfortunately it crashes at >>>>>>> the >>>>>>> time of >>>>>>> launching any VM. I have provided some details to Beat and pointed >>>>>>> at >>>>>>> this >>>>>>> thread as the issue looked similar to Vladimir's one when reading >>>>>>> the >>>>>>> core.txt file produced after the system crash. >>>>>> >>>>>> It does not crash any more with very recent kernel. >>>>>> So, probably you may do another try. >>>>> >>>>> I have here: >>>>> $ uname -a >>>>> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT >>>>> 2009 >>>>> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >>>>> >>>>> and got to boot debian 5 amd64 cd and right now I'm quite at the end >>>>> of >>>>> the install. this is just possible using just one cpu. when tried >>>>> using >>>>> two cpu's, somewhere before disk selection it dies. >>>> >>>> Did the install finish successfully or did the vm crash? Because with >>>> 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM after >>>> a >>>> few minutes with I/O activity. I couldn't fully install Arch Linux nor >>>> Windows7 yet. >>> >>> I got it running here. tested the last svn rev today. i got so much >>> happy >>> I installed debian and got both cpu to full load. a while after I >>> looked >>> and my box was frozen :( >>> >>> so now on small steps. I have now two cpu and VT-x enabled. it looks >>> good >>> so far. but I know when I fire folding at home, using both cpu is no >>> good >>> anymore. >>> I'll let it this way for a while to see if it freezes, and then will >>> try >>> one cpu and full load. >>> >>> this is work, so I'll try to reproduce this at home, using 8-beta and >>> post >>> here. >>> >>> thanks, >> >> slight change of plans. I did run the single core test first. 40 minutes >> full load and ok. >> >> I'll run both cores and a single core full load to see. >> > > Sounds good so far. Could you please also try to copy something in the VM > around? Would be interesting if that causes the crash. > > > Thanks! hail, since that day, this box is running Folding at Home in its single core client (the one that freebsd has also) and is ok. I have a two core vm, running amd64 Debian and jut one cpu is full load. I tried to reproduce this at home, but no luck though. Same Core 2 Duo E6750, but this time 8-BETA2 and Zotac nVidia based motherboard. This will only work in 7.2 amd64 ? by moving things around, dd if=/dev/zero of=any_file suffice ? I got it writing about 380MB. My virtual disk is small, so I can go as high as 600MB. so here, just the folding smp client makes my pc crash. single_core+vm+vt+amd64 is fine. thanks, matheus -- We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 18:50:01 2009 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 B75A4106564A for ; Fri, 24 Jul 2009 18:50:01 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from mail-qy0-f191.google.com (mail-qy0-f191.google.com [209.85.221.191]) by mx1.freebsd.org (Postfix) with ESMTP id 255248FC0A for ; Fri, 24 Jul 2009 18:49:59 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by qyk29 with SMTP id 29so2370660qyk.3 for ; Fri, 24 Jul 2009 11:49:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:date:from:to :subject:message-id:in-reply-to:references:x-mailer:mime-version :content-type:content-transfer-encoding; bh=fa9cVBYavRDht0Yav1wn/kMV3zX5OtJ01TJ74D4amOA=; b=tUQhABtwPc18Dn7wpWSvP6xeei3uhZGXW/jVB4rHuWCViSaHES1pi/BTUyrcLDr7mS YAAGZ5BgBYA81Q19FnClgAoWLNy4z4B1iQ1Wr6PBhrNX3bdEO0e4IZ2UAw7Hs8FU2Pjz 8TbklPvlVzl3K6t+euFsln438za6Q12P9rt1o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:date:from:to:subject:message-id:in-reply-to:references :x-mailer:mime-version:content-type:content-transfer-encoding; b=iuld/1bXayNgIecTl1h+x5VLMnMptGDWbmZsPfOr0ziBRvrQm6OU4qnAxY6axCtwoL zD0CoCSBybiPQz6t3khv46EWkRBFczdnQQZC67YuCEd+06NNv6CEHahcskR9HOAbSzSj 4kTyXMSbIqFcF0+XJ1Scrd2Xb57PavdAMCvVk= Received: by 10.224.89.69 with SMTP id d5mr3676520qam.322.1248461397457; Fri, 24 Jul 2009 11:49:57 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id 6sm5261605qwd.22.2009.07.24.11.49.55 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 24 Jul 2009 11:49:56 -0700 (PDT) Sender: Nenhum_de_Nos Received: from arroway (arroway.apartnet [10.1.1.80]) by cygnus.homeunix.com (Postfix) with SMTP id 653B0B805F for ; Fri, 24 Jul 2009 15:49:51 -0300 (BRT) Date: Fri, 24 Jul 2009 15:50:23 -0300 From: Nenhum_de_Nos To: freebsd-emulation@freebsd.org Message-Id: <20090724155023.de4d5f7b.matheus@eternamente.info> In-Reply-To: <303711a7f2bf0541214dc7fe3af1c13d.squirrel@cygnus.homeunix.com> References: <1247175832.1455.36.camel@zero.mshome.net> <1247471193.1664.129.camel@localhost> <1247480074.1664.140.camel@localhost> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> <303711a7f2bf0541214dc7fe3af1c13d.squirrel@cygnus.homeunix.com> X-Mailer: Sylpheed 2.4.8 (GTK+ 2.12.9; x86_64-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 18:50:02 -0000 On Fri, 24 Jul 2009 08:52:58 -0300 (BRT) "Nenhum_de_Nos" wrote: >=20 > On Thu, July 23, 2009 03:14, Bernhard Fr=F6hlich wrote: > > On Thu, July 23, 2009 2:02 am, Nenhum_de_Nos wrote: > >> > >> On Wed, July 22, 2009 20:15, Nenhum_de_Nos wrote: > >>> > >>> On Tue, July 21, 2009 05:58, Bernhard Fr=F6hlich wrote: > >>>> On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: > >>>>> > >>>>> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: > >>>>>> Hi > >>>>>> > >>>>>>> I got Revision 427 compiled on amd64 unfortunately it crashes at > >>>>>>> the > >>>>>>> time of > >>>>>>> launching any VM. I have provided some details to Beat and pointed > >>>>>>> at > >>>>>>> this > >>>>>>> thread as the issue looked similar to Vladimir's one when reading > >>>>>>> the > >>>>>>> core.txt file produced after the system crash. > >>>>>> > >>>>>> It does not crash any more with very recent kernel. > >>>>>> So, probably you may do another try. > >>>>> > >>>>> I have here: > >>>>> $ uname -a > >>>>> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 B= RT > >>>>> 2009 > >>>>> root@xxx:/usr/obj/usr/src/sys/xxx amd64 > >>>>> > >>>>> and got to boot debian 5 amd64 cd and right now I'm quite at the end > >>>>> of > >>>>> the install. this is just possible using just one cpu. when tried > >>>>> using > >>>>> two cpu's, somewhere before disk selection it dies. > >>>> > >>>> Did the install finish successfully or did the vm crash? Because with > >>>> 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM after > >>>> a > >>>> few minutes with I/O activity. I couldn't fully install Arch Linux n= or > >>>> Windows7 yet. > >>> > >>> I got it running here. tested the last svn rev today. i got so much > >>> happy > >>> I installed debian and got both cpu to full load. a while after I > >>> looked > >>> and my box was frozen :( > >>> > >>> so now on small steps. I have now two cpu and VT-x enabled. it looks > >>> good > >>> so far. but I know when I fire folding at home, using both cpu is no > >>> good > >>> anymore. > >>> I'll let it this way for a while to see if it freezes, and then will > >>> try > >>> one cpu and full load. > >>> > >>> this is work, so I'll try to reproduce this at home, using 8-beta and > >>> post > >>> here. > >>> > >>> thanks, > >> > >> slight change of plans. I did run the single core test first. 40 minut= es > >> full load and ok. > >> > >> I'll run both cores and a single core full load to see. > >> > > > > Sounds good so far. Could you please also try to copy something in the = VM > > around? Would be interesting if that causes the crash. > > > > > > Thanks! >=20 > hail, >=20 > since that day, this box is running Folding at Home in its single core > client (the one that freebsd has also) and is ok. I have a two core vm, > running amd64 Debian and jut one cpu is full load. >=20 > I tried to reproduce this at home, but no luck though. Same Core 2 Duo > E6750, but this time 8-BETA2 and Zotac nVidia based motherboard. This will > only work in 7.2 amd64 ? >=20 > by moving things around, dd if=3D/dev/zero of=3Dany_file suffice ? I got = it > writing about 380MB. My virtual disk is small, so I can go as high as > 600MB. >=20 > so here, just the folding smp client makes my pc crash. > single_core+vm+vt+amd64 is fine. >=20 > thanks, >=20 > matheus a bit more on info. running two single cores fah also makes no freeze. just appears wierd in top: 1983 matheus 15 44 0 632M 544M ucond 0 0:00 135.25% Virtua= lBox but thats ok :) performance is good, not sure when two running, but one was s fast as real = machine. next step for me is see performance in smp mode and make it not freeze pc :) thanks, matheus --=20 We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 18:51:55 2009 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 6E052106566C for ; Fri, 24 Jul 2009 18:51:55 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: from mail-ew0-f217.google.com (mail-ew0-f217.google.com [209.85.219.217]) by mx1.freebsd.org (Postfix) with ESMTP id C25688FC1F for ; Fri, 24 Jul 2009 18:51:54 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: by ewy17 with SMTP id 17so172875ewy.43 for ; Fri, 24 Jul 2009 11:51:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=l0PnrWyN1BtFcDti9LPC/84zj/z929/jH/PSoVgmJqk=; b=VIWdgOHyJ1gs//VsynfzOxuK0RmCfvoDOUd2M4tRd5u1kogyGNHbjmJyNWN0Z3kLNI AnJi8d8EXtDhzgOjgWMOOe9NkAcZyk8uHwuKm2uUXsgNKg5QGfuMXiFTHuiRtPbCETrk G4SP9jhpIYVsHhfBUZGKyRbqdOs8N2BDpQIeM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=xgz4GgvIQIAR/xqOaekQL5ITVUBUM9XSa5PwyBfVUCM8K9jwPS3cpIQic4HCeBZ5Yp e4n8JTcWM2DaMINd3vYXmowlwDFmoudOb0P+xcnHk1UgJxY+SKWi5padhH242YNX6SPG maKutTL89vIdrTotjVBaNSDdedIgr7/1p9MbA= MIME-Version: 1.0 Received: by 10.216.88.75 with SMTP id z53mr62213wee.46.1248461513795; Fri, 24 Jul 2009 11:51:53 -0700 (PDT) In-Reply-To: References: <1247175832.1455.36.camel@zero.mshome.net> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> Date: Fri, 24 Jul 2009 19:51:53 +0100 Message-ID: From: Boris To: freebsd-emulation Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 18:51:55 -0000 I built the world and recompiled with revision 430 and I can start 32-bit VM without VT-x selected. I do not have a system crash anymore. I still cannot start 32-bit nor 64-bit VM while VT-x is checked. I got an error message. I have read it's not supported and the opposite throughout different threads. Can anybody confirm what is really supported at the moment? - 32-bit VM without VT-x ? OK for me - 32-bit VM with VT-x? - 64-bit VM with VT-x ? Thanks, Boris On Mon, Jul 20, 2009 at 10:54 PM, Boris wrote: > No luck for me. I have recompiled my kernel with the latest from CVS (I > noticed the pmap.c version 1.665 previous I used was 1.664). > I recompiled virtualbox rev427 as well. > > VirtualBox starts but whenever I launch a VM the system crashes just after > hitting the start button, with and without VT-x enabled. > > Worse thing is the memory dump does not complete so I have got no trace to > analyse. > > Vladimir, > > Could you confirm a few things for me please? > > - did you upgrade from 7.2 to 8-CURRENT? or did you do a fresh install from > snapshot? > > - I am using a customer kernel, I noticed you do it as well. Could you post > a diff -ruN GENERIC VBOOK for me please? > > Thanks, > > Boris > > > On Mon, Jul 20, 2009 at 9:33 PM, Nenhum_de_Nos wrote: > >> >> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >> > Hi >> > >> >> I got Revision 427 compiled on amd64 unfortunately it crashes at the >> >> time of >> >> launching any VM. I have provided some details to Beat and pointed at >> >> this >> >> thread as the issue looked similar to Vladimir's one when reading the >> >> core.txt file produced after the system crash. >> > >> > It does not crash any more with very recent kernel. >> > So, probably you may do another try. >> >> I have here: >> $ uname -a >> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT 2009 >> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >> >> and got to boot debian 5 amd64 cd and right now I'm quite at the end of >> the install. this is just possible using just one cpu. when tried using >> two cpu's, somewhere before disk selection it dies. >> >> my goal is to run a linux amd64 with as much cores I can (goal is all 4) >> running folding at home (cpu intense app). >> >> I read about 3.0 lets us use VT-x and run multicore ok, anyone tested this >> ? >> >> thanks and great work on vbox and freebsd !! the port compiles fine in >> here. I just recompiled vbox. would be a good idea to recompile all ? >> >> matheus >> >> > Only issue I have - no screen refresh, and it kills whole thing for me. >> > >> >> Let's see what comes back from Beat and the folks porting the port to >> >> FreeBSD. >> >> >> >> Boris >> > >> > -- >> > Vladimir B. Grebenschikov >> > vova@fbsd.ru >> > >> >> >> -- >> We will call you cygnus, >> The God of balance you shall be >> >> A: Because it messes up the order in which people normally read text. >> Q: Why is top-posting such a bad thing? >> >> http://en.wikipedia.org/wiki/Posting_style >> _______________________________________________ >> freebsd-emulation@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-emulation >> To unsubscribe, send any mail to " >> freebsd-emulation-unsubscribe@freebsd.org" >> > > From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 18:53:57 2009 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 0D731106573A for ; Fri, 24 Jul 2009 18:53:57 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: from mail-ew0-f217.google.com (mail-ew0-f217.google.com [209.85.219.217]) by mx1.freebsd.org (Postfix) with ESMTP id 6639B8FC1C for ; Fri, 24 Jul 2009 18:53:56 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: by ewy17 with SMTP id 17so174085ewy.43 for ; Fri, 24 Jul 2009 11:53:55 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=OE8eXh1pKNO+7Y+bRjz5L2h3uR7oPpRQ2bWwlg7tL+g=; b=AYYeFHi44FIztk6WK7AiVWnBrtdfO+uENe8FU6rXSI4VZAE//vXD2NYN+P3sPrkFTx QiWftQIJk3ijafS6zcIwhWmsT73Q/oXbhr8u7vCT5ZUImNrPCjERP5Tv5OdS1YyNpHOu SB5UIPEihv3MKZ8AmxbJg3+4uGUeg+XmmrvsM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=qltlu3pcAs08HGR/k61Fz+NM6MCfreoQObUGXWRDnOKjRSKzEr9Mli3SpIv70rON32 1SqjKQOTCxg/BjeGljd+T7oKKx2A56Ala+8l7qsVytOL1W/kQCkLh44DLX5GMOgraLpE 5ywYS2vzcoT8CmkcIYIrPb5K8fMajk0JSdQ+Y= MIME-Version: 1.0 Received: by 10.216.10.76 with SMTP id 54mr1048308weu.58.1248461635495; Fri, 24 Jul 2009 11:53:55 -0700 (PDT) In-Reply-To: <20090724155023.de4d5f7b.matheus@eternamente.info> References: <1247175832.1455.36.camel@zero.mshome.net> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <7c7b93e9fb1b7b656639da0fe80a4d09.squirrel@cygnus.homeunix.com> <8411b09a217baaea0f80f492684f88de.squirrel@cygnus.homeunix.com> <0d181f1802a7045b84651c655f4b2c4b.squirrel@webmail.itac.at> <303711a7f2bf0541214dc7fe3af1c13d.squirrel@cygnus.homeunix.com> <20090724155023.de4d5f7b.matheus@eternamente.info> Date: Fri, 24 Jul 2009 19:53:55 +0100 Message-ID: From: Boris To: Nenhum_de_Nos Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 18:53:57 -0000 Is it the > 100% which looks weird to you? if you have got a multicore system, you got x times 100% where x =3D number of core if I am not wrong..= . On Fri, Jul 24, 2009 at 7:50 PM, Nenhum_de_Nos wr= ote: > On Fri, 24 Jul 2009 08:52:58 -0300 (BRT) > "Nenhum_de_Nos" wrote: > > > > > On Thu, July 23, 2009 03:14, Bernhard Fr=F6hlich wrote: > > > On Thu, July 23, 2009 2:02 am, Nenhum_de_Nos wrote: > > >> > > >> On Wed, July 22, 2009 20:15, Nenhum_de_Nos wrote: > > >>> > > >>> On Tue, July 21, 2009 05:58, Bernhard Fr=F6hlich wrote: > > >>>> On Mon, July 20, 2009 10:33 pm, Nenhum_de_Nos wrote: > > >>>>> > > >>>>> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: > > >>>>>> Hi > > >>>>>> > > >>>>>>> I got Revision 427 compiled on amd64 unfortunately it crashes a= t > > >>>>>>> the > > >>>>>>> time of > > >>>>>>> launching any VM. I have provided some details to Beat and > pointed > > >>>>>>> at > > >>>>>>> this > > >>>>>>> thread as the issue looked similar to Vladimir's one when readi= ng > > >>>>>>> the > > >>>>>>> core.txt file produced after the system crash. > > >>>>>> > > >>>>>> It does not crash any more with very recent kernel. > > >>>>>> So, probably you may do another try. > > >>>>> > > >>>>> I have here: > > >>>>> $ uname -a > > >>>>> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 > BRT > > >>>>> 2009 > > >>>>> root@xxx:/usr/obj/usr/src/sys/xxx amd64 > > >>>>> > > >>>>> and got to boot debian 5 amd64 cd and right now I'm quite at the > end > > >>>>> of > > >>>>> the install. this is just possible using just one cpu. when tried > > >>>>> using > > >>>>> two cpu's, somewhere before disk selection it dies. > > >>>> > > >>>> Did the install finish successfully or did the vm crash? Because > with > > >>>> 7.2-RELEASE/amd64 i have spotted a problem which crashes the VM > after > > >>>> a > > >>>> few minutes with I/O activity. I couldn't fully install Arch Linux > nor > > >>>> Windows7 yet. > > >>> > > >>> I got it running here. tested the last svn rev today. i got so much > > >>> happy > > >>> I installed debian and got both cpu to full load. a while after I > > >>> looked > > >>> and my box was frozen :( > > >>> > > >>> so now on small steps. I have now two cpu and VT-x enabled. it look= s > > >>> good > > >>> so far. but I know when I fire folding at home, using both cpu is n= o > > >>> good > > >>> anymore. > > >>> I'll let it this way for a while to see if it freezes, and then wil= l > > >>> try > > >>> one cpu and full load. > > >>> > > >>> this is work, so I'll try to reproduce this at home, using 8-beta a= nd > > >>> post > > >>> here. > > >>> > > >>> thanks, > > >> > > >> slight change of plans. I did run the single core test first. 40 > minutes > > >> full load and ok. > > >> > > >> I'll run both cores and a single core full load to see. > > >> > > > > > > Sounds good so far. Could you please also try to copy something in th= e > VM > > > around? Would be interesting if that causes the crash. > > > > > > > > > Thanks! > > > > hail, > > > > since that day, this box is running Folding at Home in its single core > > client (the one that freebsd has also) and is ok. I have a two core vm, > > running amd64 Debian and jut one cpu is full load. > > > > I tried to reproduce this at home, but no luck though. Same Core 2 Duo > > E6750, but this time 8-BETA2 and Zotac nVidia based motherboard. This > will > > only work in 7.2 amd64 ? > > > > by moving things around, dd if=3D/dev/zero of=3Dany_file suffice ? I go= t it > > writing about 380MB. My virtual disk is small, so I can go as high as > > 600MB. > > > > so here, just the folding smp client makes my pc crash. > > single_core+vm+vt+amd64 is fine. > > > > thanks, > > > > matheus > > a bit more on info. running two single cores fah also makes no freeze. > just appears wierd in top: > 1983 matheus 15 44 0 632M 544M ucond 0 0:00 135.25% > VirtualBox > > but thats ok :) > > performance is good, not sure when two running, but one was s fast as rea= l > machine. > > next step for me is see performance in smp mode and make it not freeze pc > :) > > thanks, > > matheus > > -- > We will call you cygnus, > The God of balance you shall be > > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > > http://en.wikipedia.org/wiki/Posting_style > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to " > freebsd-emulation-unsubscribe@freebsd.org" > From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 19:24:30 2009 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 0DB7D1065673 for ; Fri, 24 Jul 2009 19:24:30 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: from mail-qy0-f191.google.com (mail-qy0-f191.google.com [209.85.221.191]) by mx1.freebsd.org (Postfix) with ESMTP id A47C58FC32 for ; Fri, 24 Jul 2009 19:24:29 +0000 (UTC) (envelope-from matheusber@gmail.com) Received: by qyk29 with SMTP id 29so2403721qyk.3 for ; Fri, 24 Jul 2009 12:24:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:sender:received:received :message-id:in-reply-to:references:date:subject:from:to:user-agent :mime-version:content-type:content-transfer-encoding:x-priority :importance; bh=w7QtmdW/PgW6iDvFNZhAmNC6yC7o0trsjnVcHKhNjsI=; b=q0lZywmKHXZRX2Fa1Pcu5iPnSEr64XdZtzxQk+U+mwRLfGCNm7atg3NsTUH7Q6Cn2E mV6vlTbs7wgDXWmQ1tCRYL+38CxPxBFcoNeeZpNoO4HvvOPH1clK7k3BSsHU8WdxA0DZ iJby3PpzWgzjnUrhGr8KH5kGQPfFPIxCwNCWo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:message-id:in-reply-to:references:date:subject:from:to :user-agent:mime-version:content-type:content-transfer-encoding :x-priority:importance; b=HtNCQh0WddXGCltj6xojtMYc2n/9AprvjvVerAXIAGcB2hTF15qtnPF/j5AzHMws4g k7ryr1sbJYPExW/Sizb9hj+3+GT3K5Gbbba856BMOYZZzJYTPXvhHU50rIaP5svYkJSB nLk5CsFYGWR1NuVL0JcYm06whoQ7u1srpnuzg= Received: by 10.224.37.135 with SMTP id x7mr3752404qad.249.1248463468010; Fri, 24 Jul 2009 12:24:28 -0700 (PDT) Received: from cygnus.homeunix.com ([189.71.108.65]) by mx.google.com with ESMTPS id 6sm5308343qwk.54.2009.07.24.12.24.26 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 24 Jul 2009 12:24:27 -0700 (PDT) Sender: Nenhum_de_Nos Received: by cygnus.homeunix.com (Postfix, from userid 80) id 5C3AEB80C2; Fri, 24 Jul 2009 16:24:22 -0300 (BRT) Received: from 10.1.1.80 (SquirrelMail authenticated user matheus) by 10.1.1.10 with HTTP; Fri, 24 Jul 2009 16:24:22 -0300 (BRT) Message-ID: In-Reply-To: References: <1247175832.1455.36.camel@zero.mshome.net> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> Date: Fri, 24 Jul 2009 16:24:22 -0300 (BRT) From: "Nenhum_de_Nos" To: freebsd-emulation@freebsd.org User-Agent: SquirrelMail/1.4.15 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 19:24:30 -0000 On Fri, July 24, 2009 15:51, Boris wrote: > I built the world and recompiled with revision 430 and I can start 32-bit > VM > without VT-x selected. I do not have a system crash anymore. > > I still cannot start 32-bit nor 64-bit VM while VT-x is checked. I got an > error message. I have read it's not supported and the opposite throughout > different threads. > > Can anybody confirm what is really supported at the moment? as I'm not a dev from this project, I can say what I tested and was ok :) > - 32-bit VM without VT-x ? OK for me OK > - 32-bit VM with VT-x? > - 64-bit VM with VT-x ? OK for some things using 7.2-STABLE and rev 428. what's the major diff from 428 and 430 ? thanks, matheus > Thanks, > > Boris > > On Mon, Jul 20, 2009 at 10:54 PM, Boris wrote: > >> No luck for me. I have recompiled my kernel with the latest from CVS (I >> noticed the pmap.c version 1.665 previous I used was 1.664). >> I recompiled virtualbox rev427 as well. >> >> VirtualBox starts but whenever I launch a VM the system crashes just >> after >> hitting the start button, with and without VT-x enabled. >> >> Worse thing is the memory dump does not complete so I have got no trace >> to >> analyse. >> >> Vladimir, >> >> Could you confirm a few things for me please? >> >> - did you upgrade from 7.2 to 8-CURRENT? or did you do a fresh install >> from >> snapshot? >> >> - I am using a customer kernel, I noticed you do it as well. Could you >> post >> a diff -ruN GENERIC VBOOK for me please? >> >> Thanks, >> >> Boris >> >> >> On Mon, Jul 20, 2009 at 9:33 PM, Nenhum_de_Nos >> wrote: >> >>> >>> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >>> > Hi >>> > >>> >> I got Revision 427 compiled on amd64 unfortunately it crashes at the >>> >> time of >>> >> launching any VM. I have provided some details to Beat and pointed >>> at >>> >> this >>> >> thread as the issue looked similar to Vladimir's one when reading >>> the >>> >> core.txt file produced after the system crash. >>> > >>> > It does not crash any more with very recent kernel. >>> > So, probably you may do another try. >>> >>> I have here: >>> $ uname -a >>> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT >>> 2009 >>> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >>> >>> and got to boot debian 5 amd64 cd and right now I'm quite at the end of >>> the install. this is just possible using just one cpu. when tried using >>> two cpu's, somewhere before disk selection it dies. >>> >>> my goal is to run a linux amd64 with as much cores I can (goal is all >>> 4) >>> running folding at home (cpu intense app). >>> >>> I read about 3.0 lets us use VT-x and run multicore ok, anyone tested >>> this >>> ? >>> >>> thanks and great work on vbox and freebsd !! the port compiles fine in >>> here. I just recompiled vbox. would be a good idea to recompile all ? >>> >>> matheus >>> >>> > Only issue I have - no screen refresh, and it kills whole thing for >>> me. >>> > >>> >> Let's see what comes back from Beat and the folks porting the port >>> to >>> >> FreeBSD. >>> >> >>> >> Boris >>> > >>> > -- >>> > Vladimir B. Grebenschikov >>> > vova@fbsd.ru >>> > >>> >>> >>> -- >>> We will call you cygnus, >>> The God of balance you shall be >>> >>> A: Because it messes up the order in which people normally read text. >>> Q: Why is top-posting such a bad thing? >>> >>> http://en.wikipedia.org/wiki/Posting_style >>> _______________________________________________ >>> freebsd-emulation@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-emulation >>> To unsubscribe, send any mail to " >>> freebsd-emulation-unsubscribe@freebsd.org" >>> >> >> > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to > "freebsd-emulation-unsubscribe@freebsd.org" > -- We will call you cygnus, The God of balance you shall be A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? http://en.wikipedia.org/wiki/Posting_style From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 19:34:58 2009 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 A40EB1065674 for ; Fri, 24 Jul 2009 19:34:58 +0000 (UTC) (envelope-from vova@sw.ru) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id 056C08FC23 for ; Fri, 24 Jul 2009 19:34:57 +0000 (UTC) (envelope-from vova@sw.ru) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id n6OJYsbI002398 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 24 Jul 2009 23:34:55 +0400 (MSD) Received: from vova by vbook.fbsd.ru with local (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MUQXd-0001O6-WA; Fri, 24 Jul 2009 23:34:53 +0400 From: Vladimir Grebenschikov To: Boris In-Reply-To: References: <1247175832.1455.36.camel@zero.mshome.net> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> Content-Type: text/plain; charset="KOI8-R" Content-Transfer-Encoding: quoted-printable Date: Fri, 24 Jul 2009 23:34:53 +0400 Message-Id: <1248464093.1678.94.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Cc: freebsd-emulation Subject: Re: VirtualBox - no screen refresh X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru 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 Jul 2009 19:34:59 -0000 Hi=20 > - 32-bit VM without VT-x ? OK for me > - 32-bit VM with VT-x? Looks work for me now. (rev 427) -------- =E9=D3=C8=CF=C4=CE=CF=C5 =D3=CF=CF=C2=DD=C5=CE=C9=C5 -------- =EF=D4: Boris =EB=CF=CD=D5: freebsd-emulation =F4=C5=CD=C1: Re: VirtualBox - no screen refresh =E4=C1=D4=C1: Fri, 24 Jul 2009 19:51:53 +0100 I built the world and recompiled with revision 430 and I can start 32-bit V= M without VT-x selected. I do not have a system crash anymore. I still cannot start 32-bit nor 64-bit VM while VT-x is checked. I got an error message. I have read it's not supported and the opposite throughout different threads. Can anybody confirm what is really supported at the moment? - 32-bit VM without VT-x ? OK for me - 32-bit VM with VT-x? - 64-bit VM with VT-x ? Thanks, Boris On Mon, Jul 20, 2009 at 10:54 PM, Boris wrote: > No luck for me. I have recompiled my kernel with the latest from CVS (I > noticed the pmap.c version 1.665 previous I used was 1.664). > I recompiled virtualbox rev427 as well. > > VirtualBox starts but whenever I launch a VM the system crashes just afte= r > hitting the start button, with and without VT-x enabled. > > Worse thing is the memory dump does not complete so I have got no trace t= o > analyse. > > Vladimir, > > Could you confirm a few things for me please? > > - did you upgrade from 7.2 to 8-CURRENT? or did you do a fresh install fr= om > snapshot? > > - I am using a customer kernel, I noticed you do it as well. Could you po= st > a diff -ruN GENERIC VBOOK for me please? > > Thanks, > > Boris > > > On Mon, Jul 20, 2009 at 9:33 PM, Nenhum_de_Nos = wrote: > >> >> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: >> > Hi >> > >> >> I got Revision 427 compiled on amd64 unfortunately it crashes at the >> >> time of >> >> launching any VM. I have provided some details to Beat and pointed at >> >> this >> >> thread as the issue looked similar to Vladimir's one when reading the >> >> core.txt file produced after the system crash. >> > >> > It does not crash any more with very recent kernel. >> > So, probably you may do another try. >> >> I have here: >> $ uname -a >> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT 20= 09 >> root@xxx:/usr/obj/usr/src/sys/xxx amd64 >> >> and got to boot debian 5 amd64 cd and right now I'm quite at the end of >> the install. this is just possible using just one cpu. when tried using >> two cpu's, somewhere before disk selection it dies. >> >> my goal is to run a linux amd64 with as much cores I can (goal is all 4) >> running folding at home (cpu intense app). >> >> I read about 3.0 lets us use VT-x and run multicore ok, anyone tested th= is >> ? >> >> thanks and great work on vbox and freebsd !! the port compiles fine in >> here. I just recompiled vbox. would be a good idea to recompile all ? >> >> matheus >> >> > Only issue I have - no screen refresh, and it kills whole thing for me= . >> > >> >> Let's see what comes back from Beat and the folks porting the port to >> >> FreeBSD. >> >> >> >> Boris >> > >> > -- >> > Vladimir B. Grebenschikov >> > vova@fbsd.ru >> > >> >> >> -- >> We will call you cygnus, >> The God of balance you shall be >> >> A: Because it messes up the order in which people normally read text. >> Q: Why is top-posting such a bad thing? >> >> http://en.wikipedia.org/wiki/Posting_style >> _______________________________________________ >> freebsd-emulation@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-emulation >> To unsubscribe, send any mail to " >> freebsd-emulation-unsubscribe@freebsd.org" >> > > _______________________________________________ freebsd-emulation@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-emulation To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.org= " --=20 Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 19:40:50 2009 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 A6550106564A for ; Fri, 24 Jul 2009 19:40:50 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.24]) by mx1.freebsd.org (Postfix) with ESMTP id C3E448FC13 for ; Fri, 24 Jul 2009 19:40:49 +0000 (UTC) (envelope-from borisbsd@googlemail.com) Received: by ey-out-2122.google.com with SMTP id 9so440488eyd.7 for ; Fri, 24 Jul 2009 12:40:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=mVpDHlm1wJb91WhVAxRDjYnTSsrj/68rDVpcuT1nyMw=; b=BsHWemv8HrPY+3ZoEB/smboUiRhopuQil8MMTPcmIFzrNz8ISTMByw4kc824hmT5hc ubd5+1R5LpqwI/mZR2xtnxA7Kxyioaf73RQdUk/uVOLQmiJt7KcrETaJQjfTw62sUWvt iaonvlSNbeqMpdhDHIW9C17/231TvghR5BRtM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=rBSkNEACRLBKnVXfXqtdYJJ3bhIKshOIujecLBTr3cs8k/e7hXn+hoFQ2Dpxqddvxo JXFe2nKkFvGUBcb0pA5Y9XOLVkyYHFgatm6jIRkf0y64YxkuACNP74GuIqlVadnKdzG+ ocox+qIiWM0bA/SRsLEB74nTCWNkZEEx+jUoA= MIME-Version: 1.0 Received: by 10.216.45.207 with SMTP id p57mr1083111web.94.1248464448671; Fri, 24 Jul 2009 12:40:48 -0700 (PDT) In-Reply-To: <1248464093.1678.94.camel@localhost> References: <1247175832.1455.36.camel@zero.mshome.net> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> <1248464093.1678.94.camel@localhost> Date: Fri, 24 Jul 2009 20:40:48 +0100 Message-ID: From: Boris To: freebsd-emulation Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 19:40:50 -0000 Thanks all for your confirmation. I will do a few more attempts to see if I can get anything working with VT-x. 2009/7/24 Vladimir Grebenschikov > Hi > > > - 32-bit VM without VT-x ? OK for me > > - 32-bit VM with VT-x? > > Looks work for me now. (rev 427) > > -------- =E9=D3=C8=CF=C4=CE=CF=C5 =D3=CF=CF=C2=DD=C5=CE=C9=C5 -------- > =EF=D4: Boris > =EB=CF=CD=D5: freebsd-emulation > =F4=C5=CD=C1: Re: VirtualBox - no screen refresh > =E4=C1=D4=C1: Fri, 24 Jul 2009 19:51:53 +0100 > > I built the world and recompiled with revision 430 and I can start 32-bit > VM > without VT-x selected. I do not have a system crash anymore. > > I still cannot start 32-bit nor 64-bit VM while VT-x is checked. I got an > error message. I have read it's not supported and the opposite throughout > different threads. > > Can anybody confirm what is really supported at the moment? > > - 32-bit VM without VT-x ? OK for me > - 32-bit VM with VT-x? > - 64-bit VM with VT-x ? > > Thanks, > > Boris > > On Mon, Jul 20, 2009 at 10:54 PM, Boris wrote: > > > No luck for me. I have recompiled my kernel with the latest from CVS (I > > noticed the pmap.c version 1.665 previous I used was 1.664). > > I recompiled virtualbox rev427 as well. > > > > VirtualBox starts but whenever I launch a VM the system crashes just > after > > hitting the start button, with and without VT-x enabled. > > > > Worse thing is the memory dump does not complete so I have got no trace > to > > analyse. > > > > Vladimir, > > > > Could you confirm a few things for me please? > > > > - did you upgrade from 7.2 to 8-CURRENT? or did you do a fresh install > from > > snapshot? > > > > - I am using a customer kernel, I noticed you do it as well. Could you > post > > a diff -ruN GENERIC VBOOK for me please? > > > > Thanks, > > > > Boris > > > > > > On Mon, Jul 20, 2009 at 9:33 PM, Nenhum_de_Nos >wrote: > > > >> > >> On Mon, July 20, 2009 14:47, Vladimir Grebenschikov wrote: > >> > Hi > >> > > >> >> I got Revision 427 compiled on amd64 unfortunately it crashes at th= e > >> >> time of > >> >> launching any VM. I have provided some details to Beat and pointed = at > >> >> this > >> >> thread as the issue looked similar to Vladimir's one when reading t= he > >> >> core.txt file produced after the system crash. > >> > > >> > It does not crash any more with very recent kernel. > >> > So, probably you may do another try. > >> > >> I have here: > >> $ uname -a > >> FreeBSD xxx 7.2-STABLE FreeBSD 7.2-STABLE #1: Wed Jun 17 15:30:47 BRT > 2009 > >> root@xxx:/usr/obj/usr/src/sys/xxx amd64 > >> > >> and got to boot debian 5 amd64 cd and right now I'm quite at the end o= f > >> the install. this is just possible using just one cpu. when tried usin= g > >> two cpu's, somewhere before disk selection it dies. > >> > >> my goal is to run a linux amd64 with as much cores I can (goal is all = 4) > >> running folding at home (cpu intense app). > >> > >> I read about 3.0 lets us use VT-x and run multicore ok, anyone tested > this > >> ? > >> > >> thanks and great work on vbox and freebsd !! the port compiles fine in > >> here. I just recompiled vbox. would be a good idea to recompile all ? > >> > >> matheus > >> > >> > Only issue I have - no screen refresh, and it kills whole thing for > me. > >> > > >> >> Let's see what comes back from Beat and the folks porting the port = to > >> >> FreeBSD. > >> >> > >> >> Boris > >> > > >> > -- > >> > Vladimir B. Grebenschikov > >> > vova@fbsd.ru > >> > > >> > >> > >> -- > >> We will call you cygnus, > >> The God of balance you shall be > >> > >> A: Because it messes up the order in which people normally read text. > >> Q: Why is top-posting such a bad thing? > >> > >> http://en.wikipedia.org/wiki/Posting_style > >> _______________________________________________ > >> freebsd-emulation@freebsd.org mailing list > >> http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > >> To unsubscribe, send any mail to " > >> freebsd-emulation-unsubscribe@freebsd.org" > >> > > > > > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to " > freebsd-emulation-unsubscribe@freebsd.org" > -- > Vladimir B. Grebenschikov > vova@fbsd.ru > From owner-freebsd-emulation@FreeBSD.ORG Fri Jul 24 19:42:20 2009 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 F28481065674 for ; Fri, 24 Jul 2009 19:42:20 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from marvin.chruetertee.ch (marvin.chruetertee.ch [217.150.245.55]) by mx1.freebsd.org (Postfix) with ESMTP id 7F6358FC18 for ; Fri, 24 Jul 2009 19:42:20 +0000 (UTC) (envelope-from beat@FreeBSD.org) Received: from daedalus.network.local (133-162.79-83.cust.bluewin.ch [83.79.162.133]) (authenticated bits=0) by marvin.chruetertee.ch (8.14.3/8.14.3) with ESMTP id n6OJg8hs079493 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Fri, 24 Jul 2009 19:42:09 GMT (envelope-from beat@FreeBSD.org) Message-ID: <4A6A0EDA.6010007@FreeBSD.org> Date: Fri, 24 Jul 2009 21:43:22 +0200 From: Beat Gaetzi User-Agent: Thunderbird 2.0.0.22 (X11/20090713) MIME-Version: 1.0 To: Nenhum_de_Nos References: <1247175832.1455.36.camel@zero.mshome.net> <1247602161.2105.14.camel@localhost> <301c9e6c36d74e0c66ee5731638691d1.squirrel@webmail.itac.at> <1247658678.5135.6.camel@localhost> <1248092972.1756.7.camel@localhost> <90e3c9587dbba03b2b7d253fa26adca1.squirrel@cygnus.homeunix.com> <1248112074.1756.39.camel@localhost> <0eef4f4e9462e4fc86429b96ee215a37.squirrel@cygnus.homeunix.com> In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@FreeBSD.org Subject: Re: VirtualBox - no screen refresh 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 Jul 2009 19:42:21 -0000 Nenhum_de_Nos wrote: > On Fri, July 24, 2009 15:51, Boris wrote: >> I built the world and recompiled with revision 430 and I can start 32-bit >> VM >> without VT-x selected. I do not have a system crash anymore. >> >> I still cannot start 32-bit nor 64-bit VM while VT-x is checked. I got an >> error message. I have read it's not supported and the opposite throughout >> different threads. >> >> Can anybody confirm what is really supported at the moment? > > as I'm not a dev from this project, I can say what I tested and was ok :) > >> - 32-bit VM without VT-x ? OK for me > OK >> - 32-bit VM with VT-x? >> - 64-bit VM with VT-x ? VT-x does not work yet. Not working features are documented on the wiki page: http://wiki.freebsd.org/VirtualBox > OK for some things using 7.2-STABLE and rev 428. > > what's the major diff from 428 and 430 ? Nothing, rev 429 and 430 belongs to other ports in this repository. Beat From owner-freebsd-emulation@FreeBSD.ORG Sat Jul 25 22:00:45 2009 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 1EC1D106566B for ; Sat, 25 Jul 2009 22:00:45 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id CC9A38FC15 for ; Sat, 25 Jul 2009 22:00:44 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from [85.175.178.246] (helo=moosi) by services.ipt.ru with esmtpa (Exim 4.54 (FreeBSD)) id 1MUpIJ-000A7Y-6N; Sun, 26 Jul 2009 02:00:43 +0400 To: Alexander Kabaev References: <20090725013500.GC62402@onelab2.iet.unipi.it> <20090725073805.GA11455@abigail.blackend.org> <20090725115525.GA85767@onelab2.iet.unipi.it> <20090725123749.GA26505@abigail.blackend.org> <46928623@ipt.ru> <20090725105020.66e281ee@kan.dnsalias.net> From: Boris Samorodov Date: Sun, 26 Jul 2009 02:01:57 +0400 In-Reply-To: <20090725105020.66e281ee@kan.dnsalias.net> (Alexander Kabaev's message of "Sat\, 25 Jul 2009 10\:50\:20 -0400") Message-ID: <32688442@ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@freebsd.org Subject: Re: status of flash9/flash10 support in RELENG_7 ? 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: Sat, 25 Jul 2009 22:00:45 -0000 Rerouting from stable@ to emulation@ as it may be a serious matter. Alexander Kabaev writes: > On Sat, 25 Jul 2009 17:36:00 +0400 > Boris Samorodov wrote: >> >> As for the original question. I don't use flash so can't be very >> helpful here. But there are reports at emulation@ ML that both >> linux-f8-flashplugin10 and linux-f10-flashplugin10 work better >> then flashplugin[7|9]. > > It does not work very well under Linux32 compat on -current - our futex > implementation seems to be too broken and causes frequent deadlock and > causes multiple threads to get stuck on process exit. One can easily > collect dozens of those stuck processes doing causal web browsing. Can anybody comment on this? Thanks! -- WBR, bsam