From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 05:45:06 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 85278106566B for ; Sun, 13 Sep 2009 05:45:06 +0000 (UTC) (envelope-from dnaeon@gmail.com) Received: from mail-ew0-f208.google.com (mail-ew0-f208.google.com [209.85.219.208]) by mx1.freebsd.org (Postfix) with ESMTP id 114368FC0C for ; Sun, 13 Sep 2009 05:45:05 +0000 (UTC) Received: by ewy4 with SMTP id 4so2246923ewy.36 for ; Sat, 12 Sep 2009 22:45:05 -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:content-type; bh=+u8l1bR23rryxc0ZCWElLyoo/7b+kbwILU8ykd8Bt2k=; b=lID/UMVTIHCGTKpEUrFjnbjZvCle/Y9OQbwkc58seOlGEXXrVdMY/nCG48Qh3Sq2cD KzBSY/dgnsux3fg5Ht6cBSlyFEAl5kMwz3uzecoBiNQA1Jt2JOz+uG2EKjgZ7tfMm/n6 2KHeOASt2PmtLVg4Ws2SQNQaY9vDZUage9wZo= 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 :content-type; b=m7sFTlz448V/iCMi4MM0sDrGebzH5ofLYErbOnlBGohqbBbyE2Bin4TaUsdQ+82awb quaRWEqYE4IHXEOYwF41QBQpYCfqafkHj3yBQDO/PnuldjzKd8ZMRx8jWGqfhqiNrCPJ BAhKkIAqaexkHCUlWE8qST9CIL+f9+Tgu2rB8= MIME-Version: 1.0 Received: by 10.216.35.139 with SMTP id u11mr617458wea.176.1252820705004; Sat, 12 Sep 2009 22:45:05 -0700 (PDT) In-Reply-To: <4AA784D9.80405@shapeshifter.se> References: <4AA784D9.80405@shapeshifter.se> Date: Sun, 13 Sep 2009 08:45:04 +0300 Message-ID: <717f7a3e0909122245r75f7d205j19507593c209a4ab@mail.gmail.com> From: Marin Atanasov To: freebsd-emulation@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: VirtualBox network patches for FreeBSD (vboxnetflt + vboxnetadp) 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, 13 Sep 2009 05:45:06 -0000 Hi, Yesterday I did an upgrade of the Virtualbox port from 3.0.51.r22226 to 3.0.51.r22683. However I tried changing the network settings to Bridge mode and Host only networking, but that doesn't seem to work for me. Are Fredrik's patches included in the latest port of Virtualbox or I still need to apply them manually? Also one more question about the patches - are they supposed to create the bridge interfaces automatically or I need to create them manually first before using them? Regards, Marin On Wed, Sep 9, 2009 at 1:35 PM, Fredrik Lindberg wrote: > Hi > > These patches implement bridge and host only networking on FreeBSD, they > have been tested on FreeBSD 7 and 8 by a few different people. The only > known issue is that they might not work with wireless cards. At least > it didn't work on my iwi-backed wlan0 interface on FreeBSD 8. > > The patches are split into different files for easier overview > > > http://www.shapeshifter.se/pub/patches/virtualbox/vbox-freebsd-netif-20090908.patch > > http://www.shapeshifter.se/pub/patches/virtualbox/vbox-freebsd-vboxnetadp-20090908.patch > > http://www.shapeshifter.se/pub/patches/virtualbox/vbox-freebsd-vboxnetflt-20090908.patch > http://www.shapeshifter.se/pub/patches/virtualbox/Config.kmk-20090908.patch > > http://www.shapeshifter.se/pub/patches/virtualbox/src-VBox-HostDrivers-Makefile.kmk-20090908.patch > > Original code is under the MIT license, patches to Makefiles, etc are > under whatever license you want (I don't claim any copyright over > these). > > > People running FreeBSD and want to test this with the vbox version > 3.0.51.r22226 that currently is in the ports tree needs the following > additional patches. > > > http://www.shapeshifter.se/pub/patches/virtualbox/Config.kmk-r22226-20090908.patch > > http://www.shapeshifter.se/pub/patches/virtualbox/virtualbox-port-20090907.patch > http://www.shapeshifter.se/pub/patches/virtualbox/ConsoleImpl2.cpp.patch > > Apply/compile with > cd /usr/ports/emulators/virtualbox > make clean patch > mkdir work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd > mkdir work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetAdp/freebsd > patch < virtualbox-port-20090907.patch > patch -d work/virtualbox-3.0.51r22226/Config.kmk-r22226-20090908.patch > patch -d work/virtualbox-3.0.51r22226/ConsoleImpl2.cpp.patch > patch -d > work/virtualbox-3.0.51r22226/src-VBox-HostDrivers-Makefile.kmk-20090908.patch > patch -d work/virtualbox-3.0.51r22226/vbox-freebsd-netif-20090908.patch > patch -d > work/virtualbox-3.0.51r22226/vbox-freebsd-vboxnetadp-20090908.patch > patch -d > work/virtualbox-3.0.51r22226/vbox-freebsd-vboxnetflt-20090908.patch > make install > > > Fredrik > _______________________________________________ > 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" > -- Marin Atanasov dnaeon AT gmail DOT com daemon AT unix-heaven DOT org From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 07:56: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 D94F2106566B for ; Sun, 13 Sep 2009 07:56:01 +0000 (UTC) (envelope-from fli@shapeshifter.se) Received: from mx1.h3q.net (mx1.h3q.net [IPv6:2001:16d8:ffe5:1::f1]) by mx1.freebsd.org (Postfix) with ESMTP id 9D3088FC0C for ; Sun, 13 Sep 2009 07:56:01 +0000 (UTC) Received: from smtp-auth.h3q.net (smtp-auth.h3q.net [127.0.0.1]) (Authenticated sender: hidden) by mx1.h3q.net (Postfix) with ESMTPSA id 6578D33DE4 ; Sun, 13 Sep 2009 09:55:59 +0200 (CEST) Message-ID: <4AACA589.9080102@shapeshifter.se> Date: Sun, 13 Sep 2009 09:55:53 +0200 From: Fredrik Lindberg User-Agent: Thunderbird 2.0.0.23 (X11/20090912) MIME-Version: 1.0 To: Marin Atanasov References: <4AA784D9.80405@shapeshifter.se> <717f7a3e0909122245r75f7d205j19507593c209a4ab@mail.gmail.com> In-Reply-To: <717f7a3e0909122245r75f7d205j19507593c209a4ab@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox network patches for FreeBSD (vboxnetflt + vboxnetadp) 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, 13 Sep 2009 07:56:01 -0000 Marin Atanasov wrote: > Hi, > > Yesterday I did an upgrade of the Virtualbox port from 3.0.51.r22226 to > 3.0.51.r22683. > > However I tried changing the network settings to Bridge mode and Host only > networking, but that doesn't seem to work for me. > > Are Fredrik's patches included in the latest port of Virtualbox or I still > need to apply them manually? > Also one more question about the patches - are they supposed to create the > bridge interfaces automatically or I need to create them manually first > before using them? > > Regards, > Marin > No they are not included in the latest version of the port. They are however include in the upstream sources so future version of the VirtualBox port will include them. If you're using bridged mode everything *should* work automatically, you won't however see any "bridge interface" with ifconfig or similar, everything is done internally. Fredrik From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 11:00:43 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 C86DB106568F for ; Sun, 13 Sep 2009 11:00:43 +0000 (UTC) (envelope-from rotkap@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 1488D8FC1B for ; Sun, 13 Sep 2009 11:00:42 +0000 (UTC) Received: (qmail invoked by alias); 13 Sep 2009 10:34:01 -0000 Received: from g224055245.adsl.alicedsl.de (EHLO ahab.tihnet) [92.224.55.245] by mail.gmx.net (mp058) with SMTP; 13 Sep 2009 12:34:01 +0200 X-Authenticated: #1274221 X-Provags-ID: V01U2FsdGVkX1+stDVKDMKsxEzQp5udubRfS8ZLTlN10/Gz1D47Sx M/fW1FyLLVoSwE Received: from localhost ([127.0.0.1] helo=ahab.tihnet) by ahab.tihnet with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MmmPA-0000I1-PU; Sun, 13 Sep 2009 12:34:00 +0200 To: "Jeremy Messenger" References: <86iqfn6gfz.fsf@ahab.tihnet> From: Heino Tiedemann Organization: yes Date: Sun, 13 Sep 2009 12:33:59 +0200 In-Reply-To: (Jeremy Messenger's message of "Sat\, 12 Sep 2009 17\:34\:27 -0500") Message-ID: <86eiqb2kx4.fsf@ahab.tihnet> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) X-Face: v6Lci{Mw=kwHf$`7C?L-U#BHn7O\wqF-1qg#Vk%}nUQv\i^mM/.p=wU+cr)yXf#Ob+foOOxW; ir"QI!|25wG3`ywF)yh~@V.kKtr.qp+v.R; w?c@ZzM#!'/7r_+)$NjMN:]qo-]`&z~KlP}|cERO'%s9":6\ZnN/O List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Sep 2009 11:00:43 -0000 "Jeremy Messenger" wrote: > On Sat, 12 Sep 2009 15:44:48 -0500, Heino Tiedemann wrote: > >> "Jeremy Messenger" wrote: >> >>> Can you show me the output of 'pkg_info -IX linux' and 'sysctl >>> compat.linux'? >> >> >> yes, of course.. > > Thanks. > >> ,----[ pkg_info -IX linux ] > >> | linux_base-fc-4_15 Base set of packages needed in Linux mode (for >> i386/amd64) >> `---- > > I have linux_base-f8-8_10 installed here. If Opera needs that vesion, why is the opera port not depending on that version? can I just switch from fc-4_15 to f8-8_10? Are there reasons against switching? I am using portupgrade, this should do it: portupgrade -o emulators/linux_base-f8 emulators/linux_base-fc4 Is that right? Heino From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 14:40:34 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 68A0A1065672 for ; Sun, 13 Sep 2009 14:40:34 +0000 (UTC) (envelope-from herbszt@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id ABBCF8FC08 for ; Sun, 13 Sep 2009 14:40:33 +0000 (UTC) Received: (qmail invoked by alias); 13 Sep 2009 14:40:30 -0000 Received: from p54BD02AA.dip0.t-ipconnect.de (HELO FSCPC) [84.189.2.170] by mail.gmx.net (mp007) with SMTP; 13 Sep 2009 16:40:30 +0200 X-Authenticated: #310364 X-Provags-ID: V01U2FsdGVkX19zvDMbVUZzpKusJ5bCcSXirQO2ExNM88EknQf0fw P200KhYKlTijdZ Message-ID: From: "Sebastian Herbszt" To: "Juergen Lock" References: <20090829222339.GA93608@triton8.kn-bremen.de> <20090902175621.GA63905@triton8.kn-bremen.de> <20090904193435.GA77708@triton8.kn-bremen.de> <2E5888455DA643CEB3960168C1AAB4E0@FSCPC> <20090912183516.GA65678@triton8.kn-bremen.de> In-Reply-To: <20090912183516.GA65678@triton8.kn-bremen.de> Date: Sun, 13 Sep 2009 16:38:17 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Windows Mail 6.0.6000.16480 X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6000.16669 X-Y-GMX-Trusted: 0 X-FuHaFi: 0.53 Cc: freebsd-emulation@FreeBSD.org, Juergen Lock , Jung-uk Kim , qemu-devel@nongnu.org Subject: Re: experimental FreeBSD qemu-devel git head port update for testing 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, 13 Sep 2009 14:40:34 -0000 Replace own invokation of $cc with compile_prog (patch will likely not apply). - Sebastian @@ -37,7 +37,7 @@ + else + libpcap=-lwpcap + fi -+ if ! $cc $ARCH_CFLAGS -o $TMPE $libpcap $TMPC 2> /dev/null ; then ++ if ! compile_prog "" "$libpcap" ; then + echo + echo "Error: Could not find pcap" + echo "Make sure to have the pcap libs and headers installed." @@ -52,7 +52,7 @@ + return (pcap_create("foo", errbuf) == (pcap_t *)0 ? 1 : 0); +} +EOF -+ if $cc $ARCH_CFLAGS -o $TMPE $libpcap $TMPC 2> /dev/null ; then ++ if compile_prog "" "$libpcap" ; then + pcap_create="yes" + fi + cat > $TMPC << EOF @@ -61,10 +61,9 @@ +#include +int main(void) { return (BPF_MAJOR_VERSION); } +EOF -+ if $cc $ARCH_CFLAGS -o $TMPE $TMPC 2> /dev/null ; then ++ if compile_prog "" "" ; then + bpf="yes" + fi -+# LIBS="$libpcap $LIBS" + libs_softmmu="$libpcap $libs_softmmu" +fi # test "$pcap" + @@ -72,7 +71,7 @@ From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 14:57: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 C14B91065670 for ; Sun, 13 Sep 2009 14:57:05 +0000 (UTC) (envelope-from herbszt@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 103C68FC15 for ; Sun, 13 Sep 2009 14:57:04 +0000 (UTC) Received: (qmail invoked by alias); 13 Sep 2009 14:57:03 -0000 Received: from p54BD02AA.dip0.t-ipconnect.de (HELO FSCPC) [84.189.2.170] by mail.gmx.net (mp052) with SMTP; 13 Sep 2009 16:57:03 +0200 X-Authenticated: #310364 X-Provags-ID: V01U2FsdGVkX18soJY+akAsDEjDsLZkjek1ECRYIydnZBiIn9Bh17 45DtHrbj0zKog1 Message-ID: <5ED063C575C64A60B1E1B5CEE2591D11@FSCPC> From: "Sebastian Herbszt" To: "Juergen Lock" References: <20090829222339.GA93608@triton8.kn-bremen.de> <20090902175621.GA63905@triton8.kn-bremen.de> <20090904193435.GA77708@triton8.kn-bremen.de> <2E5888455DA643CEB3960168C1AAB4E0@FSCPC> <20090912183516.GA65678@triton8.kn-bremen.de> In-Reply-To: <20090912183516.GA65678@triton8.kn-bremen.de> Date: Sun, 13 Sep 2009 16:55:03 +0200 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Windows Mail 6.0.6000.16480 X-MimeOLE: Produced By Microsoft MimeOLE V6.0.6000.16669 X-Y-GMX-Trusted: 0 X-FuHaFi: 0.68 Cc: freebsd-emulation@FreeBSD.org, Juergen Lock , Jung-uk Kim , qemu-devel@nongnu.org Subject: Re: experimental FreeBSD qemu-devel git head port update for testing 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, 13 Sep 2009 14:57:05 -0000 This change seems wrong: + if (ifname == NULL && (ifname = pcap_lookupdev(errbuf)) == NULL) { -+ fprintf(stderr, "qemu: pcap_lookupdev: %s\n", errbuf); ++ fprintf(stderr, "qemu: pcap_create: %s\n", errbuf); + goto fail; + } - Sebastian From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 15:01:17 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 626841065695; Sun, 13 Sep 2009 15:01:17 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao105.cox.net (eastrmmtao105.cox.net [68.230.240.47]) by mx1.freebsd.org (Postfix) with ESMTP id E6A6F8FC28; Sun, 13 Sep 2009 15:01:16 +0000 (UTC) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao105.cox.net (InterMail vM.8.00.01.00 201-2244-105-20090324) with ESMTP id <20090913150116.GVBE11342.eastrmmtao105.cox.net@eastrmimpo02.cox.net>; Sun, 13 Sep 2009 11:01:16 -0400 Received: from localhost ([68.103.37.153]) by eastrmimpo02.cox.net with bizsmtp id gF1F1c0053JFCbG02F1FGg; Sun, 13 Sep 2009 11:01:15 -0400 X-VR-Score: -180.00 X-Authority-Analysis: v=1.0 c=1 a=phosoefUKIwA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=6FvqLCXnG_BmpUVqWaAA:9 a=FGFC1AU5ROWBJvSts6x_Hqf5sMsA:4 a=AKrjo3rx6aAA:10 a=twX6zS2zVsUA:10 a=_RhRFcbxBZMA:10 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 X-CM-Score: 0.00 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: "Heino Tiedemann" References: <86iqfn6gfz.fsf@ahab.tihnet> <86eiqb2kx4.fsf@ahab.tihnet> Date: Sun, 13 Sep 2009 10:03:32 -0500 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: "Jeremy Messenger" Message-ID: In-Reply-To: <86eiqb2kx4.fsf@ahab.tihnet> User-Agent: Opera Mail/10.00 (Linux) Cc: emulation@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/138752: www/linux-opera does not start 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, 13 Sep 2009 15:01:17 -0000 On Sun, 13 Sep 2009 05:40:07 -0500, Heino Tiedemann wrote: > The following reply was made to PR ports/138752; it has been noted by > GNATS. > > From: Heino Tiedemann > To: "Jeremy Messenger" > Cc: bug-followup@freebsd.org, emulation@freebsd.org > Subject: Re: ports/138752: www/linux-opera does not start > Date: Sun, 13 Sep 2009 12:33:59 +0200 > > "Jeremy Messenger" wrote: > > On Sat, 12 Sep 2009 15:44:48 -0500, Heino Tiedemann > wrote: > > > >> "Jeremy Messenger" wrote: > >> > >>> Can you show me the output of 'pkg_info -IX linux' and 'sysctl > >>> compat.linux'? > >> > >> > >> yes, of course.. > > > > Thanks. > > > >> ,----[ pkg_info -IX linux ] > > > >> | linux_base-fc-4_15 Base set of packages needed in Linux mode (for > >> i386/amd64) > >> `---- > > > > I have linux_base-f8-8_10 installed here. > > If Opera needs that vesion, why is the opera port not depending on > that version? You have snipped out my previous comment. I said: ------------------------ It looks like Opera now required glibc 2.4, which is available in f8 but dunno about f6. I will have to uninstall all of my linux_* ports and test it with linux_base-f6 to see if it will working. For I can edit the USE_LINUX in the Makefile by change from 'yes' to '6', '7' or else what it required. ------------------------ It means: I just found out linux-opera now required glibc 2.4, so I am working on it to make the change of version requirement correct. > can I just switch from fc-4_15 to f8-8_10? Yes, since you have FreeBSD 7.2-STABLE. > Are there reasons against switching? Not that I know of. > I am using portupgrade, this should do it: > portupgrade -o emulators/linux_base-f8 emulators/linux_base-fc4 > Is that right? See in the /usr/ports/UPDATING at 20090401 and 20070327 sections for how to upgrade. Cheers, Mezz > Heino -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 15:32:19 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 44B12106568B for ; Sun, 13 Sep 2009 15:32:19 +0000 (UTC) (envelope-from rotkap@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 7DF2D8FC35 for ; Sun, 13 Sep 2009 15:32:17 +0000 (UTC) Received: (qmail invoked by alias); 13 Sep 2009 15:32:16 -0000 Received: from g224055021.adsl.alicedsl.de (EHLO ahab.tihnet) [92.224.55.21] by mail.gmx.net (mp014) with SMTP; 13 Sep 2009 17:32:16 +0200 X-Authenticated: #1274221 X-Provags-ID: V01U2FsdGVkX1/+EXcbX9L+mRSebiDkABTgJC/cppUQc6jZ573EHk LAQBcH+7u+wgf5 Received: from localhost ([127.0.0.1] helo=ahab.tihnet) by ahab.tihnet with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1Mmr3m-0007Lj-SN; Sun, 13 Sep 2009 17:32:14 +0200 To: "Jeremy Messenger" References: <86iqfn6gfz.fsf@ahab.tihnet> <86eiqb2kx4.fsf@ahab.tihnet> From: Heino Tiedemann Organization: yes Date: Sun, 13 Sep 2009 17:32:14 +0200 In-Reply-To: (Jeremy Messenger's message of "Sun\, 13 Sep 2009 10\:03\:32 -0500") Message-ID: <86r5uavp1d.fsf@ahab.tihnet> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) X-Face: v6Lci{Mw=kwHf$`7C?L-U#BHn7O\wqF-1qg#Vk%}nUQv\i^mM/.p=wU+cr)yXf#Ob+foOOxW; ir"QI!|25wG3`ywF)yh~@V.kKtr.qp+v.R; w?c@ZzM#!'/7r_+)$NjMN:]qo-]`&z~KlP}|cERO'%s9":6\ZnN/O List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Sep 2009 15:32:19 -0000 "Jeremy Messenger" wrote: > You have snipped out my previous comment. I said: > > ------------------------ > It looks like Opera now required glibc 2.4, which is available in f8 > but dunno about f6. I will have to uninstall all of my linux_* ports > and test it with linux_base-f6 to see if it will working. For I can > edit the USE_LINUX in the Makefile by change from 'yes' to '6', '7' > or else what it required. > ------------------------ > > It means: I just found out linux-opera now required glibc 2.4, so I am > working on it to make the change of version requirement correct. Oh - I'm sorry, for my misunderstanding. >> can I just switch from fc-4_15 to f8-8_10? > > Yes, since you have FreeBSD 7.2-STABLE. > >> Are there reasons against switching? > > Not that I know of. > >> I am using portupgrade, this should do it: >> portupgrade -o emulators/linux_base-f8 emulators/linux_base-fc4 >> Is that right? > > See in the /usr/ports/UPDATING at 20090401 and 20070327 sections for > how to upgrade. Thank you! works fine! my problem is solved with this answer. see you Heino From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 15:43: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 19BA9106566C; Sun, 13 Sep 2009 15:43:56 +0000 (UTC) (envelope-from oberman@es.net) Received: from mailgw.es.net (mail3.es.net [IPv6:2001:400:4c01::2]) by mx1.freebsd.org (Postfix) with ESMTP id E054C8FC1C; Sun, 13 Sep 2009 15:43:55 +0000 (UTC) Received: from ptavv.es.net (ptavv.es.net [IPv6:2001:400:910::29]) by mailgw.es.net (8.14.3/8.14.3) with ESMTP id n8DFhdAv031781 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 13 Sep 2009 08:43:46 -0700 Received: from ptavv.es.net (ptavv.es.net [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id D5E0A1CC37; Sun, 13 Sep 2009 08:43:37 -0700 (PDT) To: "Jeremy Messenger" In-reply-to: Your message of "Sun, 13 Sep 2009 10:03:32 CDT." Date: Sun, 13 Sep 2009 08:43:37 -0700 From: "Kevin Oberman" Message-Id: <20090913154337.D5E0A1CC37@ptavv.es.net> X-Proofpoint-Virus-Version: vendor=fsecure engine=1.12.8161:2.4.5, 1.2.40, 4.0.166 definitions=2009-09-11_12:2009-09-01, 2009-09-11, 2009-09-12 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=5.0.0-0908210000 definitions=main-0909130062 Cc: emulation@freebsd.org, Heino Tiedemann , bug-followup@freebsd.org Subject: Re: ports/138752: www/linux-opera does not start 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, 13 Sep 2009 15:43:56 -0000 > Date: Sun, 13 Sep 2009 10:03:32 -0500 > From: "Jeremy Messenger" > Sender: owner-freebsd-emulation@freebsd.org > > On Sun, 13 Sep 2009 05:40:07 -0500, Heino Tiedemann wrote: > > > The following reply was made to PR ports/138752; it has been noted by > > GNATS. > > > > From: Heino Tiedemann > > To: "Jeremy Messenger" > > Cc: bug-followup@freebsd.org, emulation@freebsd.org > > Subject: Re: ports/138752: www/linux-opera does not start > > Date: Sun, 13 Sep 2009 12:33:59 +0200 > > > > "Jeremy Messenger" wrote: > > > On Sat, 12 Sep 2009 15:44:48 -0500, Heino Tiedemann > > wrote: > > > > > >> "Jeremy Messenger" wrote: > > >> > > >>> Can you show me the output of 'pkg_info -IX linux' and 'sysctl > > >>> compat.linux'? > > >> > > >> > > >> yes, of course.. > > > > > > Thanks. > > > > > >> ,----[ pkg_info -IX linux ] > > > > > >> | linux_base-fc-4_15 Base set of packages needed in Linux mode (for > > >> i386/amd64) > > >> `---- > > > > > > I have linux_base-f8-8_10 installed here. > > > > If Opera needs that vesion, why is the opera port not depending on > > that version? > > You have snipped out my previous comment. I said: > > ------------------------ > It looks like Opera now required glibc 2.4, which is available in f8 but > dunno about f6. I will have to uninstall all of my linux_* ports and test > it with linux_base-f6 to see if it will working. For I can edit the > USE_LINUX in the Makefile by change from 'yes' to '6', '7' or else what it > required. > ------------------------ > > It means: I just found out linux-opera now required glibc 2.4, so I am > working on it to make the change of version requirement correct. > > > can I just switch from fc-4_15 to f8-8_10? > > Yes, since you have FreeBSD 7.2-STABLE. > > > Are there reasons against switching? > > Not that I know of. > > > I am using portupgrade, this should do it: > > portupgrade -o emulators/linux_base-f8 emulators/linux_base-fc4 > > Is that right? I'd recommend emulators/linux_base-f10. That is the default in V8.0 and Flash10 will work with it on 7.2. Older versions all have issues with sound with older versions and none are being updated, so security vulnerabilities don't get fixed. I am running f10 on my one remaining 7.2 system and everything seems to be working fine. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 16:06: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 2920D1065679 for ; Sun, 13 Sep 2009 16:06:51 +0000 (UTC) (envelope-from dnaeon@gmail.com) Received: from mail-ew0-f208.google.com (mail-ew0-f208.google.com [209.85.219.208]) by mx1.freebsd.org (Postfix) with ESMTP id AAAA58FC0A for ; Sun, 13 Sep 2009 16:06:50 +0000 (UTC) Received: by ewy4 with SMTP id 4so2463785ewy.36 for ; Sun, 13 Sep 2009 09:06:49 -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; bh=PSon+eO8OWBPAqMqBoT1v6HBFeQ10Q0DoE6bVQj3aTE=; b=vrTSsCvYyG7VLMK1NWjBDCNB3eJRu072N/cl6LDA/3CmXK9fCThhZwgNxwfK8PPasg sUI1uBb+6IYTjmULeAzgJ3G7Xj5O5otOzHjWIBXegHHKDMXz9w9EQ/nynjTnh0ptPJPm csB8BQ/FzBEiQOwllk3NTw0+NHnR4rJIa2SV8= 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; b=VqCi1FESfz4hahNN8dVEj0pz8JjKHvinizBUiFxnDTfQx0wco4ci7h5rLcDd+sNpXK 3DkkJvgOxnOxmFISY+3U1k3VkvDHVS06B9zHRih47pqogjyrtsFIbdT5tIO7jRmh7L2f bgRpgYUfIF3+EruL2CUG1maSYmgA9qpM6dZh8= MIME-Version: 1.0 Received: by 10.216.3.1 with SMTP id 1mr774319weg.107.1252858009528; Sun, 13 Sep 2009 09:06:49 -0700 (PDT) In-Reply-To: <4AACA589.9080102@shapeshifter.se> References: <4AA784D9.80405@shapeshifter.se> <717f7a3e0909122245r75f7d205j19507593c209a4ab@mail.gmail.com> <4AACA589.9080102@shapeshifter.se> Date: Sun, 13 Sep 2009 19:06:49 +0300 Message-ID: <717f7a3e0909130906w521257e9g34b8b3a61d828430@mail.gmail.com> From: Marin Atanasov To: Fredrik Lindberg Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox network patches for FreeBSD (vboxnetflt + vboxnetadp) 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, 13 Sep 2009 16:06:51 -0000 Hi, I just tried to apply the patches on the new Virtualbox port ( 3.0.51.r22683 ) and then did a make install, but I got this error during the install process: ===> Installing for virtualbox-3.0.51.r22683 ===> virtualbox-3.0.51.r22683 depends on file: /usr/local/bin/easy_install-2.6 - found ===> virtualbox-3.0.51.r22683 depends on file: /usr/local/bin/python2.6 - found ===> virtualbox-3.0.51.r22683 depends on file: /usr/local/libdata/pkgconfig/xcursor.pc - found ===> virtualbox-3.0.51.r22683 depends on file: /usr/local/libdata/pkgconfig/xmu.pc - found ===> virtualbox-3.0.51.r22683 depends on package: qt4-gui>=4.5.2 - found ===> virtualbox-3.0.51.r22683 depends on package: qt4-network>=4.5.2 - found ===> virtualbox-3.0.51.r22683 depends on package: qt4-linguist>=4.5.2 - found ===> virtualbox-3.0.51.r22683 depends on executable: pkg-config - found ===> virtualbox-3.0.51.r22683 depends on file: /usr/local/lib/gio/modules/libgiofam.so - found ===> virtualbox-3.0.51.r22683 depends on executable: cdrecord - found ===> Generating temporary packing list ===> Checking if emulators/virtualbox already installed /bin/mkdir -p /boot/modules install -o root -g wheel -m 555 /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22683/out/freebsd.x86/debug/bin/vboxdrv.ko /boot/modules install -o root -g wheel -m 555 /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22683/out/freebsd.x86/debug/bin/vboxnetadp.ko /boot/modules install: /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22683/out/freebsd.x86/debug/bin/vboxnetadp.ko: No such file or directory *** Error code 71 Stop in /usr/ports/emulators/virtualbox. *** Error code 1 Stop in /usr/ports/emulators/virtualbox. Are the patches supposed to work with new Virtualbox port? Regards, Marin On Sun, Sep 13, 2009 at 10:55 AM, Fredrik Lindberg wrote: > Marin Atanasov wrote: > >> Hi, >> >> Yesterday I did an upgrade of the Virtualbox port from 3.0.51.r22226 to >> 3.0.51.r22683. >> >> However I tried changing the network settings to Bridge mode and Host only >> networking, but that doesn't seem to work for me. >> >> Are Fredrik's patches included in the latest port of Virtualbox or I still >> need to apply them manually? >> Also one more question about the patches - are they supposed to create the >> bridge interfaces automatically or I need to create them manually first >> before using them? >> >> Regards, >> Marin >> >> > No they are not included in the latest version of the port. They > are however include in the upstream sources so future version > of the VirtualBox port will include them. > > If you're using bridged mode everything *should* work automatically, > you won't however see any "bridge interface" with ifconfig or similar, > everything is done internally. > > Fredrik > > -- Marin Atanasov dnaeon AT gmail DOT com daemon AT unix-heaven DOT org From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 17:05:47 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 75EC9106566B for ; Sun, 13 Sep 2009 17:05:47 +0000 (UTC) (envelope-from rotkap@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.freebsd.org (Postfix) with SMTP id 48B3B8FC19 for ; Sun, 13 Sep 2009 17:05:45 +0000 (UTC) Received: (qmail invoked by alias); 13 Sep 2009 17:05:44 -0000 Received: from g224055021.adsl.alicedsl.de (EHLO ahab.tihnet) [92.224.55.21] by mail.gmx.net (mp071) with SMTP; 13 Sep 2009 19:05:44 +0200 X-Authenticated: #1274221 X-Provags-ID: V01U2FsdGVkX19sLN8dZ69sXDOMZJia0xvZZ0sD/DsbxI6R5fDHN9 HRdaGNj+9ykPBF Received: from localhost ([127.0.0.1] helo=ahab.tihnet) by ahab.tihnet with esmtp (Exim 4.69 (FreeBSD)) (envelope-from ) id 1MmsWD-0007fG-Bo; Sun, 13 Sep 2009 19:05:41 +0200 To: "Kevin Oberman" References: <20090913154337.D5E0A1CC37@ptavv.es.net> From: Heino Tiedemann Organization: yes Date: Sun, 13 Sep 2009 19:05:40 +0200 In-Reply-To: <20090913154337.D5E0A1CC37@ptavv.es.net> (Kevin Oberman's message of "Sun\, 13 Sep 2009 08\:43\:37 -0700") Message-ID: <86iqfmvkpn.fsf@ahab.tihnet> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.3 (berkeley-unix) X-Face: v6Lci{Mw=kwHf$`7C?L-U#BHn7O\wqF-1qg#Vk%}nUQv\i^mM/.p=wU+cr)yXf#Ob+foOOxW; ir"QI!|25wG3`ywF)yh~@V.kKtr.qp+v.R; w?c@ZzM#!'/7r_+)$NjMN:]qo-]`&z~KlP}|cERO'%s9":6\ZnN/O, bug-followup@freebsd.org Subject: Re: ports/138752: www/linux-opera does not start 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, 13 Sep 2009 17:05:47 -0000 "Kevin Oberman" wrote: >> Date: Sun, 13 Sep 2009 10:03:32 -0500 >> From: "Jeremy Messenger" >> Sender: owner-freebsd-emulation@freebsd.org >> >> On Sun, 13 Sep 2009 05:40:07 -0500, Heino Tiedemann wrote: >> >> > The following reply was made to PR ports/138752; it has been noted by >> > GNATS. >> > >> > From: Heino Tiedemann >> > To: "Jeremy Messenger" >> > Cc: bug-followup@freebsd.org, emulation@freebsd.org >> > Subject: Re: ports/138752: www/linux-opera does not start >> > Date: Sun, 13 Sep 2009 12:33:59 +0200 >> > >> > "Jeremy Messenger" wrote: >> > > On Sat, 12 Sep 2009 15:44:48 -0500, Heino Tiedemann >> > wrote: >> > > >> > >> "Jeremy Messenger" wrote: >> > >> >> > >>> Can you show me the output of 'pkg_info -IX linux' and 'sysctl >> > >>> compat.linux'? >> > >> >> > >> >> > >> yes, of course.. >> > > >> > > Thanks. >> > > >> > >> ,----[ pkg_info -IX linux ] >> > > >> > >> | linux_base-fc-4_15 Base set of packages needed in Linux mode (for >> > >> i386/amd64) >> > >> `---- >> > > >> > > I have linux_base-f8-8_10 installed here. >> > >> > If Opera needs that vesion, why is the opera port not depending on >> > that version? >> >> You have snipped out my previous comment. I said: >> >> ------------------------ >> It looks like Opera now required glibc 2.4, which is available in f8 but >> dunno about f6. I will have to uninstall all of my linux_* ports and test >> it with linux_base-f6 to see if it will working. For I can edit the >> USE_LINUX in the Makefile by change from 'yes' to '6', '7' or else what it >> required. >> ------------------------ >> >> It means: I just found out linux-opera now required glibc 2.4, so I am >> working on it to make the change of version requirement correct. >> >> > can I just switch from fc-4_15 to f8-8_10? >> >> Yes, since you have FreeBSD 7.2-STABLE. >> >> > Are there reasons against switching? >> >> Not that I know of. >> >> > I am using portupgrade, this should do it: >> > portupgrade -o emulators/linux_base-f8 emulators/linux_base-fc4 >> > Is that right? > > I'd recommend emulators/linux_base-f10. That is the default in V8.0 and > Flash10 will work with it on 7.2. Older versions all have issues with > sound with older versions and none are being updated, so security > vulnerabilities don't get fixed. > > I am running f10 on my one remaining 7.2 system and everything seems to > be working fine. thank you. I did a "make fetch" in emulators/linux_base-f10 - wow there comes a lot.. I'll think about linux_base-f10 - for that moment my linux-opera runs perfekt with flashplugin 7 From owner-freebsd-emulation@FreeBSD.ORG Sun Sep 13 17:26:16 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 D4FFF106566B for ; Sun, 13 Sep 2009 17:26:16 +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 5531E8FC14 for ; Sun, 13 Sep 2009 17:26:16 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1Mmspz-000107-TQ; Sun, 13 Sep 2009 19:26:08 +0200 Received: from 77.117.248.185 (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Sun, 13 Sep 2009 19:26:07 +0200 (CEST) Message-ID: In-Reply-To: <717f7a3e0909130906w521257e9g34b8b3a61d828430@mail.gmail.com> References: <4AA784D9.80405@shapeshifter.se> <717f7a3e0909122245r75f7d205j19507593c209a4ab@mail.gmail.com> <4AACA589.9080102@shapeshifter.se> <717f7a3e0909130906w521257e9g34b8b3a61d828430@mail.gmail.com> Date: Sun, 13 Sep 2009 19:26:07 +0200 (CEST) From: "Bernhard Froehlich" To: "Marin Atanasov" 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 network patches for FreeBSD (vboxnetflt + vboxnetadp) 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, 13 Sep 2009 17:26:17 -0000 On Sun, September 13, 2009 6:06 pm, Marin Atanasov wrote: > Hi, > > I just tried to apply the patches on the new Virtualbox port ( > 3.0.51.r22683 > ) and then did a make install, but I got this error during the install > process: > > ===> Installing for virtualbox-3.0.51.r22683 > ===> virtualbox-3.0.51.r22683 depends on file: > /usr/local/bin/easy_install-2.6 - found > ===> virtualbox-3.0.51.r22683 depends on file: /usr/local/bin/python2.6 > - > found > ===> virtualbox-3.0.51.r22683 depends on file: > /usr/local/libdata/pkgconfig/xcursor.pc - found > ===> virtualbox-3.0.51.r22683 depends on file: > /usr/local/libdata/pkgconfig/xmu.pc - found > ===> virtualbox-3.0.51.r22683 depends on package: qt4-gui>=4.5.2 - found > ===> virtualbox-3.0.51.r22683 depends on package: qt4-network>=4.5.2 - > found > ===> virtualbox-3.0.51.r22683 depends on package: qt4-linguist>=4.5.2 - > found > ===> virtualbox-3.0.51.r22683 depends on executable: pkg-config - found > ===> virtualbox-3.0.51.r22683 depends on file: > /usr/local/lib/gio/modules/libgiofam.so - found > ===> virtualbox-3.0.51.r22683 depends on executable: cdrecord - found > ===> Generating temporary packing list > ===> Checking if emulators/virtualbox already installed > /bin/mkdir -p /boot/modules > install -o root -g wheel -m 555 > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22683/out/freebsd.x86/debug/bin/vboxdrv.ko > /boot/modules > install -o root -g wheel -m 555 > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22683/out/freebsd.x86/debug/bin/vboxnetadp.ko > /boot/modules > install: > /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22683/out/freebsd.x86/debug/bin/vboxnetadp.ko: > No such file or directory > *** Error code 71 > > Stop in /usr/ports/emulators/virtualbox. > *** Error code 1 > > Stop in /usr/ports/emulators/virtualbox. > > Are the patches supposed to work with new Virtualbox port? > > Regards, > Marin > > > On Sun, Sep 13, 2009 at 10:55 AM, Fredrik Lindberg > wrote: > >> Marin Atanasov wrote: >> >>> Hi, >>> >>> Yesterday I did an upgrade of the Virtualbox port from 3.0.51.r22226 to >>> 3.0.51.r22683. >>> >>> However I tried changing the network settings to Bridge mode and Host >>> only >>> networking, but that doesn't seem to work for me. >>> >>> Are Fredrik's patches included in the latest port of Virtualbox or I >>> still >>> need to apply them manually? >>> Also one more question about the patches - are they supposed to create >>> the >>> bridge interfaces automatically or I need to create them manually first >>> before using them? You can just try our testing port which is based on the latest vbox code and already includes Fredriks patches. svn co http://svn.bluelife.at/projects/packages/blueports/emulators/virtualbox/ -- Bernhard Fröhlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 01:20: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 064A1106566B for ; Mon, 14 Sep 2009 01:20:05 +0000 (UTC) (envelope-from jonathan@kc8onw.net) Received: from mail.kc8onw.net (kc8onw.net [206.55.209.81]) by mx1.freebsd.org (Postfix) with ESMTP id D42988FC12 for ; Mon, 14 Sep 2009 01:20:04 +0000 (UTC) Received: from [10.70.3.198] (c-67-175-45-154.hsd1.in.comcast.net [67.175.45.154]) by mail.kc8onw.net (Postfix) with ESMTPSA id 61E5431A9F for ; Sun, 13 Sep 2009 21:01:10 -0400 (EDT) Message-ID: <4AAD95C2.7040907@kc8onw.net> Date: Sun, 13 Sep 2009 21:00:50 -0400 From: Jonathan User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.1.1) Gecko/20090715 Thunderbird/3.0b3 MIME-Version: 1.0 To: freebsd-emulation@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Virtualbox and VRDP 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, 14 Sep 2009 01:20:05 -0000 I just installed virtualbox on my server without X11 support intending to run it headless and now I find that the Virtual Remote Display Protocol support is only available in the closed source version. The virtualbox Editions page says that some of the closed source features may eventually become available in the open source version as well, has anyone heard anything about this happening for VRDP? Are there any other options that would allow me to set up a VM remotely without installing X? I suppose I could set up a VM locally and then copy it to my server once it's configured for remote ssh access but that would involve copying several GB over the internet, a rather slow process on my connection. Thanks, Jonathan P.S. Thank you very much to all who have helped bring VirtualBox to FreeBSD! From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 05:25: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 0AB191065672 for ; Mon, 14 Sep 2009 05:25:27 +0000 (UTC) (envelope-from dnaeon@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.159]) by mx1.freebsd.org (Postfix) with ESMTP id 8AC6C8FC17 for ; Mon, 14 Sep 2009 05:25:26 +0000 (UTC) Received: by fg-out-1718.google.com with SMTP id 16so744094fgg.13 for ; Sun, 13 Sep 2009 22:25:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:subject:references:in-reply-to :content-type:content-transfer-encoding; bh=HKC8IPNdWs6zeDJZSyPsY0Bxwl9nY890sc0ZQvrn2Ng=; b=wyZz8fO6pt+7yj+o/TEjvvK1G0DUqDYSCv6iovkyEGKdSgUsscaY4LEQ3LyyC1IqeW 9eVz1ajX+ScsNZj8QkgiUQm2p5O6usc7scwwyLdOCnJhVm+QLOaZDv331gqq6Rk7c3eE mqz1pLlPvIEWHM7URSMeGIdir0TcxZFAlawhc= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; b=eCJ4iysPl6oFxwsBegfTRuqNCeQCJqoV2svl0i/3y/EIWKHDd3vsonumZ7eXsnV1Sy WZ7pXxy4U1p02S+WmSyvMccEyRlfkj32TWs4V1EKWEjcGnTbluaskBiO6MUIBZdvJvd4 MrDK+kqtE182DyLmDBPxBiZ7+iERUPJcUi2+s= Received: by 10.86.247.18 with SMTP id u18mr4531232fgh.43.1252905924923; Sun, 13 Sep 2009 22:25:24 -0700 (PDT) Received: from tsunami.bsdworld (unix-heaven.org [78.90.73.87]) by mx.google.com with ESMTPS id e11sm1490891fga.26.2009.09.13.22.25.23 (version=TLSv1/SSLv3 cipher=RC4-MD5); Sun, 13 Sep 2009 22:25:24 -0700 (PDT) Message-ID: <4AADD393.4080305@gmail.com> Date: Mon, 14 Sep 2009 08:24:35 +0300 From: Marin Atanasov User-Agent: Thunderbird 2.0.0.23 (X11/20090906) MIME-Version: 1.0 To: freebsd-emulation@freebsd.org References: <4AA784D9.80405@shapeshifter.se> <717f7a3e0909122245r75f7d205j19507593c209a4ab@mail.gmail.com> <4AACA589.9080102@shapeshifter.se> <717f7a3e0909130906w521257e9g34b8b3a61d828430@mail.gmail.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: VirtualBox network patches for FreeBSD (vboxnetflt + vboxnetadp) 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, 14 Sep 2009 05:25:27 -0000 Hi, I've installed virtualbox from the svn repo and I must say it works great! Great job! Btw, I see that you have updated the port as well, so now it's in the FreeBSD ports collection too - one more great news! :) Thanks, Marin Bernhard Froehlich wrote: > You can just try our testing port which is based on the latest vbox code > and already includes Fredriks patches. > > svn co > http://svn.bluelife.at/projects/packages/blueports/emulators/virtualbox/ > > From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 05:38:56 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 26AAD106566B for ; Mon, 14 Sep 2009 05:38:56 +0000 (UTC) (envelope-from xorquewasp@googlemail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.158]) by mx1.freebsd.org (Postfix) with ESMTP id AAE278FC12 for ; Mon, 14 Sep 2009 05:38:55 +0000 (UTC) Received: by fg-out-1718.google.com with SMTP id e21so366496fga.13 for ; Sun, 13 Sep 2009 22:38:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:subject :message-id:mime-version:content-type:content-disposition; bh=jOs5ERVLtzNBLRv8rqkhACH7t0PKaD8gxPy2t54FINA=; b=mY31Nmx81S6LG3X3eUy7kqXBL97/yVJU6FQGEp2BjwQ91JZUgIklDfgKLnLEiB0oAm 8bfaw1eW4BBudUhVQnZdnC/cc5Ow09BUgEwgGiG+KowarAtlX5Ctk5196VAkPOT4v9ch MYwQGt6ba8KTDqVn/yXrZAAliAkXm6M6X73IY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition; b=oub17rjtzTOPk2SEMb9vUDWYvTJi2RZR7f8cWVov3F5BME/i7x4FjTZcsGGJy6iMJM 0UtpvdcGUH29XUZ48GL3wr5jeFeASk0V2OdFqB4NyTi7NZcF70nwRcNO8Q1JPSFAZlJv FNrCGRG/kOK70chb1RpGEcXLtKnDLzM0NAFU8= Received: by 10.86.13.36 with SMTP id 36mr4564928fgm.25.1252905283301; Sun, 13 Sep 2009 22:14:43 -0700 (PDT) Received: from viper.internal.network (dsl78-143-222-147.in-addr.fast.co.uk [78.143.222.147]) by mx.google.com with ESMTPS id e20sm636730fga.25.2009.09.13.22.14.42 (version=TLSv1/SSLv3 cipher=OTHER); Sun, 13 Sep 2009 22:14:42 -0700 (PDT) Received: by viper.internal.network (Postfix, from userid 11001) id 422904AC57; Mon, 14 Sep 2009 06:14:02 +0100 (BST) Date: Mon, 14 Sep 2009 06:14:02 +0100 From: xorquewasp@googlemail.com To: freebsd-emulation@freebsd.org Message-ID: <20090914051402.GB44046@logik.internal.network> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Subject: Problems with qemu networking on 7.2-RELEASE-amd64? 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, 14 Sep 2009 05:38:56 -0000 Hello. I'm having horrendous trouble getting qemu to do networking on 7.2-RELEASE-amd64. I've not had any trouble on previous versions of FreeBSD and qemu so this comes as a bit of a surprise. The setup is a simple bridge between my main physical NIC (re0) and a tap device (tap0). I use PF to filter on the bridge for basic access control. # ifconfig bridge0 create # ifconfig tap0 create # ifconfig bridge0 addm tap0 # ifconfig bridge0 addm re0 # chmod 660 /dev/tap0 # chown root:devel /dev/tap0 # sysctl net.link.tap.up_on_open=1 # sysctl net.link.tap.user_open=1 $ cat if-up #!/bin/sh info() { echo "if-up: info: $1" 1>&2 } info "bringing up $1" sudo /sbin/ifconfig $1 0.0.0.0 promisc up exit 0 $ ifconfig bridge0 bridge0: flags=8802 metric 0 mtu 1500 ether de:38:3c:f6:8a:a9 id 00:00:00:00:00:00 priority 32768 hellotime 2 fwddelay 15 maxage 20 holdcnt 6 proto rstp maxaddr 100 timeout 1200 root id 00:00:00:00:00:00 priority 0 ifcost 0 port 0 member: re0 flags=143 ifmaxaddr 0 port 1 priority 128 path cost 200000 member: tap0 flags=143 ifmaxaddr 0 port 9 priority 128 path cost 2000000 $ ifconfig re0 re0: flags=8943 metric 0 mtu 1500 options=3898 ether 00:e0:4d:b3:5b:bd inet 10.1.3.1 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.2 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.3 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.4 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.5 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.6 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.7 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.8 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.9 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.10 netmask 0xffff0000 broadcast 10.1.255.255 inet 10.1.3.11 netmask 0xffff0000 broadcast 10.1.255.255 media: Ethernet autoselect (100baseTX ) status: active $ qemu -snapshot -hda image -net nic -net tap,ifname=tap0,script=if-up $ ifconfig tap0 tap0: flags=28943 metric 0 mtu 1500 ether 00:bd:bd:41:18:00 inet 0.0.0.0 netmask 0xff000000 broadcast 0.255.255.255 Opened by PID 21860 At this point, the guest in the qemu VM has the correct TCP/IP settings: host: 10.1.3.12 mask: 255.255.0.0 dns: 10.2.1.7 gate: 10.1.0.1 The ability for various guests to see the network interface is varied. NetBSD 5.0.1 x86 sees no network interface at all (nothing in dmesg). OpenBSD 4.5 x86 sees a network interface but at some point during boot, it'll state something along the lines of "ne3: device timeout" and networking doesn't work. Windows XP x86 seems to be able to see a network interface and can apparently send outgoing packets for DNS resolution but appears to never receive any data in return. NetBSD 5.0.1 SPARC can see an interface and can apparently send packets and not receive. I've intermittently been able to connect in via SSH, however. Currently, as I write, the NetBSD SPARC guest can neither send nor receive any data on the network interface (watching the bridge, tap and pflog devices shows no connections being made). Is anyone else having trouble? xw PS: Please CC as I'm not subscribed. From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 06:56:37 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 D9D2D106566B for ; Mon, 14 Sep 2009 06:56:37 +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 9707E8FC0C for ; Mon, 14 Sep 2009 06:56:37 +0000 (UTC) Received: from bb.ipt.ru ([194.62.233.89]) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1Mn5UJ-000B0k-En; Mon, 14 Sep 2009 10:56:35 +0400 From: Boris Samorodov To: "Jeremy Messenger" References: <86iqfn6gfz.fsf@ahab.tihnet> Date: Mon, 14 Sep 2009 10:56:36 +0400 In-Reply-To: (Jeremy Messenger's message of "Sat, 12 Sep 2009 17:34:27 -0500") Message-ID: <76660667@bb.ipt.ru> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: emulation@freebsd.org Subject: Re: ports/138752: www/linux-opera does not start 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, 14 Sep 2009 06:56:37 -0000 On Sat, 12 Sep 2009 17:34:27 -0500 Jeremy Messenger wrote: > BTW: Add emulation@ in the CC for they can correct me if I said > anything wrong with Linux emulation stuff related. Jeremy, you are perfectly correct. However, I'll advise against other linux base ports than -fc4, -f8 and -f10. The latter ports have all needed linux infrastructure ports. A note: I'll commit the last one for -f10- soon as it has been just repocopied (it's a graphics/linux-f10-libGLU port). -- WBR, Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 07:33:16 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 E0A05106566C for ; Mon, 14 Sep 2009 07:33:16 +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 9CAE78FC19 for ; Mon, 14 Sep 2009 07:33:16 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=webmail.itac.at) by mail.itac.at with esmtpa (Exim 4.63) (envelope-from ) id 1Mn63l-00071K-PM; Mon, 14 Sep 2009 09:33:13 +0200 Received: from 83.64.253.201 (proxying for unknown) (SquirrelMail authenticated user decke@bluelife.at) by webmail.itac.at with HTTP; Mon, 14 Sep 2009 09:33:13 +0200 (CEST) Message-ID: <29e884c4b57123a181fb162710e6d1d0.squirrel@webmail.itac.at> In-Reply-To: <4AAD95C2.7040907@kc8onw.net> References: <4AAD95C2.7040907@kc8onw.net> Date: Mon, 14 Sep 2009 09:33:13 +0200 (CEST) From: "Bernhard Froehlich" To: "Jonathan" 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 and VRDP 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, 14 Sep 2009 07:33:17 -0000 On Mon, September 14, 2009 3:00 am, Jonathan wrote: > I just installed virtualbox on my server without X11 support intending > to run it headless and now I find that the Virtual Remote Display > Protocol support is only available in the closed source version. The > virtualbox Editions page says that some of the closed source features > may eventually become available in the open source version as well, has > anyone heard anything about this happening for VRDP? > > Are there any other options that would allow me to set up a VM remotely > without installing X? I suppose I could set up a VM locally and then > copy it to my server once it's configured for remote ssh access but that > would involve copying several GB over the internet, a rather slow > process on my connection. You can setup your virtual machine with VBoxManage but installing a system in it is rather painful without GUI. The way you described is my preferred at the moment but you could also install with X11 and use VBoxSDL and X11 forwarding. I've talked to the vbox developers and they don't think that the RDP code will be put opensource in the foreseeable future. That's a pity because in combination with vboxweb [0] which is a python web interface to vbox that includes a Flash based RDP client this would be a great headless solution. [0] http://code.google.com/p/vboxweb/ -- Bernhard Fröhlich http://www.bluelife.at/ From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 09:48: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 3256F106566C for ; Mon, 14 Sep 2009 09:48:53 +0000 (UTC) (envelope-from Gabor@Zahemszky.HU) Received: from relay02.digicable.hu (relay02.digicable.hu [92.249.128.188]) by mx1.freebsd.org (Postfix) with ESMTP id 9D6C28FC17 for ; Mon, 14 Sep 2009 09:48:52 +0000 (UTC) Received: from [94.21.14.106] (helo=Picasso.Zahemszky.HU) by relay02.digicable.hu with esmtpa id 1Mn7dz-0006jc-VT for ; Mon, 14 Sep 2009 11:14:44 +0200 Date: Mon, 14 Sep 2009 09:48:05 +0200 From: Zahemszky =?ISO-8859-2?Q?G=E1bor?= (by way of Zahemszky =?ISO-8859-2?Q?G=E1bor?= ) To: freebsd-emulators@freebsd.org Message-ID: <20090914094805.47a01eab@Picasso.Zahemszky.HU> Organization: Zahemszky Bt. X-Mailer: Claws Mail 3.7.2 (GTK+ 2.16.6; i386-portbld-freebsd7.2) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="MP_/X=MIRu=qE9ijTNttOFqfGFN" Resent-Date: Mon, 14 Sep 2009 11:14:43 +0200 Resent-From: Zahemszky =?ISO-8859-2?Q?G=E1bor?= Resent-Message-ID: <20090914111443.11fe7ab1@Picasso.Zahemszky.HU> Resent-To: freebsd-emulation@freebsd.org X-Original: 94.21.14.106 Cc: Subject: virtualbox cannot compile 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, 14 Sep 2009 09:48:53 -0000 --MP_/X=MIRu=qE9ijTNttOFqfGFN Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Content-Disposition: inline Hi! I've got a problem with the (last two) recent version(s) of the emulators/virtualbox port, as I cannot compile it. It fails with a: 02/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c:34: /sys/vm/vm.h:64:24: error: machine/vm.h: No such file or directory error message. The previous version failed with the same problem. The configuration is: $ make showconfig ===> The following configuration options are available for virtualbox-3.0.51.r22902: QT4=off "Build with QT4 Frontend" DEBUG=off "Build with debugging symbols" GUESTADDITIONS=on "Build with Guest Additions" DBUS=on "Build with D-Bus and HAL support" PULSEAUDIO=off "Build with PulseAudio" X11=on "Build with X11 support" NLS=on "Native language support" ===> Use 'make config' to modify these settings $ The full error log (generated after a failed compile, with a script make) is attached. Zahy < Gabor at Zahemszky dot HU > -- #!/bin/ksh Z='21N16I25C25E30, 40M30E33E25T15U!'; IFS=' ABCDEFGHIJKLMNOPQRSTUVWXYZ '; set -- $Z;for i;{ [[ $i = ? ]]&&print $i&&break; [[ $i = ??? ]]&&j=$i&&i=${i%?}; typeset -i40 i=8#$i;print -n ${i#???}; [[ "$j" = ??? ]]&&print -n "${j#??} "&&j=;typeset +i i;}; IFS=' 0123456789 ';set -- $Z;for i;{ [[ $i = , ]]&&i=2; [[ $i = ?? ]]||typeset -l i;j="$j $i";typeset +l i;};print "$j" --MP_/X=MIRu=qE9ijTNttOFqfGFN Content-Type: application/octet-stream; name=typescript Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename=typescript U2NyaXB0IHN0YXJ0ZWQgb24gTW9uIFNlcCAxNCAwOTozNTo0NSAyMDA5ClBpY2Fzc28jIG1ha2UN DQo9PT0+ICBCdWlsZGluZyBmb3IgdmlydHVhbGJveC0zLjAuNTEucjIyOTAyDQpjZCAvdXNyL3Bv cnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJveC0zLjAuNTFyMjI5MDIgJiYg L2Jpbi9zaCBlbnYuc2ggJiYgVkJPWF9MSUJQQVRIX1gxMT0vdXNyL2xvY2FsIFZCT1hfRlJFRUJT RF9TUkM9L3N5cyAvdXNyL2xvY2FsL2Jpbi9rbWsgDQprQnVpbGQ6IFBhc3MgLSBCdWlsZCBQcm9n cmFtcw0Ka21rWzFdOiBFbnRlcmluZyBkaXJlY3RvcnkgYC91c3IvcG9ydHMvZW11bGF0b3JzL3Zp cnR1YWxib3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMicNCmtta1syXTogRW50ZXJpbmcg ZGlyZWN0b3J5IGAvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJv eC0zLjAuNTFyMjI5MDInDQprbWtbMl06IE5vdGhpbmcgdG8gYmUgZG9uZSBmb3IgYHBhc3NfYmxk cHJvZ3NfZG9pdCcuDQprbWtbMl06IExlYXZpbmcgZGlyZWN0b3J5IGAvdXNyL3BvcnRzL2VtdWxh dG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJveC0zLjAuNTFyMjI5MDInDQprbWtbMV06IExl YXZpbmcgZGlyZWN0b3J5IGAvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmly dHVhbGJveC0zLjAuNTFyMjI5MDInDQprQnVpbGQ6IFBhc3MgLSBMaWJyYXJpZXMNCmtta1sxXTog RW50ZXJpbmcgZGlyZWN0b3J5IGAvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsv dmlydHVhbGJveC0zLjAuNTFyMjI5MDInDQprbWtbMl06IEVudGVyaW5nIGRpcmVjdG9yeSBgL3Vz ci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAy L3NyYy9WQm94L0RldmljZXMvUEMvRXRoZXJib290LXNyYycNCmtta1syXTogTm90aGluZyB0byBi ZSBkb25lIGZvciBgcGFzc19saWJyYXJpZXMnLg0Ka21rWzJdOiBMZWF2aW5nIGRpcmVjdG9yeSBg L3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIy OTAyL3NyYy9WQm94L0RldmljZXMvUEMvRXRoZXJib290LXNyYycNCmtta1syXTogRW50ZXJpbmcg ZGlyZWN0b3J5IGAvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJv eC0zLjAuNTFyMjI5MDInDQprQnVpbGQ6IEluc3RhbGxpbmcgL3Vzci9wb3J0cy9lbXVsYXRvcnMv dmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL291dC9mcmVlYnNkLng4Ni9y ZWxlYXNlL2Jpbi9zZGsvYmluZGluZ3MveHBjb20vaW5jbHVkZS9WQm94Q0FQSV92M18xLmgNCmtC dWlsZDogeHBpZGwgVkJveFNWQyAtIC91c3IvcG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxib3gvd29y ay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMi9vdXQvZnJlZWJzZC54ODYvcmVsZWFzZS9iaW4vc2Rr L2JpbmRpbmdzL3hwY29tL2lkbC9WaXJ0dWFsQm94X1hQQ09NLmlkbA0Ka0J1aWxkOiB4cGlkbCBW Qm94U1ZDIC0gL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gt My4wLjUxcjIyOTAyL291dC9mcmVlYnNkLng4Ni9yZWxlYXNlL2Jpbi9zZGsvYmluZGluZ3MveHBj b20vaWRsL1ZpcnR1YWxCb3hfWFBDT00uaWRsDQprbWtfYnVpbHRpbl9jaG1vZCAwNjQ0IC91c3Iv cG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxib3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMi9v dXQvZnJlZWJzZC54ODYvcmVsZWFzZS9iaW4vY29tcG9uZW50cy9WaXJ0dWFsQm94X1hQQ09NLnhw dA0Ka0J1aWxkOiBMaW5raW5nIFJ1bnRpbWVSMw0Ka0J1aWxkOiBJbnN0YWxsaW5nIFJ1bnRpbWVS MCA9PiAvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJveC0zLjAu NTFyMjI5MDIvb3V0L2ZyZWVic2QueDg2L3JlbGVhc2UvbGliL1J1bnRpbWVSMC5hDQprQnVpbGQ6 IEluc3RhbGxpbmcgUnVudGltZUdDID0+IC91c3IvcG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxib3gv d29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMi9vdXQvZnJlZWJzZC54ODYvcmVsZWFzZS9saWIv UnVudGltZUdDLmENCmtCdWlsZDogSW5zdGFsbGluZyBSdW50aW1lRUZDUFAgPT4gL3Vzci9wb3J0 cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL291dC9m cmVlYnNkLng4Ni9yZWxlYXNlL2xpYi9SdW50aW1lRUZDUFAuYQ0Ka0J1aWxkOiBJbnN0YWxsaW5n IFJ1bnRpbWVSM05vQ1JUR0NDID0+IC91c3IvcG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxib3gvd29y ay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMi9vdXQvZnJlZWJzZC54ODYvcmVsZWFzZS9saWIvUnVu dGltZVIzTm9DUlRHQ0MuYQ0Ka0J1aWxkOiBDb21waWxpbmcgUnVudGltZVIwRHJ2IC0gL3Vzci9w b3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL3Ny Yy9WQm94L1J1bnRpbWUvcjBkcnYvZnJlZWJzZC9hbGxvYy1yMGRydi1mcmVlYnNkLmMNCmtCdWls ZDogQ29tcGlsaW5nIFJ1bnRpbWVSMERydiAtIC91c3IvcG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxi b3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMi9zcmMvVkJveC9SdW50aW1lL3IwZHJ2L2Zy ZWVic2QvYXNzZXJ0LXIwZHJ2LWZyZWVic2QuYw0KSW4gZmlsZSBpbmNsdWRlZCBmcm9tIC91c3Iv cG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxib3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMi9z cmMvVkJveC9SdW50aW1lL3IwZHJ2L2ZyZWVic2QvdGhlLWZyZWVic2Qta2VybmVsLmg6NjAsDQog ICAgICAgICAgICAgICAgIGZyb20gL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3Jr L3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL3NyYy9WQm94L1J1bnRpbWUvcjBkcnYvZnJlZWJzZC9h bGxvYy1yMGRydi1mcmVlYnNkLmM6MzQ6DQovc3lzL3ZtL3ZtLmg6NjQ6MjQ6IGVycm9yOiBtYWNo aW5lL3ZtLmg6IE5vIHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkNCmtta1syXTogKioqIFsvdXNyL3Bv cnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJveC0zLjAuNTFyMjI5MDIvb3V0 L2ZyZWVic2QueDg2L3JlbGVhc2Uvb2JqL1J1bnRpbWVSMERydi9yMGRydi9mcmVlYnNkL2FsbG9j LXIwZHJ2LWZyZWVic2Qub10gRXJyb3IgMQ0KVGhlIGZhaWxpbmcgY29tbWFuZDoNCkBjYyAtYyAt TzIgLVdhbGwgLVdleHRyYSAtV25vLW1pc3NpbmctZmllbGQtaW5pdGlhbGl6ZXJzIC1Xbm8tdW51 c2VkIC1Xbm8tdHJpZ3JhcGhzIC1XcG9pbnRlci1hcml0aCAtV2lubGluZSAtV25vLXBvaW50ZXIt c2lnbiAtV3N0cmljdC1wcm90b3R5cGVzIC1XbWlzc2luZy1wcm90b3R5cGVzIC1Xc3RyaWN0LXBy b3RvdHlwZXMgLVduZXN0ZWQtZXh0ZXJucyAtTzIgLWZmb3JtYXQtZXh0ZW5zaW9ucyAtZmZyZWVz dGFuZGluZyAtZm5vLXN0cmljdC1hbGlhc2luZyAtZm5vLWNvbW1vbiAtZmlubGluZS1saW1pdD04 MDAwIC1mbm8tc3RhY2stcHJvdGVjdG9yIC1PMiAtbXR1bmU9Z2VuZXJpYyAtZm5vLW9taXQtZnJh bWUtcG9pbnRlciAtbm9zdGRpbmMgLXN0ZD1jOTkgLW0zMiAtbW5vLWFsaWduLWxvbmctc3RyaW5n cyAtbXByZWZlcnJlZC1zdGFjay1ib3VuZGFyeT0yIC1tbm8tbW14IC1tbm8tM2Rub3cgLW1uby1z c2UgLW1uby1zc2UyIC1JL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1 YWxib3gtMy4wLjUxcjIyOTAyL291dC9mcmVlYnNkLng4Ni9yZWxlYXNlL2dlbi1zeXMtaGRycyAt SS91c3IvcG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxib3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIy MjkwMi9zcmMvVkJveC9SdW50aW1lIC1JL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93 b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL3NyYy9WQm94L1J1bnRpbWUvaW5jbHVkZSAtSS9z eXMgLUkvc3lzL2NvbnRyaWIvYWx0cSAtSS9zeXMvLi4vaW5jbHVkZSAtSS91c3IvaW5jbHVkZSAt SS91c3IvcG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxib3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIy MjkwMi9pbmNsdWRlIC1JL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1 YWxib3gtMy4wLjUxcjIyOTAyL291dC9mcmVlYnNkLng4Ni9yZWxlYXNlIC1EVkJPWCAtRFZCT1hf T1NFIC1EVkJPWF9XSVRIXzY0X0JJVFNfR1VFU1RTIC1EVkJPWF9XSVRIX0hBUkRFTklORyAtRFJU UEFUSF9BUFBfUFJJVkFURT1cIi91c3IvbG9jYWwvc2hhcmUvdmlydHVhbGJveFwiIC1EUlRQQVRI X0FQUF9QUklWQVRFX0FSQ0g9XCIvdXNyL2xvY2FsL2xpYi92aXJ0dWFsYm94XCIgLURSVFBBVEhf U0hBUkVEX0xJQlM9XCIvdXNyL2xvY2FsL2xpYi92aXJ0dWFsYm94XCIgLURSVFBBVEhfQVBQX0RP Q1M9XCIvdXNyL2xvY2FsL3NoYXJlL2RvYy92aXJ0dWFsYm94XCIgLURSVF9PU19GUkVFQlNEIC1E X19GUkVFQlNEX18gLURSVF9BUkNIX1g4NiAtRF9fWDg2X18gLURfS0VSTkVMIC1ES0xEX01PRFVM RSAtRElOX1JJTkcwIC1ESU5fUlRfUjAgLURJTl9SVF9SMCAtRFJUX1dJVEhfVkJPWCAtRFJUX1dJ VEhPVVRfTk9DUlRfV1JBUFBFUlMgLURSVF9OT19FWFBPUlRfU1lNQk9MIC1XcCwtTUQsL3Vzci9w b3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL291 dC9mcmVlYnNkLng4Ni9yZWxlYXNlL29iai9SdW50aW1lUjBEcnYvcjBkcnYvZnJlZWJzZC9hbGxv Yy1yMGRydi1mcmVlYnNkLm8uZGVwIC1XcCwtTVQsL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVh bGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL291dC9mcmVlYnNkLng4Ni9yZWxlYXNl L29iai9SdW50aW1lUjBEcnYvcjBkcnYvZnJlZWJzZC9hbGxvYy1yMGRydi1mcmVlYnNkLm8gLVdw LC1NUCAtbyAvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJveC0z LjAuNTFyMjI5MDIvb3V0L2ZyZWVic2QueDg2L3JlbGVhc2Uvb2JqL1J1bnRpbWVSMERydi9yMGRy di9mcmVlYnNkL2FsbG9jLXIwZHJ2LWZyZWVic2QubyAvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0 dWFsYm94L3dvcmsvdmlydHVhbGJveC0zLjAuNTFyMjI5MDIvc3JjL1ZCb3gvUnVudGltZS9yMGRy di9mcmVlYnNkL2FsbG9jLXIwZHJ2LWZyZWVic2QuYw0Ka21rWzJdOiAqKiogV2FpdGluZyBmb3Ig dW5maW5pc2hlZCBqb2JzLi4uLg0KSW4gZmlsZSBpbmNsdWRlZCBmcm9tIC91c3IvcG9ydHMvZW11 bGF0b3JzL3ZpcnR1YWxib3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMi9zcmMvVkJveC9S dW50aW1lL3IwZHJ2L2ZyZWVic2QvdGhlLWZyZWVic2Qta2VybmVsLmg6NjAsDQogICAgICAgICAg ICAgICAgIGZyb20gL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxi b3gtMy4wLjUxcjIyOTAyL3NyYy9WQm94L1J1bnRpbWUvcjBkcnYvZnJlZWJzZC9hc3NlcnQtcjBk cnYtZnJlZWJzZC5jOjM0Og0KL3N5cy92bS92bS5oOjY0OjI0OiBlcnJvcjogbWFjaGluZS92bS5o OiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5DQprbWtbMl06ICoqKiBbL3Vzci9wb3J0cy9lbXVs YXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL291dC9mcmVlYnNk Lng4Ni9yZWxlYXNlL29iai9SdW50aW1lUjBEcnYvcjBkcnYvZnJlZWJzZC9hc3NlcnQtcjBkcnYt ZnJlZWJzZC5vXSBFcnJvciAxDQpUaGUgZmFpbGluZyBjb21tYW5kOg0KQGNjIC1jIC1PMiAtV2Fs bCAtV2V4dHJhIC1Xbm8tbWlzc2luZy1maWVsZC1pbml0aWFsaXplcnMgLVduby11bnVzZWQgLVdu by10cmlncmFwaHMgLVdwb2ludGVyLWFyaXRoIC1XaW5saW5lIC1Xbm8tcG9pbnRlci1zaWduIC1X c3RyaWN0LXByb3RvdHlwZXMgLVdtaXNzaW5nLXByb3RvdHlwZXMgLVdzdHJpY3QtcHJvdG90eXBl cyAtV25lc3RlZC1leHRlcm5zIC1PMiAtZmZvcm1hdC1leHRlbnNpb25zIC1mZnJlZXN0YW5kaW5n IC1mbm8tc3RyaWN0LWFsaWFzaW5nIC1mbm8tY29tbW9uIC1maW5saW5lLWxpbWl0PTgwMDAgLWZu by1zdGFjay1wcm90ZWN0b3IgLU8yIC1tdHVuZT1nZW5lcmljIC1mbm8tb21pdC1mcmFtZS1wb2lu dGVyIC1ub3N0ZGluYyAtc3RkPWM5OSAtbTMyIC1tbm8tYWxpZ24tbG9uZy1zdHJpbmdzIC1tcHJl ZmVycmVkLXN0YWNrLWJvdW5kYXJ5PTIgLW1uby1tbXggLW1uby0zZG5vdyAtbW5vLXNzZSAtbW5v LXNzZTIgLUkvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJveC0z LjAuNTFyMjI5MDIvb3V0L2ZyZWVic2QueDg2L3JlbGVhc2UvZ2VuLXN5cy1oZHJzIC1JL3Vzci9w b3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL3Ny Yy9WQm94L1J1bnRpbWUgLUkvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmly dHVhbGJveC0zLjAuNTFyMjI5MDIvc3JjL1ZCb3gvUnVudGltZS9pbmNsdWRlIC1JL3N5cyAtSS9z eXMvY29udHJpYi9hbHRxIC1JL3N5cy8uLi9pbmNsdWRlIC1JL3Vzci9pbmNsdWRlIC1JL3Vzci9w b3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL2lu Y2x1ZGUgLUkvdXNyL3BvcnRzL2VtdWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJveC0z LjAuNTFyMjI5MDIvb3V0L2ZyZWVic2QueDg2L3JlbGVhc2UgLURWQk9YIC1EVkJPWF9PU0UgLURW Qk9YX1dJVEhfNjRfQklUU19HVUVTVFMgLURWQk9YX1dJVEhfSEFSREVOSU5HIC1EUlRQQVRIX0FQ UF9QUklWQVRFPVwiL3Vzci9sb2NhbC9zaGFyZS92aXJ0dWFsYm94XCIgLURSVFBBVEhfQVBQX1BS SVZBVEVfQVJDSD1cIi91c3IvbG9jYWwvbGliL3ZpcnR1YWxib3hcIiAtRFJUUEFUSF9TSEFSRURf TElCUz1cIi91c3IvbG9jYWwvbGliL3ZpcnR1YWxib3hcIiAtRFJUUEFUSF9BUFBfRE9DUz1cIi91 c3IvbG9jYWwvc2hhcmUvZG9jL3ZpcnR1YWxib3hcIiAtRFJUX09TX0ZSRUVCU0QgLURfX0ZSRUVC U0RfXyAtRFJUX0FSQ0hfWDg2IC1EX19YODZfXyAtRF9LRVJORUwgLURLTERfTU9EVUxFIC1ESU5f UklORzAgLURJTl9SVF9SMCAtRElOX1JUX1IwIC1EUlRfV0lUSF9WQk9YIC1EUlRfV0lUSE9VVF9O T0NSVF9XUkFQUEVSUyAtRFJUX05PX0VYUE9SVF9TWU1CT0wgLVdwLC1NRCwvdXNyL3BvcnRzL2Vt dWxhdG9ycy92aXJ0dWFsYm94L3dvcmsvdmlydHVhbGJveC0zLjAuNTFyMjI5MDIvb3V0L2ZyZWVi c2QueDg2L3JlbGVhc2Uvb2JqL1J1bnRpbWVSMERydi9yMGRydi9mcmVlYnNkL2Fzc2VydC1yMGRy di1mcmVlYnNkLm8uZGVwIC1XcCwtTVQsL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93 b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIyOTAyL291dC9mcmVlYnNkLng4Ni9yZWxlYXNlL29iai9S dW50aW1lUjBEcnYvcjBkcnYvZnJlZWJzZC9hc3NlcnQtcjBkcnYtZnJlZWJzZC5vIC1XcCwtTVAg LW8gL3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUx cjIyOTAyL291dC9mcmVlYnNkLng4Ni9yZWxlYXNlL29iai9SdW50aW1lUjBEcnYvcjBkcnYvZnJl ZWJzZC9hc3NlcnQtcjBkcnYtZnJlZWJzZC5vIC91c3IvcG9ydHMvZW11bGF0b3JzL3ZpcnR1YWxi b3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMi9zcmMvVkJveC9SdW50aW1lL3IwZHJ2L2Zy ZWVic2QvYXNzZXJ0LXIwZHJ2LWZyZWVic2QuYw0Ka21rWzJdOiBMZWF2aW5nIGRpcmVjdG9yeSBg L3Vzci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC93b3JrL3ZpcnR1YWxib3gtMy4wLjUxcjIy OTAyJw0Ka21rWzJdOiBFbnRlcmluZyBkaXJlY3RvcnkgYC91c3IvcG9ydHMvZW11bGF0b3JzL3Zp cnR1YWxib3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMicNCmtta1syXTogKioqIEV4aXRp bmcgd2l0aCBzdGF0dXMgMg0Ka21rWzFdOiAqKiogW3Bhc3NfbGlicmFyaWVzX3RoaXNdIEVycm9y IDINCmtta1sxXTogTGVhdmluZyBkaXJlY3RvcnkgYC91c3IvcG9ydHMvZW11bGF0b3JzL3ZpcnR1 YWxib3gvd29yay92aXJ0dWFsYm94LTMuMC41MXIyMjkwMicNCmttazogKioqIFtwYXNzX2xpYnJh cmllc19vcmRlcl0gRXJyb3IgMg0KKioqIEVycm9yIGNvZGUgMg0KDQpTdG9wIGluIC91c3IvcG9y dHMvZW11bGF0b3JzL3ZpcnR1YWxib3guDQoqKiogRXJyb3IgY29kZSAxDQoNClN0b3AgaW4gL3Vz ci9wb3J0cy9lbXVsYXRvcnMvdmlydHVhbGJveC4NClBpY2Fzc28jIF5ECAhleGl0DQoKU2NyaXB0 IGRvbmUgb24gTW9uIFNlcCAxNCAwOTozNjowNCAyMDA5Cg== --MP_/X=MIRu=qE9ijTNttOFqfGFN-- From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 10:20: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 90C611065694 for ; Mon, 14 Sep 2009 10:20: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 26D7D8FC13 for ; Mon, 14 Sep 2009 10:20:42 +0000 (UTC) Received: from bb.ipt.ru ([194.62.233.89]) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1Mn8fp-000DcF-CJ; Mon, 14 Sep 2009 14:20:41 +0400 From: Boris Samorodov To: mva@FreeBSD.org, sean-freebsd@farley.org, acm@FreeBSD.org, hernan.di.pietro@gmail.com Date: Mon, 14 Sep 2009 14:20:42 +0400 Message-ID: <80173957@bb.ipt.ru> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@FreeBSD.org Subject: changes in linux ports infrastructure 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, 14 Sep 2009 10:20:43 -0000 Dear linux ports maintainers, I've just committed a new graphics/linux-f10-libGLU port and apropriate changes to linux ports infrastructure. I'm going to commit the following patch which uses the new port and its infrastructure. The main goal is to give users of linux nvidia drivers to use more recent libGLU packages. Those changes do not touch default packages but imho it will be good to commit the patch before 8.0-RELEASE. Please, give it a try and submit a followup. Thanks! ----- Index: games/linux-coldwar-demo/Makefile =================================================================== RCS file: /home/pcvs/ports/games/linux-coldwar-demo/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- games/linux-coldwar-demo/Makefile 7 Jun 2009 15:23:52 -0000 1.4 +++ games/linux-coldwar-demo/Makefile 14 Sep 2009 09:42:24 -0000 @@ -31,8 +31,8 @@ .include .if defined(WITH_NVIDIA) -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu .else USE_LINUX_APPS+=dri .endif Index: games/linux-darwinia-demo/Makefile =================================================================== RCS file: /home/pcvs/ports/games/linux-darwinia-demo/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- games/linux-darwinia-demo/Makefile 7 Jun 2009 15:23:52 -0000 1.5 +++ games/linux-darwinia-demo/Makefile 14 Sep 2009 09:42:24 -0000 @@ -31,8 +31,8 @@ .include .if defined(WITH_NVIDIA) -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu .else USE_LINUX_APPS+=dri .endif Index: games/linux-defcon/Makefile =================================================================== RCS file: /home/pcvs/ports/games/linux-defcon/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- games/linux-defcon/Makefile 7 Jun 2009 15:23:52 -0000 1.4 +++ games/linux-defcon/Makefile 14 Sep 2009 09:42:24 -0000 @@ -29,8 +29,8 @@ .include .if defined(WITH_NVIDIA) -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu .else USE_LINUX_APPS+=dri .endif Index: games/linux-gorky17-demo/Makefile =================================================================== RCS file: /home/pcvs/ports/games/linux-gorky17-demo/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- games/linux-gorky17-demo/Makefile 7 Jun 2009 15:23:53 -0000 1.4 +++ games/linux-gorky17-demo/Makefile 14 Sep 2009 09:42:24 -0000 @@ -32,8 +32,8 @@ .include .if defined(WITH_NVIDIA) -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu .else USE_LINUX_APPS+=dri .endif Index: games/linux-nwnclient/Makefile =================================================================== RCS file: /home/pcvs/ports/games/linux-nwnclient/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- games/linux-nwnclient/Makefile 7 Jun 2009 15:23:53 -0000 1.18 +++ games/linux-nwnclient/Makefile 14 Sep 2009 09:42:24 -0000 @@ -20,8 +20,8 @@ RUN_DEPENDS= ${LOCALBASE}/share/nwndata/NWNv129.txt:${PORTSDIR}/games/nwndata .ifdef WITH_NVIDIA_GL -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu .else USE_LINUX_APPS+=dri .endif Index: games/linux-savage/Makefile =================================================================== RCS file: /home/pcvs/ports/games/linux-savage/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- games/linux-savage/Makefile 7 Jun 2009 15:23:53 -0000 1.9 +++ games/linux-savage/Makefile 14 Sep 2009 09:42:24 -0000 @@ -40,8 +40,8 @@ .if defined(WITH_NVIDIA_GL) . if !exists(${LINUXBASE}/usr/X11R6/lib/libGL.so.1) -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu . endif .else USE_LINUX_APPS+=dri Index: games/linux-savage-samuraiwars/Makefile =================================================================== RCS file: /home/pcvs/ports/games/linux-savage-samuraiwars/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- games/linux-savage-samuraiwars/Makefile 7 Jun 2009 15:23:53 -0000 1.3 +++ games/linux-savage-samuraiwars/Makefile 14 Sep 2009 09:42:24 -0000 @@ -39,8 +39,8 @@ .if defined(WITH_NVIDIA_GL) . if !exists(${LINUXBASE}/usr/X11R6/lib/libGL.so.1) -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu . endif .else USE_LINUX_APPS+=dri Index: games/linux-uplink-demo/Makefile =================================================================== RCS file: /home/pcvs/ports/games/linux-uplink-demo/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- games/linux-uplink-demo/Makefile 7 Jun 2009 15:23:54 -0000 1.5 +++ games/linux-uplink-demo/Makefile 14 Sep 2009 09:42:24 -0000 @@ -34,8 +34,8 @@ .include .if defined(WITH_NVIDIA) -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu .else USE_LINUX_APPS+=dri .endif Index: graphics/linux-ac3d/Makefile =================================================================== RCS file: /home/pcvs/ports/graphics/linux-ac3d/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- graphics/linux-ac3d/Makefile 7 Jun 2009 15:23:54 -0000 1.25 +++ graphics/linux-ac3d/Makefile 14 Sep 2009 09:42:24 -0000 @@ -19,8 +19,8 @@ COMMENT= Easy to use and powerful 3D graphics modeller (trial version) .ifdef(WITH_NVIDIA_GL) -RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver \ - ${LINUXBASE}/usr/X11R6/lib/libGLU.so.1:${PORTSDIR}/graphics/linux-libGLU +RUN_DEPENDS+= ${LINUXBASE}/usr/lib/libGL.so.1:${PORTSDIR}/x11/nvidia-driver +USE_LINUX_APPS+=libglu .else USE_LINUX_APPS+=dri .endif ----- -- WBR, Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 10:30:06 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 721F31065693 for ; Mon, 14 Sep 2009 10:30:06 +0000 (UTC) (envelope-from freebsd-emulation@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 29A0C8FC08 for ; Mon, 14 Sep 2009 10:30:05 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.50) id 1Mn8ot-0007Dz-N2 for freebsd-emulation@freebsd.org; Mon, 14 Sep 2009 12:30:03 +0200 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Sep 2009 12:30:03 +0200 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Sep 2009 12:30:03 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-emulation@freebsd.org From: Ivan Voras Date: Mon, 14 Sep 2009 12:25:28 +0200 Lines: 31 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.22 (X11/20090817) In-Reply-To: Sender: news Subject: Re: New Virtualbox port (from today) 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, 14 Sep 2009 10:30:06 -0000 Nenhum_de_Nos wrote: > On Fri, September 11, 2009 11:07, Ivan Voras wrote: >> Hi, >> >> VirtualBox now works with VT and I'm able to run SMP guests! >> >> But apparently it's not very stable (got two boot crashes) and something >> is wrong with timers: > > in my testes, I never got so far as a boot when using any 8.x > >> Example 1: host HZ=250, guest HZ=1000, - guest time apparently speeds up >> more than it should >> >> Example 2: same host, guest HZ=100 - guest time apparently goes 5x >> slower than real (wall) time. >> >> Example 3: same host, guest HZ=25, guest time apparently 2x slower than >> real (wall) time. >> >> In the examples, host is amd64 8-BETA2, 4CPU, guest is 7.2-RELEASE i386, >> 2CPU. > > I tried on a quite close system. intel or amd yours ? Intel. > maybe its time to try again. my system was built from scratch. any > particular tip ? No, nothing unusual or specially configured, except HZ. From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 10:42:19 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 F0DFD1065676 for ; Mon, 14 Sep 2009 10:42:19 +0000 (UTC) (envelope-from freebsd-emulation@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id AFD768FC08 for ; Mon, 14 Sep 2009 10:42:19 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.50) id 1Mn90k-0003MP-J1 for freebsd-emulation@freebsd.org; Mon, 14 Sep 2009 12:42:18 +0200 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Sep 2009 12:42:18 +0200 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Sep 2009 12:42:18 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-emulation@freebsd.org From: Ivan Voras Date: Mon, 14 Sep 2009 12:41:55 +0200 Lines: 4 Message-ID: References: <4AAD95C2.7040907@kc8onw.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.22 (X11/20090817) In-Reply-To: <4AAD95C2.7040907@kc8onw.net> Sender: news Subject: Re: Virtualbox and VRDP 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, 14 Sep 2009 10:42:20 -0000 Hi, The last build (virtualbox-3.0.51.r22902) apparently doesn't allow me to start two VMs - the second one always fails with "out of memory". From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 11:06: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 B62551065693 for ; Mon, 14 Sep 2009 11:06:57 +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 A434E8FC17 for ; Mon, 14 Sep 2009 11:06:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n8EB6viX072290 for ; Mon, 14 Sep 2009 11:06:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n8EB6vXc072286 for freebsd-emulation@FreeBSD.org; Mon, 14 Sep 2009 11:06:57 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 14 Sep 2009 11:06:57 GMT Message-Id: <200909141106.n8EB6vXc072286@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, 14 Sep 2009 11:06:57 -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/137332 emulation add caution messages to some adobe products f 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/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 Sep 14 12:08:24 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 30319106566B for ; Mon, 14 Sep 2009 12:08:24 +0000 (UTC) (envelope-from freebsd-emulation@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id DFBF48FC13 for ; Mon, 14 Sep 2009 12:08:23 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.50) id 1MnAM3-0008Ew-4v for freebsd-emulation@freebsd.org; Mon, 14 Sep 2009 14:08:23 +0200 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Sep 2009 14:08:23 +0200 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Sep 2009 14:08:23 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-emulation@freebsd.org From: Ivan Voras Date: Mon, 14 Sep 2009 14:08:15 +0200 Lines: 7 Message-ID: References: <4AAD95C2.7040907@kc8onw.net> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.22 (X11/20090817) In-Reply-To: Sender: news Subject: Re: Virtualbox and VRDP 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, 14 Sep 2009 12:08:24 -0000 Ivan Voras wrote: > Hi, > > The last build (virtualbox-3.0.51.r22902) apparently doesn't allow me to > start two VMs - the second one always fails with "out of memory". Sorry, responded to the wrong post :( From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 12:21:25 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 E275E106568F for ; Mon, 14 Sep 2009 12:21:25 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao106.cox.net (eastrmmtao106.cox.net [68.230.240.48]) by mx1.freebsd.org (Postfix) with ESMTP id 74D6C8FC15 for ; Mon, 14 Sep 2009 12:21:25 +0000 (UTC) Received: from eastrmimpo03.cox.net ([68.1.16.126]) by eastrmmtao106.cox.net (InterMail vM.8.00.01.00 201-2244-105-20090324) with ESMTP id <20090914122124.SHUK19495.eastrmmtao106.cox.net@eastrmimpo03.cox.net>; Mon, 14 Sep 2009 08:21:24 -0400 Received: from localhost ([68.103.37.153]) by eastrmimpo03.cox.net with bizsmtp id gcMQ1c0083JFCbG02cMQCP; Mon, 14 Sep 2009 08:21:24 -0400 X-VR-Score: -260.00 X-Authority-Analysis: v=1.0 c=1 a=phosoefUKIwA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=4okmdLwnGTJ6-ggBKTkA:9 a=5VIwHg5g7YS8liBJmwLtG5pjZPkA:4 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 X-CM-Score: 0.00 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: "Boris Samorodov" References: <86iqfn6gfz.fsf@ahab.tihnet> <76660667@bb.ipt.ru> Date: Mon, 14 Sep 2009 07:23:45 -0500 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: "Jeremy Messenger" Message-ID: In-Reply-To: <76660667@bb.ipt.ru> User-Agent: Opera Mail/10.00 (Linux) Cc: emulation@freebsd.org Subject: Re: ports/138752: www/linux-opera does not start 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, 14 Sep 2009 12:21:26 -0000 On Mon, 14 Sep 2009 01:56:36 -0500, Boris Samorodov wrote: > On Sat, 12 Sep 2009 17:34:27 -0500 Jeremy Messenger wrote: > >> BTW: Add emulation@ in the CC for they can correct me if I said >> anything wrong with Linux emulation stuff related. > > Jeremy, you are perfectly correct. > > However, I'll advise against other linux base ports than -fc4, > -f8 and -f10. The latter ports have all needed linux infrastructure > ports. Ok, it means that it's best for me to put USE_LINUX=f8 in there instead of f6 or f7. Will it still be able to use f10 if user wants it to be? I don't see anything to add '+' in the document something like USE_LINUX=f8+. > A note: I'll commit the last one for -f10- soon as it has been > just repocopied (it's a graphics/linux-f10-libGLU port). Sounds good. Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 12:30:59 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 1AED1106566C for ; Mon, 14 Sep 2009 12:30:59 +0000 (UTC) (envelope-from Gabor@Zahemszky.HU) Received: from relay01.digicable.hu (relay01.digicable.hu [92.249.128.189]) by mx1.freebsd.org (Postfix) with ESMTP id CDB728FC15 for ; Mon, 14 Sep 2009 12:30:58 +0000 (UTC) Received: from [94.21.14.106] (helo=Picasso.Zahemszky.HU) by relay01.digicable.hu with esmtpa id 1MnAht-0004Jl-Te for ; Mon, 14 Sep 2009 14:30:58 +0200 Date: Mon, 14 Sep 2009 14:30:57 +0200 From: Zahemszky =?ISO-8859-2?Q?G=E1bor?= To: freebsd-emulation@freebsd.org Message-ID: <20090914143057.49808881@Picasso.Zahemszky.HU> Organization: Zahemszky Bt. X-Mailer: Claws Mail 3.7.2 (GTK+ 2.16.6; i386-portbld-freebsd7.2) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable X-Original: 94.21.14.106 Subject: Re: virtualbox cannot compile 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, 14 Sep 2009 12:30:59 -0000 Mon, 14 Sep 2009 13:26:02 +0200 -n Gary Jennejohn =EDrta: > On Mon, 14 Sep 2009 09:48:05 +0200 > Zahemszky G__bor (by way of Zahemszky G__bor > ) wrote: >=20 > > I've got a problem with the (last two) recent version(s) of the > > emulators/virtualbox port, as I cannot compile it. It fails with a: > >=20 > > 02/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c:34: > > /sys/vm/vm.h:64:24: error: machine/vm.h: No such file or directory > >=20 > > error message. The previous version failed with the same problem. > >=20 >=20 > Have you generated a kernel lately? I believe machine is a symbolic > link which is created when you make a kernel, but I might be wrong. >=20 > Om my box I > have: /usr/obj/usr/src/sys/amd64/machine > -> /usr/src/sys/amd64/include Hm. Interesting: I've generated kernels in the not too past. But. I use i386, and not amd64, and GENERIC kernel on it. I have /usr/obj/usr/src/sys/ and in it, GENERIC and boot directory. And I have GENERIC/machine/vm.h in it. So I think, some configuration steps have some problems. Zahy < Gabor at Zahemszky dot HU > --=20 #!/bin/ksh Z=3D'21N16I25C25E30, 40M30E33E25T15U!'; IFS=3D' ABCDEFGHIJKLMNOPQRSTUVWXYZ '; set -- $Z;for i;{ [[ $i =3D ? ]]&&print $i&&break; [[ $i =3D ??? ]]&&j=3D$i&&i=3D${i%?}; typeset -i40 i=3D8#$i;print -n ${i#???}; [[ "$j" =3D ??? ]]&&print -n "${j#??} "&&j=3D;typeset +i i;}; IFS=3D' 0123456789 ';set -- $Z;for i;{ [[ $i =3D , ]]&&i=3D2; [[ $i =3D ?? ]]||typeset -l i;j=3D"$j $i";typeset +l i;};print "$j" From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 13:29:04 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 1033) id 27A5E1065695; Mon, 14 Sep 2009 13:29:04 +0000 (UTC) Date: Mon, 14 Sep 2009 13:29:04 +0000 From: Alexey Dokuchaev To: Boris Samorodov Message-ID: <20090914132904.GA78522@FreeBSD.org> References: <90953406@bb.ipt.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <90953406@bb.ipt.ru> User-Agent: Mutt/1.4.2.1i Cc: freebsd-emulation@freebsd.org Subject: Re: linux GL libraries and nvidia drivers (was: Re: deprecate some linux ports) 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, 14 Sep 2009 13:29:04 -0000 On Thu, Sep 10, 2009 at 10:47:45AM +0400, Boris Samorodov wrote: > BTW, I can create a linux-f10-libGLU port if it is needed. But I'm > not sure if it is needed. > > If I understand the problem with nvidia driver correctly it > installs (and uses) its own linux libGL.so. Hence the problem is > not with libGLU.so but with libGL.so. Correct me if I'm wrong. You're right. > > What if I create a new (say) linux--libGL port with only > libGL libraries and remove them from linux--dri port? > The latter will depend on linux--libGL port. That would probably be ideal. I've seen you committed f10-libGL so I'll play with it and get back to you soon. Thanks! ./danfe From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 13: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 484D71065670 for ; Mon, 14 Sep 2009 13:38:04 +0000 (UTC) (envelope-from gary.jennejohn@freenet.de) Received: from mout3.freenet.de (mout3.freenet.de [IPv6:2001:748:100:40::2:5]) by mx1.freebsd.org (Postfix) with ESMTP id A84CD8FC15 for ; Mon, 14 Sep 2009 13:38:03 +0000 (UTC) Received: from [195.4.92.24] (helo=14.mx.freenet.de) by mout3.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #92) id 1MnBkn-0005Wg-Jl; Mon, 14 Sep 2009 15:38:01 +0200 Received: from tcce1.t.pppool.de ([89.55.204.225]:56789 helo=ernst.jennejohn.org) by 14.mx.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #94) id 1MnBkn-0001qP-5u; Mon, 14 Sep 2009 15:38:01 +0200 Date: Mon, 14 Sep 2009 15:38:00 +0200 From: Gary Jennejohn To: Zahemszky =?ISO-8859-1?Q?G=E1bor?= Message-ID: <20090914153800.38fb8e7a@ernst.jennejohn.org> In-Reply-To: <20090914142916.31e69226@Picasso.Zahemszky.HU> References: <20090914094805.47a01eab@Picasso.Zahemszky.HU> <20090914132602.79faca57@ernst.jennejohn.org> <20090914142916.31e69226@Picasso.Zahemszky.HU> 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 Cc: freebsd-emulation@freebsd.org Subject: Re: virtualbox cannot compile 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, 14 Sep 2009 13:38:04 -0000 On Mon, 14 Sep 2009 14:29:16 +0200 Zahemszky G__bor wrote: > Mon, 14 Sep 2009 13:26:02 +0200 -n > Gary Jennejohn __rta: > > > On Mon, 14 Sep 2009 09:48:05 +0200 > > Zahemszky G__bor (by way of Zahemszky G__bor > > ) wrote: > > > > > I've got a problem with the (last two) recent version(s) of the > > > emulators/virtualbox port, as I cannot compile it. It fails with a: > > > > > > 02/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c:34: > > > /sys/vm/vm.h:64:24: error: machine/vm.h: No such file or directory > > > > > > error message. The previous version failed with the same problem. > > > > > > > Have you generated a kernel lately? I believe machine is a symbolic > > link which is created when you make a kernel, but I might be wrong. > > > > Om my box I > > have: /usr/obj/usr/src/sys/amd64/machine > > -> /usr/src/sys/amd64/include > > Hm. Interesting: I've generated kernels in the not too past. But. I use > i386, and not amd64, and GENERIC kernel on it. I > have /usr/obj/usr/src/sys/ and in it, GENERIC and boot directory. And I > have GENERIC/machine/vm.h in it. So I think, some configuration steps > have some problems. > I just compiled the latest svn stuff and it also fails (copy&paste => long lines): kBuild: Compiling vboxnetflt - /oldzfs/virtualbox/work/virtualbox-3.0.51r22902/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-freebsd.c In file included from /oldzfs/virtualbox/work/virtualbox-3.0.51r22902/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-freebsd.c:43: /sys/sys/socket.h:39:28: error: machine/_align.h: No such file or directory kmk[2]: *** [/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release/obj/vboxnetflt/freebsd/VBoxNetFlt-freebsd.o] Error 1 The failing command: @cc -c -O2 -Wall -Wextra -Wno-missing-field-initializers -Wno-unused -Wno-trigraphs -Wpointer-arith -Winline -Wno-pointer-sign -Wstrict-prototypes -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs -O2 -fformat-extensions -ffreestanding -fno-strict-aliasing -fno-common -finline-limit=8000 -fno-stack-protector -O2 -mtune=generic -fno-omit-frame-pointer -nostdinc -std=c99 -m64 --param inline-unit-growth=100 --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float -fno-asynchronous-unwind-tables -Wundef -I/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/src/VBox/HostDrivers/VBoxNetFlt -I/sys -I/sys/contrib/altq -I/sys/../include -I/usr/include -I/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/include -I/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox\" -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -D_KERNEL -DKLD_MODULE -DIN_RING0 -DIN_RT_R0 -DIN_RT_R0 -Wp,-MD,/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release/obj/vboxnetflt/freebsd/VBoxNetFlt-freebsd.o.dep -Wp,-MT,/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release/obj/vboxnetflt/freebsd/VBoxNetFlt-freebsd.o -Wp,-MP -o /oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release/obj/vboxnetflt/freebsd/VBoxNetFlt-freebsd.o /oldzfs/virtualbox/work/virtualbox-3.0.51r22902/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-freebsd.c Definitely looks like there's a bug in the new networking stuff. --- Gary Jennejohn From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 14:21: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 E6142106566C for ; Mon, 14 Sep 2009 14:21:12 +0000 (UTC) (envelope-from freebsd-emulation@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id A0C028FC0A for ; Mon, 14 Sep 2009 14:21:11 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.50) id 1MnCQY-00029S-PX for freebsd-emulation@freebsd.org; Mon, 14 Sep 2009 16:21:10 +0200 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Sep 2009 16:21:10 +0200 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 14 Sep 2009 16:21:10 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-emulation@freebsd.org From: Ivan Voras Date: Mon, 14 Sep 2009 16:21:03 +0200 Lines: 5 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.22 (X11/20090817) In-Reply-To: Sender: news Subject: Re: New Virtualbox port (from today) 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, 14 Sep 2009 14:21:13 -0000 Hi, It looks like the timer problem is solved with the recent port (virtualbox-3.0.51.r22902) but now I cannot start more than one VM - the error is VERR_NO_MEMORY (there certainly is enough free memory). From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 14:50:21 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 8D6B8106566B for ; Mon, 14 Sep 2009 14:50:21 +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 478748FC12 for ; Mon, 14 Sep 2009 14:50:20 +0000 (UTC) Received: from bb.ipt.ru ([194.62.233.89]) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1MnCsl-000H02-Pv; Mon, 14 Sep 2009 18:50:19 +0400 From: Boris Samorodov To: "Jeremy Messenger" References: <86iqfn6gfz.fsf@ahab.tihnet> <76660667@bb.ipt.ru> Date: Mon, 14 Sep 2009 18:50:20 +0400 In-Reply-To: (Jeremy Messenger's message of "Mon, 14 Sep 2009 07:23:45 -0500") Message-ID: <80174211@bb.ipt.ru> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: emulation@freebsd.org Subject: Re: ports/138752: www/linux-opera does not start 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, 14 Sep 2009 14:50:21 -0000 On Mon, 14 Sep 2009 07:23:45 -0500 Jeremy Messenger wrote: > On Mon, 14 Sep 2009 01:56:36 -0500, Boris Samorodov wrote: > > On Sat, 12 Sep 2009 17:34:27 -0500 Jeremy Messenger wrote: > > > >> BTW: Add emulation@ in the CC for they can correct me if I said > >> anything wrong with Linux emulation stuff related. > > > > Jeremy, you are perfectly correct. > > > > However, I'll advise against other linux base ports than -fc4, > > -f8 and -f10. The latter ports have all needed linux infrastructure > > ports. > Ok, it means that it's best for me to put USE_LINUX=f8 in there > instead of f6 or f7. USE_LINUX does nor support it. I mean there is no possibility to define a linux distro ATM. The only option is to use USE_LINUX=yes. The only way is to check for OSVERSION and if OVERRIDE_LINUX_NONBASE_PORTS is defined. You may look at emulators/linux-systemsimcell for an examples. > Will it still be able to use f10 if user wants it > to be? I don't see anything to add '+' in the document something like > USE_LINUX=f8+. Yes, no one including me have written such support so far. -- WBR, Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 14:53:24 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 DE1E01065782; Mon, 14 Sep 2009 14:53:24 +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 97A628FC12; Mon, 14 Sep 2009 14:53:24 +0000 (UTC) Received: from bb.ipt.ru ([194.62.233.89]) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1MnCvj-000H2k-Ms; Mon, 14 Sep 2009 18:53:23 +0400 From: Boris Samorodov To: Alexey Dokuchaev References: <90953406@bb.ipt.ru> <20090914132904.GA78522@FreeBSD.org> Date: Mon, 14 Sep 2009 18:53:24 +0400 In-Reply-To: <20090914132904.GA78522@FreeBSD.org> (Alexey Dokuchaev's message of "Mon, 14 Sep 2009 13:29:04 +0000") Message-ID: <98098491@bb.ipt.ru> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@freebsd.org Subject: Re: linux GL libraries and nvidia drivers 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, 14 Sep 2009 14:53:24 -0000 On Mon, 14 Sep 2009 13:29:04 +0000 Alexey Dokuchaev wrote: > On Thu, Sep 10, 2009 at 10:47:45AM +0400, Boris Samorodov wrote: > > What if I create a new (say) linux--libGL port with only > > libGL libraries and remove them from linux--dri port? > > The latter will depend on linux--libGL port. > That would probably be ideal. I've seen you committed f10-libGL so I'll > play with it and get back to you soon. I didn't remove libGL, just mark those ports CONFLICTS. Seems that it is a best choice just before a release. -- WBR, Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD Committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 15:55: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 9B209106566C for ; Mon, 14 Sep 2009 15:55:45 +0000 (UTC) (envelope-from dan@dan.emsphone.com) Received: from email2.allantgroup.com (email2.emsphone.com [199.67.51.116]) by mx1.freebsd.org (Postfix) with ESMTP id 5BB3A8FC18 for ; Mon, 14 Sep 2009 15:55:45 +0000 (UTC) Received: from dan.emsphone.com (dan.emsphone.com [199.67.51.101]) by email2.allantgroup.com (8.14.0/8.14.0) with ESMTP id n8EFti5v085874 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 14 Sep 2009 10:55:44 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: from dan.emsphone.com (smmsp@localhost [127.0.0.1]) by dan.emsphone.com (8.14.3/8.14.3) with ESMTP id n8EFtisK039297 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 14 Sep 2009 10:55:44 -0500 (CDT) (envelope-from dan@dan.emsphone.com) Received: (from dan@localhost) by dan.emsphone.com (8.14.3/8.14.3/Submit) id n8EFthJb039290; Mon, 14 Sep 2009 10:55:43 -0500 (CDT) (envelope-from dan) Date: Mon, 14 Sep 2009 10:55:43 -0500 From: Dan Nelson To: Bernhard Froehlich Message-ID: <20090914155543.GA40881@dan.emsphone.com> References: <4AAD95C2.7040907@kc8onw.net> <29e884c4b57123a181fb162710e6d1d0.squirrel@webmail.itac.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <29e884c4b57123a181fb162710e6d1d0.squirrel@webmail.itac.at> X-OS: FreeBSD 7.2-STABLE User-Agent: Mutt/1.5.20 (2009-06-14) X-Virus-Scanned: ClamAV version 0.94.2, clamav-milter version 0.94.2 on email2.allantgroup.com X-Virus-Status: Clean X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (email2.allantgroup.com [199.67.51.78]); Mon, 14 Sep 2009 10:55:44 -0500 (CDT) X-Scanned-By: MIMEDefang 2.45 Cc: freebsd-emulation@freebsd.org Subject: Re: Virtualbox and VRDP 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, 14 Sep 2009 15:55:45 -0000 In the last episode (Sep 14), Bernhard Froehlich said: > On Mon, September 14, 2009 3:00 am, Jonathan wrote: > > I just installed virtualbox on my server without X11 support intending > > to run it headless and now I find that the Virtual Remote Display > > Protocol support is only available in the closed source version. The > > virtualbox Editions page says that some of the closed source features > > may eventually become available in the open source version as well, has > > anyone heard anything about this happening for VRDP? > > > > Are there any other options that would allow me to set up a VM remotely > > without installing X? I suppose I could set up a VM locally and then > > copy it to my server once it's configured for remote ssh access but that > > would involve copying several GB over the internet, a rather slow > > process on my connection. > > You can setup your virtual machine with VBoxManage but installing a system > in it is rather painful without GUI. The way you described is my > preferred at the moment but you could also install with X11 and use > VBoxSDL and X11 forwarding. > > I've talked to the vbox developers and they don't think that the RDP code > will be put opensource in the foreseeable future. That's a pity because > in combination with vboxweb [0] which is a python web interface to vbox > that includes a Flash based RDP client this would be a great headless > solution. What I do is run vncserver, VNC to that virtual X11 session, then run my VirtualBox sessions under there. Maybe someone could add VNC support to vbox using libvncserver? http://sourceforge.net/projects/libvncserver/ -- Dan Nelson dnelson@allantgroup.com From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 15:58:13 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 D42D0106578A for ; Mon, 14 Sep 2009 15:58:13 +0000 (UTC) (envelope-from oberman@es.net) Received: from mailgw.es.net (mail4.es.net [IPv6:2001:400:6000:6::2]) by mx1.freebsd.org (Postfix) with ESMTP id 875128FC23 for ; Mon, 14 Sep 2009 15:58:13 +0000 (UTC) Received: from ptavv.es.net (ptavv.es.net [IPv6:2001:400:910::29]) by mailgw.es.net (8.14.3/8.14.3) with ESMTP id n8EFw8je014757 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT) for ; Mon, 14 Sep 2009 08:58:11 -0700 Received: from ptavv.es.net (ptavv.es.net [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id 5ED7B1CC37 for ; Mon, 14 Sep 2009 08:58:07 -0700 (PDT) To: emulation@freebsd.org Date: Mon, 14 Sep 2009 08:58:07 -0700 From: "Kevin Oberman" Message-Id: <20090914155807.5ED7B1CC37@ptavv.es.net> X-Proofpoint-Virus-Version: vendor=fsecure engine=1.12.8161:2.4.5, 1.2.40, 4.0.166 definitions=2009-09-11_12:2009-09-01, 2009-09-11, 2009-09-12 signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 ipscore=0 phishscore=0 bulkscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx engine=5.0.0-0908210000 definitions=main-0909140077 Cc: Subject: New network capabilities? 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, 14 Sep 2009 15:58:13 -0000 I see that the new port of VB seems to have added a couple of kernel modules that are probably network related: vboxnetadp.ko and vboxnetflt.ko. Do these provide new networking options? I have seen quite a bit of discussion of new network code on this list, but I am not sure exactly what they cover or how to use them and I don't see much on the wiki, but it looks like TAP is now available. Any clues for the clueless? -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 16:01:56 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 67E471065672; Mon, 14 Sep 2009 16:01:56 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 53C878FC0C; Mon, 14 Sep 2009 16:01:55 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id TAA03516; Mon, 14 Sep 2009 19:01:54 +0300 (EEST) (envelope-from avg@icyb.net.ua) Message-ID: <4AAE68F1.3010709@icyb.net.ua> Date: Mon, 14 Sep 2009 19:01:53 +0300 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.22 (X11/20090724) MIME-Version: 1.0 To: Ivan Voras References: In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@freebsd.org Subject: Re: New Virtualbox port (from today) 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, 14 Sep 2009 16:01:56 -0000 on 14/09/2009 17:21 Ivan Voras said the following: > Hi, > > It looks like the timer problem is solved with the recent port > (virtualbox-3.0.51.r22902) but now I cannot start more than one VM - the > error is VERR_NO_MEMORY (there certainly is enough free memory). Could this be related to a similar issue that I reported on -current? Or something too different? -- Andriy Gapon From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 16:12:01 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 30BE41065670 for ; Mon, 14 Sep 2009 16:12:01 +0000 (UTC) (envelope-from fli@shapeshifter.se) Received: from mx1.h3q.net (mx1.h3q.net [IPv6:2001:16d8:ffe5:1::f1]) by mx1.freebsd.org (Postfix) with ESMTP id E9D908FC08 for ; Mon, 14 Sep 2009 16:12:00 +0000 (UTC) Received: from smtp-auth.h3q.net (smtp-auth.h3q.net [127.0.0.1]) (Authenticated sender: hidden) by mx1.h3q.net (Postfix) with ESMTPSA id 60A0433DF8 ; Mon, 14 Sep 2009 18:11:59 +0200 (CEST) Message-ID: <4AAE6B4A.8090905@shapeshifter.se> Date: Mon, 14 Sep 2009 18:11:54 +0200 From: Fredrik Lindberg User-Agent: Thunderbird 2.0.0.23 (X11/20090912) MIME-Version: 1.0 To: Kevin Oberman References: <20090914155807.5ED7B1CC37@ptavv.es.net> In-Reply-To: <20090914155807.5ED7B1CC37@ptavv.es.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: emulation@freebsd.org Subject: Re: New network capabilities? 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, 14 Sep 2009 16:12:01 -0000 Kevin Oberman wrote: > I see that the new port of VB seems to have added a couple of kernel > modules that are probably network related: vboxnetadp.ko and > vboxnetflt.ko. > > Do these provide new networking options? I have seen quite a bit of > discussion of new network code on this list, but I am not sure exactly > what they cover or how to use them and I don't see much on the wiki, but > it looks like TAP is now available. > > Any clues for the clueless? They implement "Bridge Adapter" (vboxnetflt) and "Host-only Adapter" (vboxnetadp). Bridge is what it sounds like, it will bridge the guest interface with a physical interface. So, if you want your guest to be a part of your network, select "Bridge Adapter" and the select your physical ethernet interface in the drop-down list. Host-only adapter can be used to create a virtual network among guests and the physical machine. It creates a vboxnetX interface that acts like it's connected to a separate ethernet segment to which the guests are connected. I don't know how the TAP stuff works. Fredrik From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 16:42: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 3A5FB1065672 for ; Mon, 14 Sep 2009 16:42:05 +0000 (UTC) (envelope-from fli@shapeshifter.se) Received: from mx1.h3q.net (mx1.h3q.net [IPv6:2001:16d8:ffe5:1::f1]) by mx1.freebsd.org (Postfix) with ESMTP id BD3D38FC14 for ; Mon, 14 Sep 2009 16:42:04 +0000 (UTC) Received: from smtp-auth.h3q.net (smtp-auth.h3q.net [127.0.0.1]) (Authenticated sender: hidden) by mx1.h3q.net (Postfix) with ESMTPSA id 34F6233DF8 ; Mon, 14 Sep 2009 18:42:02 +0200 (CEST) Message-ID: <4AAE7259.80200@shapeshifter.se> Date: Mon, 14 Sep 2009 18:42:01 +0200 From: Fredrik Lindberg User-Agent: Thunderbird 2.0.0.23 (X11/20090912) MIME-Version: 1.0 To: gary.jennejohn@freenet.de References: <20090914094805.47a01eab@Picasso.Zahemszky.HU> <20090914132602.79faca57@ernst.jennejohn.org> <20090914142916.31e69226@Picasso.Zahemszky.HU> <20090914153800.38fb8e7a@ernst.jennejohn.org> In-Reply-To: <20090914153800.38fb8e7a@ernst.jennejohn.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: =?ISO-8859-1?Q?Zahemszky_G=E1bor?= , freebsd-emulation@freebsd.org Subject: Re: virtualbox cannot compile 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, 14 Sep 2009 16:42:05 -0000 Gary Jennejohn wrote: > On Mon, 14 Sep 2009 14:29:16 +0200 > Zahemszky G__bor wrote: > >> Mon, 14 Sep 2009 13:26:02 +0200 -n >> Gary Jennejohn __rta: >> >>> On Mon, 14 Sep 2009 09:48:05 +0200 >>> Zahemszky G__bor (by way of Zahemszky G__bor >>> ) wrote: >>> >>>> I've got a problem with the (last two) recent version(s) of the >>>> emulators/virtualbox port, as I cannot compile it. It fails with a: >>>> >>>> 02/src/VBox/Runtime/r0drv/freebsd/alloc-r0drv-freebsd.c:34: >>>> /sys/vm/vm.h:64:24: error: machine/vm.h: No such file or directory >>>> >>>> error message. The previous version failed with the same problem. >>>> >>> Have you generated a kernel lately? I believe machine is a symbolic >>> link which is created when you make a kernel, but I might be wrong. >>> >>> Om my box I >>> have: /usr/obj/usr/src/sys/amd64/machine >>> -> /usr/src/sys/amd64/include >> Hm. Interesting: I've generated kernels in the not too past. But. I use >> i386, and not amd64, and GENERIC kernel on it. I >> have /usr/obj/usr/src/sys/ and in it, GENERIC and boot directory. And I >> have GENERIC/machine/vm.h in it. So I think, some configuration steps >> have some problems. >> > > I just compiled the latest svn stuff and it also fails (copy&paste => long lines): > > kBuild: Compiling vboxnetflt - /oldzfs/virtualbox/work/virtualbox-3.0.51r22902/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-freebsd.c > In file included from /oldzfs/virtualbox/work/virtualbox-3.0.51r22902/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-freebsd.c:43: > /sys/sys/socket.h:39:28: error: machine/_align.h: No such file or directory > kmk[2]: *** [/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release/obj/vboxnetflt/freebsd/VBoxNetFlt-freebsd.o] Error 1 > The failing command: > @cc -c -O2 -Wall -Wextra -Wno-missing-field-initializers -Wno-unused > -Wno-trigraphs -Wpointer-arith -Winline -Wno-pointer-sign -Wstrict-prototypes > -Wmissing-prototypes -Wstrict-prototypes -Wnested-externs -O2 > -fformat-extensions -ffreestanding -fno-strict-aliasing -fno-common > -finline-limit=8000 -fno-stack-protector -O2 -mtune=generic > -fno-omit-frame-pointer -nostdinc -std=c99 -m64 --param inline-unit-growth=100 > --param large-function-growth=1000 -fno-omit-frame-pointer -mcmodel=kernel > -mno-red-zone -mfpmath=387 -mno-sse -mno-sse2 -mno-mmx -mno-3dnow -msoft-float > -fno-asynchronous-unwind-tables -Wundef > -I/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/src/VBox/HostDrivers/VBoxNetFlt > -I/sys -I/sys/contrib/altq -I/sys/../include -I/usr/include > -I/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/include > -I/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release > -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_HARDENING > -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox\" > -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" > -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" > -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox\" -DRT_OS_FREEBSD > -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -D_KERNEL -DKLD_MODULE -DIN_RING0 > -DIN_RT_R0 -DIN_RT_R0 > -Wp,-MD,/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release/obj/vboxnetflt/freebsd/VBoxNetFlt-freebsd.o.dep > -Wp,-MT,/oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release/obj/vboxnetflt/freebsd/VBoxNetFlt-freebsd.o > -Wp,-MP > -o /oldzfs/virtualbox/work/virtualbox-3.0.51r22902/out/freebsd.amd64/release/obj/vboxnetflt/freebsd/VBoxNetFlt-freebsd.o /oldzfs/virtualbox/work/virtualbox-3.0.51r22902/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-freebsd.c > > Definitely looks like there's a bug in the new networking stuff. It compiles fine for me on FreeBSD 7.2-amd64 using the latest version in ports, builds both vboxnetflt.ko and vboxnetadp.ko. Have you tried the one in ports (although I can't imagine why the svn-version wouldn't work)? What version of FreeBSD are you using ? Fredrik From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 17:01: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 AFEB3106568D for ; Mon, 14 Sep 2009 17:01:39 +0000 (UTC) (envelope-from gary.jennejohn@freenet.de) Received: from mout3.freenet.de (mout3.freenet.de [IPv6:2001:748:100:40::2:5]) by mx1.freebsd.org (Postfix) with ESMTP id 4BFC08FC16 for ; Mon, 14 Sep 2009 17:01:39 +0000 (UTC) Received: from [195.4.92.25] (helo=15.mx.freenet.de) by mout3.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #92) id 1MnEvp-0005q7-UF; Mon, 14 Sep 2009 19:01:37 +0200 Received: from tcce1.t.pppool.de ([89.55.204.225]:31616 helo=ernst.jennejohn.org) by 15.mx.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #94) id 1MnEvp-0000kL-Jg; Mon, 14 Sep 2009 19:01:37 +0200 Date: Mon, 14 Sep 2009 19:01:36 +0200 From: Gary Jennejohn To: Fredrik Lindberg Message-ID: <20090914190136.773147aa@ernst.jennejohn.org> In-Reply-To: <4AAE7259.80200@shapeshifter.se> References: <20090914094805.47a01eab@Picasso.Zahemszky.HU> <20090914132602.79faca57@ernst.jennejohn.org> <20090914142916.31e69226@Picasso.Zahemszky.HU> <20090914153800.38fb8e7a@ernst.jennejohn.org> <4AAE7259.80200@shapeshifter.se> 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 Cc: freebsd-emulation@freebsd.org Subject: Re: virtualbox cannot compile 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, 14 Sep 2009 17:01:39 -0000 On Mon, 14 Sep 2009 18:42:01 +0200 Fredrik Lindberg wrote: [big snip] Gary Jennejohn wrote: > > Definitely looks like there's a bug in the new networking stuff. > > It compiles fine for me on FreeBSD 7.2-amd64 using the latest version > in ports, builds both vboxnetflt.ko and vboxnetadp.ko. Have you > tried the one in ports (although I can't imagine why the svn-version > wouldn't work)? What version of FreeBSD are you using ? > 9-current amd64. I didn't try the port. Hmm. My sources are newer than the kernel I'm using. Don't know whether that is a factor or not. --- Gary Jennejohn From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 17:35:17 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 A206A1065670 for ; Mon, 14 Sep 2009 17:35:17 +0000 (UTC) (envelope-from mlobo@digiart.art.br) Received: from sv4.hmnoc.net (sv4.hmnoc.net [63.247.76.174]) by mx1.freebsd.org (Postfix) with ESMTP id E6DD28FC1D for ; Mon, 14 Sep 2009 17:35:16 +0000 (UTC) Received: from localhost ([127.0.0.1]:36059 helo=squirrel.sv4.hmnoc.net) by sv4.hmnoc.net with esmtp (Exim 4.69) (envelope-from ) id 1MnFSE-0005vZ-BJ; Mon, 14 Sep 2009 14:35:07 -0300 Received: from 200.249.56.17 (proxying for unknown) (SquirrelMail authenticated user mlobo@digiart.art.br) by squirrel.sv4.hmnoc.net with HTTP; Mon, 14 Sep 2009 14:35:06 -0300 (BRT) Message-ID: <29199.200.249.56.17.1252949706.squirrel@squirrel.sv4.hmnoc.net> In-Reply-To: <20090914190136.773147aa@ernst.jennejohn.org> References: <20090914094805.47a01eab@Picasso.Zahemszky.HU> <20090914132602.79faca57@ernst.jennejohn.org> <20090914142916.31e69226@Picasso.Zahemszky.HU> <20090914153800.38fb8e7a@ernst.jennejohn.org> <4AAE7259.80200@shapeshifter.se> <20090914190136.773147aa@ernst.jennejohn.org> Date: Mon, 14 Sep 2009 14:35:06 -0300 (BRT) From: "Mario Lobo" To: gary.jennejohn@freenet.de User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sv4.hmnoc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - digiart.art.br Cc: freebsd-emulation@freebsd.org Subject: Re: virtualbox cannot compile 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, 14 Sep 2009 17:35:17 -0000 > On Mon, 14 Sep 2009 18:42:01 +0200 > Fredrik Lindberg wrote: > > [big snip] > Gary Jennejohn wrote: >> > Definitely looks like there's a bug in the new networking stuff. >> >> It compiles fine for me on FreeBSD 7.2-amd64 using the latest version >> in ports, builds both vboxnetflt.ko and vboxnetadp.ko. Have you >> tried the one in ports (although I can't imagine why the svn-version >> wouldn't work)? What version of FreeBSD are you using ? >> > > 9-current amd64. > > I didn't try the port. > > Hmm. My sources are newer than the kernel I'm using. Don't know whether > that is a factor or not. > > --- That was definetly a factor for me. I had a backup I made of /usr/src just before csuping a new source tree, which issued the same error you are getting. As soon as I restored to the old /usr/src, Vbox compiled without errors. The error I kept getting was machine/vm.h: No such file or directory On my new /usr/src, /usr/src/sys/vm/vm.h has a # include directive which the old source does not. Mario Lobo From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 17:53: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 A7DB8106566B for ; Mon, 14 Sep 2009 17:53:42 +0000 (UTC) (envelope-from jonathan@kc8onw.net) Received: from mail.kc8onw.net (kc8onw.net [206.55.209.81]) by mx1.freebsd.org (Postfix) with ESMTP id 7EEFA8FC19 for ; Mon, 14 Sep 2009 17:53:42 +0000 (UTC) Received: from [128.211.178.197] (pal-178-197.itap.purdue.edu [128.211.178.197]) by mail.kc8onw.net (Postfix) with ESMTPSA id 68FC431C5E; Mon, 14 Sep 2009 13:53:41 -0400 (EDT) Message-ID: <4AAE8324.6020803@kc8onw.net> Date: Mon, 14 Sep 2009 13:53:40 -0400 From: Jonathan User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.1.1) Gecko/20090715 Thunderbird/3.0b3 MIME-Version: 1.0 To: Dan Nelson , freebsd-emulation@freebsd.org References: <4AAD95C2.7040907@kc8onw.net> <29e884c4b57123a181fb162710e6d1d0.squirrel@webmail.itac.at> <20090914155543.GA40881@dan.emsphone.com> In-Reply-To: <20090914155543.GA40881@dan.emsphone.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: Virtualbox and VRDP 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, 14 Sep 2009 17:53:42 -0000 On 9/14/2009 11:55 AM, Dan Nelson wrote: > In the last episode (Sep 14), Bernhard Froehlich said: >> On Mon, September 14, 2009 3:00 am, Jonathan wrote: >>> I just installed virtualbox on my server without X11 support >>> intending to run it headless and now I find that the Virtual >>> Remote Display Protocol support is only available in the closed >>> source version. The virtualbox Editions page says that some of >>> the closed source features may eventually become available in the >>> open source version as well, has anyone heard anything about this >>> happening for VRDP? >>> >>> Are there any other options that would allow me to set up a VM >>> remotely without installing X? I suppose I could set up a VM >>> locally and then copy it to my server once it's configured for >>> remote ssh access but that would involve copying several GB over >>> the internet, a rather slow process on my connection. >> >> You can setup your virtual machine with VBoxManage but installing a >> system in it is rather painful without GUI. The way you described >> is my preferred at the moment but you could also install with X11 >> and use VBoxSDL and X11 forwarding. >> >> I've talked to the vbox developers and they don't think that the >> RDP code will be put opensource in the foreseeable future. That's >> a pity because in combination with vboxweb [0] which is a python >> web interface to vbox that includes a Flash based RDP client this >> would be a great headless solution. > > What I do is run vncserver, VNC to that virtual X11 session, then run > my VirtualBox sessions under there. I'm trying to avoid installing X on the server at all or this would be an option. > Maybe someone could add VNC support to vbox using libvncserver? > http://sourceforge.net/projects/libvncserver/ It's a good idea but I personally don't have the time :( Jonathan From owner-freebsd-emulation@FreeBSD.ORG Mon Sep 14 18:17: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 29272106566B for ; Mon, 14 Sep 2009 18:17:00 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao104.cox.net (eastrmmtao104.cox.net [68.230.240.46]) by mx1.freebsd.org (Postfix) with ESMTP id CBAC08FC1A for ; Mon, 14 Sep 2009 18:16:59 +0000 (UTC) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao104.cox.net (InterMail vM.8.00.01.00 201-2244-105-20090324) with ESMTP id <20090914181659.JFFH11036.eastrmmtao104.cox.net@eastrmimpo02.cox.net>; Mon, 14 Sep 2009 14:16:59 -0400 Received: from localhost ([68.103.37.153]) by eastrmimpo02.cox.net with bizsmtp id giGy1c0053JFCbG02iGyKj; Mon, 14 Sep 2009 14:16:59 -0400 X-VR-Score: -260.00 X-Authority-Analysis: v=1.0 c=1 a=phosoefUKIwA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=Cy7RDc5XHlB0LTevzNAA:9 a=eAPifVPQUJbyMtd4oAbZlqNDZYgA:4 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 X-CM-Score: 0.00 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: "Boris Samorodov" References: <86iqfn6gfz.fsf@ahab.tihnet> <76660667@bb.ipt.ru> <80174211@bb.ipt.ru> Date: Mon, 14 Sep 2009 13:19:20 -0500 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: "Jeremy Messenger" Message-ID: In-Reply-To: <80174211@bb.ipt.ru> User-Agent: Opera Mail/10.00 (Linux) Cc: emulation@freebsd.org Subject: Re: ports/138752: www/linux-opera does not start 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, 14 Sep 2009 18:17:00 -0000 On Mon, 14 Sep 2009 09:50:20 -0500, Boris Samorodov wrote: > On Mon, 14 Sep 2009 07:23:45 -0500 Jeremy Messenger wrote: >> On Mon, 14 Sep 2009 01:56:36 -0500, Boris Samorodov wrote: >> > On Sat, 12 Sep 2009 17:34:27 -0500 Jeremy Messenger wrote: >> > >> >> BTW: Add emulation@ in the CC for they can correct me if I said >> >> anything wrong with Linux emulation stuff related. >> > >> > Jeremy, you are perfectly correct. >> > >> > However, I'll advise against other linux base ports than -fc4, >> > -f8 and -f10. The latter ports have all needed linux infrastructure >> > ports. > >> Ok, it means that it's best for me to put USE_LINUX=f8 in there >> instead of f6 or f7. > > USE_LINUX does nor support it. I mean there is no possibility to > define a linux distro ATM. The only option is to use USE_LINUX=yes. > The only way is to check for OSVERSION and if > OVERRIDE_LINUX_NONBASE_PORTS is defined. You may look at > emulators/linux-systemsimcell for an examples. See in the Mk/bsd.port.mk: =================================== # USE_LINUX - Set to yes to say the port needs the default linux base port. # Set to value , if the port needs emulators/linux_base-. # If set to "7", a dependency is registered to emulators/linux_base. ------------------------------------ With USE_LINUX=yes: ------------------------------------ # make all-depends-list | grep base /usr/ports/emulators/linux_base-fc4 ------------------------------------ With USE_LINUX=f8: ------------------------------------ # make all-depends-list | grep base /usr/ports/emulators/linux_base-f8 /usr/ports/emulators/linux_base-fc4 ------------------------------------ Looks like it's a bug. Also the document needs to be update if it doesn't support. >> Will it still be able to use f10 if user wants it >> to be? I don't see anything to add '+' in the document something like >> USE_LINUX=f8+. > > Yes, no one including me have written such support so far. Ok thanks, I shall check in emulators/linux-systemsimcell. Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 09:08:18 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 5BF0A106568B; Tue, 15 Sep 2009 09:08:17 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id 2782A8FC20; Tue, 15 Sep 2009 09:08:17 +0000 (UTC) Received: from outgoing.leidinger.net (pD954FB25.dip.t-dialin.net [217.84.251.37]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id B8FC9844730; Tue, 15 Sep 2009 11:08:10 +0200 (CEST) Received: from webmail.leidinger.net (webmail.leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 98304AAB91; Tue, 15 Sep 2009 11:08:07 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=Leidinger.net; s=outgoing-alex; t=1253005687; bh=CY8I7hIusDBRWyUe2+QzbakhPiUkwdL3mv1ac1u1UZU=; h=Message-ID:Date:From:To:Cc:Subject:References:In-Reply-To: MIME-Version:Content-Type:Content-Transfer-Encoding; b=BNJc04UpgblvG9NfGtmNvaSElpV6Jyb8ohGd742D3E+x8xk6O5qjU/P3AO3rT+gcs 1PPcsGo+5cg+95puS+i1JHglqOmqSmp/yXx7nXUmI+oBKm4cZkEHHsnfW/O+1d5uWj X4CcCXPYKo+IiLxqKQ0UmN8pI4OLRomsjYyHF6q6McGvMTnma6wuVYq4jBslp/lbi3 qln2+MAY7gJS3ynlhQ3oWHVmJGzfLW1i3La0GARVN4FZzDlVLYI5ZbrOkLYBPjAEIl gjGuJ5HkRDy8seYE9kPlorrD1vGt1qyQH73VieA00eVI+2se7HZsIrLvynmnRkaJXr wzUqcEYkOo4xw== Received: (from www@localhost) by webmail.leidinger.net (8.14.3/8.13.8/Submit) id n8F987VG078982; Tue, 15 Sep 2009 11:08:07 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Tue, 15 Sep 2009 11:08:06 +0200 Message-ID: <20090915110806.13816i8eowbecwkc@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Tue, 15 Sep 2009 11:08:06 +0200 From: Alexander Leidinger To: Alexander Best References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) 4.3.3 / FreeBSD-8.0 X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: B8FC9844730.C6C96 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-1.285, required 6, autolearn=disabled, ALL_TRUSTED -1.44, DKIM_SIGNED 0.00, TW_BF 0.08, TW_XC 0.08) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1253610491.96097@4yd8QxAnjwE+dHz8FjMrEw X-EBL-Spam-Status: No Cc: emulation@FreeBSD.org, freebsd-hackers@FreeBSD.org Subject: Re: Buffer overflow detected by REDZONE with linuxulator 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, 15 Sep 2009 09:08:18 -0000 Quoting Alexander Best (from Wed, 09 Sep 2009 19:01:31 +0200 (CEST)): > hi there, CCing emulation@, this is better suited there. Full quote for the benefit of the emulation@ readers. Please drop hackers@ on reply. Thanks. > i've installed emulators/linux_dist-gentoo-stage3 and grabbed a snapshot from > the ltp git repository (http://ltp.sourceforge.net/). as expected some tests > failed because i'm using compat.linux.osrelease: 2.6.16 which is > still missing > a few linux syscalls, ipcs and ioctls. Are you interested to help update the corresponding FreeBSD wiki page? If yes, register there and we can hand out write access. > however i also noticed REDZONE reporting buffer overflows. i'm only > a user and > not a developer so i don't know if the ltp is to be blamed or if the problem > lies within the linuxulator. Probably the later... > i'm running 9.0-CURRENT (r196879). as i mentioned before i'm using 2.6 linux > kernel emulation. here are the buffer overflow reports: Is your system running in 32bit or 64bit mode? Do you know which ltp-tests cause those messages to appear? Bye, Alexander. > Sep 9 14:12:42 otaku kernel: REDZONE: Buffer overflow detected. 9 bytes > corrupted after 0xcc28c483 (3 bytes allocated). > Sep 9 14:12:42 otaku kernel: Allocation backtrace: > Sep 9 14:12:42 otaku kernel: #0 0xc0709aaa at redzone_setup+0x3a > Sep 9 14:12:42 otaku kernel: #1 0xc05bc673 at malloc+0x1c3 > Sep 9 14:12:42 otaku kernel: #2 0xc07428b8 at linux_getsockaddr+0x48 > Sep 9 14:12:42 otaku kernel: #3 0xc0742eb8 at linux_socketcall+0x178 > Sep 9 14:12:42 otaku kernel: #4 0xc0772f56 at syscall+0x2a6 > Sep 9 14:12:42 otaku kernel: #5 0xc07568b0 at Xint0x80_syscall+0x20 > Sep 9 14:12:42 otaku kernel: Free backtrace: > Sep 9 14:12:42 otaku kernel: #0 0xc0709a3a at redzone_check+0x17a > Sep 9 14:12:42 otaku kernel: #1 0xc05bc32d at free+0x5d > Sep 9 14:12:42 otaku kernel: #2 0xc0742ef0 at linux_socketcall+0x1b0 > Sep 9 14:12:42 otaku kernel: #3 0xc0772f56 at syscall+0x2a6 > Sep 9 14:12:42 otaku kernel: #4 0xc07568b0 at Xint0x80_syscall+0x20 > Sep 9 14:20:08 otaku kernel: REDZONE: Buffer overflow detected. 4 bytes > corrupted after 0xcc2538ea (106 bytes allocated). > Sep 9 14:20:08 otaku kernel: Allocation backtrace: > Sep 9 14:20:08 otaku kernel: #0 0xc0709aaa at redzone_setup+0x3a > Sep 9 14:20:08 otaku kernel: #1 0xc05bc673 at malloc+0x1c3 > Sep 9 14:20:08 otaku kernel: #2 0xc063a902 at unp_connect+0x162 > Sep 9 14:20:08 otaku kernel: #3 0xc063d6c9 at uipc_connect+0x49 > Sep 9 14:20:08 otaku kernel: #4 0xc062fde2 at soconnect+0x52 > Sep 9 14:20:08 otaku kernel: #5 0xc0638eb6 at kern_connect+0x96 > Sep 9 14:20:08 otaku kernel: #6 0xc0742c7b at linux_connect+0x3b > Sep 9 14:20:08 otaku kernel: #7 0xc0742f22 at linux_socketcall+0x1e2 > Sep 9 14:20:08 otaku kernel: #8 0xc0772f56 at syscall+0x2a6 > Sep 9 14:20:08 otaku kernel: #9 0xc07568b0 at Xint0x80_syscall+0x20 > Sep 9 14:20:08 otaku kernel: Free backtrace: > Sep 9 14:20:08 otaku kernel: #0 0xc0709a3a at redzone_check+0x17a > Sep 9 14:20:08 otaku kernel: #1 0xc05bc32d at free+0x5d > Sep 9 14:20:08 otaku kernel: #2 0xc063bfb2 at uipc_detach+0x242 > Sep 9 14:20:08 otaku kernel: #3 0xc0632a7e at sofree+0x22e > Sep 9 14:20:08 otaku kernel: #4 0xc0632f26 at soclose+0x386 > Sep 9 14:20:08 otaku kernel: #5 0xc0617c49 at soo_close+0x29 > Sep 9 14:20:08 otaku kernel: #6 0xc0598b13 at _fdrop+0x43 > Sep 9 14:20:08 otaku kernel: #7 0xc059ab90 at closef+0x290 > Sep 9 14:20:08 otaku kernel: #8 0xc059af22 at kern_close+0x102 > Sep 9 14:20:08 otaku kernel: #9 0xc059b09a at close+0x1a > Sep 9 14:20:08 otaku kernel: #10 0xc0772f56 at syscall+0x2a6 > Sep 9 14:20:08 otaku kernel: #11 0xc07568b0 at Xint0x80_syscall+0x20 > Sep 9 14:20:09 otaku kernel: REDZONE: Buffer overflow detected. 4 bytes > corrupted after 0xccc653ea (106 bytes allocated). > Sep 9 14:20:09 otaku kernel: Allocation backtrace: > Sep 9 14:20:09 otaku kernel: #0 0xc0709aaa at redzone_setup+0x3a > Sep 9 14:20:09 otaku kernel: #1 0xc05bc673 at malloc+0x1c3 > Sep 9 14:20:09 otaku kernel: #2 0xc063a902 at unp_connect+0x162 > Sep 9 14:20:09 otaku kernel: #3 0xc063d6c9 at uipc_connect+0x49 > Sep 9 14:20:09 otaku kernel: #4 0xc062fde2 at soconnect+0x52 > Sep 9 14:20:09 otaku kernel: #5 0xc0638eb6 at kern_connect+0x96 > Sep 9 14:20:09 otaku kernel: #6 0xc0742c7b at linux_connect+0x3b > Sep 9 14:20:09 otaku kernel: #7 0xc0742f22 at linux_socketcall+0x1e2 > Sep 9 14:20:09 otaku kernel: #8 0xc0772f56 at syscall+0x2a6 > Sep 9 14:20:09 otaku kernel: #9 0xc07568b0 at Xint0x80_syscall+0x20 > Sep 9 14:20:09 otaku kernel: Free backtrace: > Sep 9 14:20:09 otaku kernel: #0 0xc0709a3a at redzone_check+0x17a > Sep 9 14:20:09 otaku kernel: #1 0xc05bc32d at free+0x5d > Sep 9 14:20:09 otaku kernel: #2 0xc063bfb2 at uipc_detach+0x242 > Sep 9 14:20:09 otaku kernel: #3 0xc0632a7e at sofree+0x22e > Sep 9 14:20:09 otaku kernel: #4 0xc0632f26 at soclose+0x386 > Sep 9 14:20:09 otaku kernel: #5 0xc0617c49 at soo_close+0x29 > Sep 9 14:20:09 otaku kernel: #6 0xc0598b13 at _fdrop+0x43 > Sep 9 14:20:09 otaku kernel: #7 0xc059ab90 at closef+0x290 > Sep 9 14:20:09 otaku kernel: #8 0xc059af22 at kern_close+0x102 > Sep 9 14:20:09 otaku kernel: #9 0xc059b09a at close+0x1a > Sep 9 14:20:09 otaku kernel: #10 0xc0772f56 at syscall+0x2a6 > Sep 9 14:20:09 otaku kernel: #11 0xc07568b0 at Xint0x80_syscall+0x20 > Sep 9 14:20:09 otaku kernel: REDZONE: Buffer overflow detected. 4 bytes > corrupted after 0xcf45a9ea (106 bytes allocated). > Sep 9 14:20:09 otaku kernel: Allocation backtrace: > Sep 9 14:20:09 otaku kernel: #0 0xc0709aaa at redzone_setup+0x3a > Sep 9 14:20:09 otaku kernel: #1 0xc05bc673 at malloc+0x1c3 > Sep 9 14:20:09 otaku kernel: #2 0xc063a902 at unp_connect+0x162 > Sep 9 14:20:09 otaku kernel: #3 0xc063d6c9 at uipc_connect+0x49 > Sep 9 14:20:09 otaku kernel: #4 0xc062fde2 at soconnect+0x52 > Sep 9 14:20:09 otaku kernel: #5 0xc0638eb6 at kern_connect+0x96 > Sep 9 14:20:09 otaku kernel: #6 0xc0742c7b at linux_connect+0x3b > Sep 9 14:20:09 otaku kernel: #7 0xc0742f22 at linux_socketcall+0x1e2 > Sep 9 14:20:09 otaku kernel: #8 0xc0772f56 at syscall+0x2a6 > Sep 9 14:20:09 otaku kernel: #9 0xc07568b0 at Xint0x80_syscall+0x20 > Sep 9 14:20:09 otaku kernel: Free backtrace: > Sep 9 14:20:09 otaku kernel: #0 0xc0709a3a at redzone_check+0x17a > Sep 9 14:20:09 otaku kernel: #1 0xc05bc32d at free+0x5d > Sep 9 14:20:09 otaku kernel: #2 0xc063bfb2 at uipc_detach+0x242 > Sep 9 14:20:09 otaku kernel: #3 0xc0632a7e at sofree+0x22e > Sep 9 14:20:09 otaku kernel: #4 0xc0632f26 at soclose+0x386 > Sep 9 14:20:09 otaku kernel: #5 0xc0617c49 at soo_close+0x29 > Sep 9 14:20:09 otaku kernel: #6 0xc0598b13 at _fdrop+0x43 > Sep 9 14:20:09 otaku kernel: #7 0xc059ab90 at closef+0x290 > Sep 9 14:20:09 otaku kernel: #8 0xc059b55a at fdfree+0x3ea > Sep 9 14:20:09 otaku kernel: #9 0xc05a57b3 at exit1+0x513 > Sep 9 14:20:09 otaku kernel: #10 0xc05d17f4 at sigexit+0xa14 > Sep 9 14:20:09 otaku kernel: #11 0xc05d19fd at postsig+0x1dd > Sep 9 14:20:09 otaku kernel: #12 0xc0608fca at ast+0x35a > Sep 9 14:20:09 otaku kernel: #13 0xc0757174 at doreti_ast+0x17 > > cheers. > alex -- Fifth Law of Procrastination: Procrastination avoids boredom; one never has the feeling that there is nothing important to do. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 09:19:52 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 8378E106566B for ; Tue, 15 Sep 2009 09:19:52 +0000 (UTC) (envelope-from freebsd-emulation@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id 3EF5C8FC12 for ; Tue, 15 Sep 2009 09:19:51 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.50) id 1MnUCT-0001l3-Gr for freebsd-emulation@freebsd.org; Tue, 15 Sep 2009 11:19:49 +0200 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 15 Sep 2009 11:19:49 +0200 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 15 Sep 2009 11:19:49 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-emulation@freebsd.org From: Ivan Voras Date: Tue, 15 Sep 2009 11:19:39 +0200 Lines: 42 Message-ID: References: <4AAE68F1.3010709@icyb.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.22 (X11/20090817) In-Reply-To: <4AAE68F1.3010709@icyb.net.ua> Sender: news Subject: Re: New Virtualbox port (from today) 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, 15 Sep 2009 09:19:52 -0000 Andriy Gapon wrote: > on 14/09/2009 17:21 Ivan Voras said the following: >> Hi, >> >> It looks like the timer problem is solved with the recent port >> (virtualbox-3.0.51.r22902) but now I cannot start more than one VM - the >> error is VERR_NO_MEMORY (there certainly is enough free memory). > > Could this be related to a similar issue that I reported on -current? > Or something too different? It looks almost exactly the same as your issue except that I really do have enough memory: 00:00:00.681 VirtualBox 3.0.51_OSE r22900 freebsd.amd64 (Sep 14 2009 12:31:13) release log 00:00:00.681 Log opened 2009-09-14T14:20:25.014346000Z 00:00:00.681 OS Product: FreeBSD 00:00:00.681 OS Release: 8.0-BETA2 00:00:00.681 OS Version: FreeBSD 8.0-BETA2 #5: Mon Aug 17 11:29:21 CEST 2009 ivoras@lara.cc.fer.hr:/usr/obj/usr/src/sys/LARA !!! 00:00:00.681 Host RAM: 3823MB RAM, available: 508MB !!! 00:00:00.681 Executable: /usr/local/lib/virtualbox/VirtualBox 00:00:00.681 Process ID: 1217 00:00:00.681 Package type: BSD_64BITS_GENERIC (OSE) 00:00:00.685 SUP: Opened VMMR0.r0 (/usr/local/lib/virtualbox/VMMR0.r0) at 0xffffffff81062080. 00:00:00.686 ERROR [COM]: aRC=NS_ERROR_FAILURE (0x80004005) aIID={0a51994b-cbc6-4686-94eb-d4e4023280e2} aComponent={Console} aText={VM creation failed (GVMM) (VERR_NO_MEMORY). 00:00:00.686 Unknown error creating VM (VERR_NO_MEMORY)} aWarning=false, preserve=false 00:00:00.688 Power up failed (vrc=VERR_NO_MEMORY, rc=NS_ERROR_FAILURE (0X80004005)) The VM is configured as 128 MB memory. From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 12:03:50 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 02427106568F for ; Tue, 15 Sep 2009 12:03:50 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) Received: from zivm-out2.uni-muenster.de (ZIVM-OUT2.UNI-MUENSTER.DE [128.176.192.9]) by mx1.freebsd.org (Postfix) with ESMTP id 8964E8FC1B for ; Tue, 15 Sep 2009 12:03:49 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.44,390,1249250400"; d="scan'208";a="223749831" Received: from zivmaildisp2.uni-muenster.de (HELO ZIVMAILUSER01.UNI-MUENSTER.DE) ([128.176.188.143]) by zivm-relay2.uni-muenster.de with ESMTP; 15 Sep 2009 13:33:55 +0200 Received: by ZIVMAILUSER01.UNI-MUENSTER.DE (Postfix, from userid 149459) id DD8911B0766; Tue, 15 Sep 2009 13:33:55 +0200 (CEST) Date: Tue, 15 Sep 2009 13:33:55 +0200 (CEST) From: Alexander Best Sender: Organization: Westfaelische Wilhelms-Universitaet Muenster To: Alexander Leidinger Message-ID: In-Reply-To: <20090915110806.13816i8eowbecwkc@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: emulation@FreeBSD.org Subject: Re: Buffer overflow detected by REDZONE with linuxulator 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, 15 Sep 2009 12:03:50 -0000 Alexander Leidinger schrieb am 2009-09-15: > Are you interested to help update the corresponding FreeBSD wiki > page? If yes, register there and we can hand out write access. that's a coincidence. i mailed Simon L. Nielsen a few days ago asking him if he could give me write permission so i could add some info to the linux-kernel wiki page. my wikiname is "AlexanderBest". > Is your system running in 32bit or 64bit mode? Do you know which > ltp-tests cause those messages to appear? i'm running the 32bit version of freebsd. i'll try to find out which tests exactly are causing the overflow. cheers. alex From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 12:04:55 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 12D82106568B for ; Tue, 15 Sep 2009 12:04:55 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id AFEE68FC1D for ; Tue, 15 Sep 2009 12:04:54 +0000 (UTC) Received: from outgoing.leidinger.net (pD954FB25.dip.t-dialin.net [217.84.251.37]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id 13A9C844730; Tue, 15 Sep 2009 14:04:49 +0200 (CEST) Received: from webmail.leidinger.net (webmail.leidinger.net [192.168.1.102]) by outgoing.leidinger.net (Postfix) with ESMTP id 8B78E1457AE; Tue, 15 Sep 2009 14:04:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=Leidinger.net; s=outgoing-alex; t=1253016285; bh=Zm95+H4A/8Y71C3B83aTF55u+1uTO9B33LFO2kxwKI4=; h=Message-ID:Date:From:To:Cc:Subject:References:In-Reply-To: MIME-Version:Content-Type:Content-Transfer-Encoding; b=AdbHeiqni/eQHxjlCQWA88f1HckOoa8vIF+DUZYCWvHtZCbPlLvftJkIjAsVyd/Mc WI6xdsiqKjfxE5OhbBRc3jYLkXeTfjd1GJeSov+IADlH8b5N7ZDzX+B8zwGtq7pk0V m3uo2wCPMrbwfkDNlgqdx7cCAaoJLk2Bxg/mtBiS4LfnOnxa+uqeTF64Feg6z91lSp vBtxT5B9K4yuVwj1m1B8tAoGN7xTM4Y3yyd8YmMG6EPSXXQE8ZRts4sTGFtzvxOeQW vx5zWeSqVhwVTAeUI8Mi3WzEcwMpMQVnKjDfxNS9gln0F1t4CBC/dySdCrlf394kDd fW6Fynx6V91wQ== Received: (from www@localhost) by webmail.leidinger.net (8.14.3/8.13.8/Submit) id n8FC4jLC011176; Tue, 15 Sep 2009 14:04:45 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde Framework) with HTTP; Tue, 15 Sep 2009 14:04:44 +0200 Message-ID: <20090915140444.11146ndqvz52wn40@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Tue, 15 Sep 2009 14:04:44 +0200 From: Alexander Leidinger To: Alexander Best References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) 4.3.3 / FreeBSD-8.0 X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: 13A9C844730.54614 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-1.439, required 6, autolearn=disabled, ALL_TRUSTED -1.44, DKIM_SIGNED 0.00) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1253621090.20143@swMQIjOnUF6xlh/s0ifyFg X-EBL-Spam-Status: No Cc: emulation@FreeBSD.org Subject: Re: Buffer overflow detected by REDZONE with linuxulator 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, 15 Sep 2009 12:04:55 -0000 Quoting Alexander Best (from Tue, 15 Sep 2009 13:33:55 +0200 (CEST)): > Alexander Leidinger schrieb am 2009-09-15: >> Are you interested to help update the corresponding FreeBSD wiki >> page? If yes, register there and we can hand out write access. > > that's a coincidence. i mailed Simon L. Nielsen a few days ago asking him if > he could give me write permission so i could add some info to the > linux-kernel > wiki page. my wikiname is "AlexanderBest". The write access is granted now. >> Is your system running in 32bit or 64bit mode? Do you know which >> ltp-tests cause those messages to appear? > > i'm running the 32bit version of freebsd. i'll try to find out which tests > exactly are causing the overflow. If you want you can add the error messages you get to the wiki page in a sensible place... Bye, Alexander. -- The two things that can get you into trouble quicker than anything else are fast women and slow horses. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 13:07: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 BF65F1065672 for ; Tue, 15 Sep 2009 13:07:42 +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 59CCC8FC13 for ; Tue, 15 Sep 2009 13:07:42 +0000 (UTC) Received: from [195.4.92.17] (helo=7.mx.freenet.de) by mout6.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #92) id 1MnXkz-0002zY-8h for freebsd-emulation@freebsd.org; Tue, 15 Sep 2009 15:07:41 +0200 Received: from t9b2e.t.pppool.de ([89.55.155.46]:61361 helo=ernst.jennejohn.org) by 7.mx.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #94) id 1MnXkz-0003xz-1s for freebsd-emulation@freebsd.org; Tue, 15 Sep 2009 15:07:41 +0200 Date: Tue, 15 Sep 2009 15:07:40 +0200 From: Gary Jennejohn To: freebsd-emulation@freebsd.org Message-ID: <20090915150740.71c10b45@ernst.jennejohn.org> In-Reply-To: <20090914190136.773147aa@ernst.jennejohn.org> References: <20090914094805.47a01eab@Picasso.Zahemszky.HU> <20090914132602.79faca57@ernst.jennejohn.org> <20090914142916.31e69226@Picasso.Zahemszky.HU> <20090914153800.38fb8e7a@ernst.jennejohn.org> <4AAE7259.80200@shapeshifter.se> <20090914190136.773147aa@ernst.jennejohn.org> 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 Subject: Re: virtualbox cannot compile 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: Tue, 15 Sep 2009 13:07:42 -0000 On Mon, 14 Sep 2009 19:01:36 +0200 Gary Jennejohn wrote: > Hmm. My sources are newer than the kernel I'm using. Don't know whether > that is a factor or not. > Well, I did a "make buildkernel" before trying to build the port. It still fails because it can't find machine/_align.h. The symbolic link "machine" only exists under /usr/obj/sys/amd64 (my KERNCONF is amd64). The only way I can get the port to build is by creating work/virtualbox-3.0.51r22902/include/machine -> /sys/amd64/include by hand. There definitely seems to be a bug somewhere here. Building the port worked in older versions before the new networking stuff was added. --- Gary Jennejohn From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 17:39: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 070B5106566C for ; Tue, 15 Sep 2009 17:39:40 +0000 (UTC) (envelope-from xorquewasp@googlemail.com) Received: from mail-fx0-f210.google.com (mail-fx0-f210.google.com [209.85.220.210]) by mx1.freebsd.org (Postfix) with ESMTP id 8A1A08FC15 for ; Tue, 15 Sep 2009 17:39:39 +0000 (UTC) Received: by fxm6 with SMTP id 6so2837999fxm.43 for ; Tue, 15 Sep 2009 10:39:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:subject :message-id:references:mime-version:content-type:content-disposition :in-reply-to; bh=Uiz3vFrGcT1Ck3416Y+yW3NepRxee7vOa94AHmjck1Y=; b=Y8uH6XBMVjT68Yw1cArmieWQwfc47SCAAlDkdcoeWfrn+QXgts9ZIMULKVQayWc5VH iU1x4Fjad46IXfJ8QBX7Nn/tz/NblzhWlQcGJGoN/A9KKv1HVVrTRVDaEAr1oHFNjEtF 4FK6PYfg/v0JBmmgiFY3DBQSHKxcTmjKVQKbw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; b=Kou8h4eRj6XI8wGVLySD6FSLM2qfcGwmyjUVsMjdkCzpal2TdFAQ85oe/huk4/ZON0 CzXjmiPZJUGoLneUgNkVI3/ywdEOVKJKczst/MD7zz3FPPq/TZ5uM/jhknL0RLlZS8yf w4iGyvQvbG55hZUGufp88iQYMuWvV/BQIUP5Q= Received: by 10.86.169.3 with SMTP id r3mr6461502fge.15.1253036378487; Tue, 15 Sep 2009 10:39:38 -0700 (PDT) Received: from viper.internal.network (dsl78-143-222-147.in-addr.fast.co.uk [78.143.222.147]) by mx.google.com with ESMTPS id 4sm590400fgg.4.2009.09.15.10.39.37 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Sep 2009 10:39:37 -0700 (PDT) Received: by viper.internal.network (Postfix, from userid 11001) id 1825A4AC65; Tue, 15 Sep 2009 18:39:36 +0100 (BST) Date: Tue, 15 Sep 2009 18:39:35 +0100 From: xorquewasp@googlemail.com To: freebsd-emulation@freebsd.org Message-ID: <20090915173935.GA34173@logik.internal.network> References: <20090914051402.GB44046@logik.internal.network> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090914051402.GB44046@logik.internal.network> Subject: Re: Problems with qemu networking on 7.2-RELEASE-amd64? 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, 15 Sep 2009 17:39:40 -0000 On 2009-09-14 06:14:02, xorquewasp@googlemail.com wrote: > Hello. > > I'm having horrendous trouble getting qemu to do networking > on 7.2-RELEASE-amd64. I've not had any trouble on previous > versions of FreeBSD and qemu so this comes as a bit of a surprise. So, er, nobody's using this rather common setup on 7.2-RELEASE-amd64? I don't know if this is a problem with qemu or a problem with if_bridge.ko. Again: NetBSD x86 sees no NIC at all. OpenBSD x86 sees a NIC but it doesn't work ("ne3: device timeout"). Windows XP sees a NIC, can do DNS resolution but no outgoing TCP connection works. NetBSD SPARC sees a NIC, can do DNS resolution but no outgoing TCP connection works. I can connect into the guest via SSH. This isn't a firewall issue: I can watch the pflog0, re0 and tap0 devices with tcpdump and clearly see that nothing is being blocked. The TCP outbound connections simply pass into the tap device and then apparently don't even get as far as the bridge: Working DNS resolution: 133779 rule 22/0(match): pass in on tap0: 10.1.3.12.65529 > 10.2.1.7.53: UDP, length 32 000006 rule 23/0(match): pass out on bridge0: 10.1.3.12.65529 > 10.2.1.7.53: UDP, length 32 Apparently broken TCP/IP to google.com: 189768 rule 24/0(match): pass in on tap0: 10.1.3.12.65534 > 216.239.59.147.80: tcp 0 There's no "pass out on bridge0" or "pass out on re0" as expected. I've tried the recent qemu-devel patch but it's so unstable that it seems nearly any execution path results in a segmentation fault. Any help would be appreciated - I have work to do that requires access to these VMs and having no outgoing network connectivity is crippling. From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 17:44: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 0DDE6106575E for ; Tue, 15 Sep 2009 17:44:09 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-yw0-f179.google.com (mail-yw0-f179.google.com [209.85.211.179]) by mx1.freebsd.org (Postfix) with ESMTP id B98E18FC1A for ; Tue, 15 Sep 2009 17:44:08 +0000 (UTC) Received: by ywh9 with SMTP id 9so5949331ywh.32 for ; Tue, 15 Sep 2009 10:44:08 -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; bh=lcOmQwVeK7W1nilppwvPmnJg7r3+CTtYwCUHyc+lmDI=; b=s5s4q3oX/sIfqRsAQo5AJSwSWWHCu/wC57K312+jDK5Yg21ikinxbJGpx5mWW5+TQO 7W0FQqvflwgYPvYfsD1Kt/tyWXUROQYUB0GL//E2Olc54wkvq5a1caufFwUCTSQtA3gM iKxIQJnhM3Ar4dBclepZpMi2ygexbUyGTXg0o= 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; b=LhZsg2/IbNEOqtcGlUAAQW3dLktqo5lG48fxK+vvloPdt02jegyNifmyaQ5O/O9C2a SgkA0z/qh6H+4aUZwow/Ei4HgdOZlZLwEx2YQKjgw53qVVrqlFhdAPQOZqAKvXJGqKCP e0B4WORZXEmeahUDByoZtiCLWCI/lX6EJN6Bg= MIME-Version: 1.0 Received: by 10.150.130.38 with SMTP id c38mr12830369ybd.213.1253036647004; Tue, 15 Sep 2009 10:44:07 -0700 (PDT) In-Reply-To: <20090915173935.GA34173@logik.internal.network> References: <20090914051402.GB44046@logik.internal.network> <20090915173935.GA34173@logik.internal.network> Date: Tue, 15 Sep 2009 12:44:06 -0500 Message-ID: <6201873e0909151044o1331009rf62dba1912cf17eb@mail.gmail.com> From: Adam Vande More To: xorquewasp@googlemail.com Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-emulation@freebsd.org Subject: Re: Problems with qemu networking on 7.2-RELEASE-amd64? 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, 15 Sep 2009 17:44:09 -0000 On Tue, Sep 15, 2009 at 12:39 PM, wrote: > On 2009-09-14 06:14:02, xorquewasp@googlemail.com wrote: > > Hello. > > > > I'm having horrendous trouble getting qemu to do networking > > on 7.2-RELEASE-amd64. I've not had any trouble on previous > > versions of FreeBSD and qemu so this comes as a bit of a surprise. > > So, er, nobody's using this rather common setup on 7.2-RELEASE-amd64? > > I don't know if this is a problem with qemu or a problem with if_bridge.ko. > > Again: > > NetBSD x86 sees no NIC at all. > > OpenBSD x86 sees a NIC but it doesn't work ("ne3: device timeout"). > > Windows XP sees a NIC, can do DNS resolution but no outgoing TCP > connection > works. > > NetBSD SPARC sees a NIC, can do DNS resolution but no outgoing TCP > connection > works. I can connect into the guest via SSH. > > This isn't a firewall issue: I can watch the pflog0, re0 and tap0 devices > with tcpdump and clearly see that nothing is being blocked. > > The TCP outbound connections simply pass into the tap device and then > apparently > don't even get as far as the bridge: > > Working DNS resolution: > 133779 rule 22/0(match): pass in on tap0: 10.1.3.12.65529 > 10.2.1.7.53: > UDP, length 32 > 000006 rule 23/0(match): pass out on bridge0: 10.1.3.12.65529 > > 10.2.1.7.53: UDP, length 32 > > Apparently broken TCP/IP to google.com: > 189768 rule 24/0(match): pass in on tap0: 10.1.3.12.65534 > > 216.239.59.147.80: tcp 0 > > There's no "pass out on bridge0" or "pass out on re0" as expected. > > I've tried the recent qemu-devel patch but it's so unstable that it seems > nearly any execution path results in a segmentation fault. > > Any help would be appreciated - I have work to do that requires access > to these VMs and having no outgoing network connectivity is crippling. > > I don't know anything about your particular issue, but VirtualBox should be able to run those qemu images, and it's bridged networking is now working in addition to the previously working nat. IME, VBox is significantly faster and more robust than qemu, especially in the network realm. -- Adam Vande More From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 17:50:18 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 91197106568B for ; Tue, 15 Sep 2009 17:50:18 +0000 (UTC) (envelope-from xorquewasp@googlemail.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 209718FC1C for ; Tue, 15 Sep 2009 17:50:17 +0000 (UTC) Received: by fg-out-1718.google.com with SMTP id e21so821157fga.13 for ; Tue, 15 Sep 2009 10:50:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:subject :message-id:references:mime-version:content-type:content-disposition :in-reply-to; bh=/Y+matJGhuJrOmfKzXBTSE/UHow5MjTvckQ1E+MPidM=; b=WpVmjZgYVZ01Rb4d/6YQ//CFvHaLLc1v4877F+2iSoY9tSeozv5pZq3d9ka5YTYuF4 Y+/V1l2JSX6diFxiHH0xX27OMW85ewEDv1yceq/99cL3aoPQOhZHv/SuWm5RF9mXhTHm 5/lZUqxD5oUDHZGuEvbKtEG88KSZD+B2obV8c= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; b=SUXPDy+76yzO6a46cNACBl9MWove+axXNABokoE7f5Llx0bE2ymKQUjWj3GUBbqsj3 muLuhAKi2q/5zhXyw/Jxn+ITrnCh2BNSAaeuNNFzYYfs+BdTYCLEj8FBRNmTSRhFULYD MT/cZEQvRYhRd+1kdM620AHA3oNOFh481XIt8= Received: by 10.86.214.34 with SMTP id m34mr6448311fgg.6.1253037016586; Tue, 15 Sep 2009 10:50:16 -0700 (PDT) Received: from viper.internal.network (dsl78-143-222-147.in-addr.fast.co.uk [78.143.222.147]) by mx.google.com with ESMTPS id 3sm387308fge.17.2009.09.15.10.50.14 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Sep 2009 10:50:15 -0700 (PDT) Received: by viper.internal.network (Postfix, from userid 11001) id 86F9D4AC65; Tue, 15 Sep 2009 18:50:13 +0100 (BST) Date: Tue, 15 Sep 2009 18:50:13 +0100 From: xorquewasp@googlemail.com To: freebsd-emulation@freebsd.org Message-ID: <20090915175013.GA76444@logik.internal.network> References: <20090914051402.GB44046@logik.internal.network> <20090915173935.GA34173@logik.internal.network> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090915173935.GA34173@logik.internal.network> Subject: Re: Problems with qemu networking on 7.2-RELEASE-amd64? 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, 15 Sep 2009 17:50:18 -0000 > I don't know anything about your particular issue, but VirtualBox should be > able to run those qemu images, and it's bridged networking is now working in > addition to the previously working nat. IME, VBox is significantly faster > and more robust than qemu, especially in the network realm. Indeed. It still seems quite immature on FreeBSD, though. I can't tolerate unstable code in the kernel on this particular machine. I imagine practically anything is more robust than qemu, but at least a crash in qemu just requires running the program again... From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 19:28: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 5DB75106566B for ; Tue, 15 Sep 2009 19:28:20 +0000 (UTC) (envelope-from fli@shapeshifter.se) Received: from mx1.h3q.net (mx1.h3q.net [IPv6:2001:16d8:ffe5:1::f1]) by mx1.freebsd.org (Postfix) with ESMTP id 1FB908FC0A for ; Tue, 15 Sep 2009 19:28:20 +0000 (UTC) Received: from smtp-auth.h3q.net (smtp-auth.h3q.net [127.0.0.1]) (Authenticated sender: hidden) by mx1.h3q.net (Postfix) with ESMTPSA id 3D47E33DF8 ; Tue, 15 Sep 2009 21:28:18 +0200 (CEST) Message-ID: <4AAFEACA.20109@shapeshifter.se> Date: Tue, 15 Sep 2009 21:28:10 +0200 From: Fredrik Lindberg User-Agent: Thunderbird 2.0.0.23 (X11/20090912) MIME-Version: 1.0 To: gary.jennejohn@freenet.de References: <20090914094805.47a01eab@Picasso.Zahemszky.HU> <20090914132602.79faca57@ernst.jennejohn.org> <20090914142916.31e69226@Picasso.Zahemszky.HU> <20090914153800.38fb8e7a@ernst.jennejohn.org> <4AAE7259.80200@shapeshifter.se> <20090914190136.773147aa@ernst.jennejohn.org> <20090915150740.71c10b45@ernst.jennejohn.org> In-Reply-To: <20090915150740.71c10b45@ernst.jennejohn.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@freebsd.org Subject: Re: virtualbox cannot compile 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, 15 Sep 2009 19:28:20 -0000 Gary Jennejohn wrote: > On Mon, 14 Sep 2009 19:01:36 +0200 > Gary Jennejohn wrote: > >> Hmm. My sources are newer than the kernel I'm using. Don't know whether >> that is a factor or not. >> > > Well, I did a "make buildkernel" before trying to build the port. > > It still fails because it can't find machine/_align.h. > > The symbolic link "machine" only exists under /usr/obj/sys/amd64 (my > KERNCONF is amd64). > > The only way I can get the port to build is by creating > work/virtualbox-3.0.51r22902/include/machine -> /sys/amd64/include > by hand. > > There definitely seems to be a bug somewhere here. Building the port > worked in older versions before the new networking stuff was added. > Does your installed world (particularly your installed header files) match your current sources? If they don't I suggest you do a {build,install}world and see if that solves it. As a data point, I successfully compiled the vbox modules on an i386 9-current (from today) machine using the virtualbox version in ports. Fredrik From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 21:35:48 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 6BB171065672 for ; Tue, 15 Sep 2009 21:35:48 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) Received: from zivm-out3.uni-muenster.de (ZIVM-OUT3.UNI-MUENSTER.DE [128.176.192.18]) by mx1.freebsd.org (Postfix) with ESMTP id 003138FC0C for ; Tue, 15 Sep 2009 21:35:47 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.44,392,1249250400"; d="scan'208";a="13394399" Received: from zivmaildisp2.uni-muenster.de (HELO ZIVMAILUSER01.UNI-MUENSTER.DE) ([128.176.188.143]) by zivm-relay3.uni-muenster.de with ESMTP; 15 Sep 2009 23:35:46 +0200 Received: by ZIVMAILUSER01.UNI-MUENSTER.DE (Postfix, from userid 149459) id A7E411B0766; Tue, 15 Sep 2009 23:35:46 +0200 (CEST) Date: Tue, 15 Sep 2009 23:35:46 +0200 (CEST) From: Alexander Best Sender: Organization: Westfaelische Wilhelms-Universitaet Muenster To: Alexander Leidinger Message-ID: In-Reply-To: <20090915140444.11146ndqvz52wn40@webmail.leidinger.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: emulation@FreeBSD.org Subject: Re: Buffer overflow detected by REDZONE with linuxulator 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, 15 Sep 2009 21:35:48 -0000 Alexander Leidinger schrieb am 2009-09-15: > Quoting Alexander Best (from Tue, > 15 Sep 2009 13:33:55 +0200 (CEST)): > >Alexander Leidinger schrieb am 2009-09-15: > >>Are you interested to help update the corresponding FreeBSD wiki > >>page? If yes, register there and we can hand out write access. > >that's a coincidence. i mailed Simon L. Nielsen a few days ago > >asking him if > >he could give me write permission so i could add some info to the > >linux-kernel > >wiki page. my wikiname is "AlexanderBest". > The write access is granted now. > >>Is your system running in 32bit or 64bit mode? Do you know which > >>ltp-tests cause those messages to appear? > >i'm running the 32bit version of freebsd. i'll try to find out > >which tests > >exactly are causing the overflow. > If you want you can add the error messages you get to the wiki page > in a sensible place... thanks. i've just submitted a PR describing the problem in detail. here it is: http://www.freebsd.org/cgi/query-pr.cgi?pr=138860 i'll add a note of it to the linux-kernel wiki page and see if i can provide some more updates to the site. cheers. alex > Bye, > Alexander. > -- > The two things that can get you into trouble > quicker than anything else are fast women and slow horses. > http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = > B0063FE7 > http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = > 72077137 From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 22:33:00 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 04907106566B for ; Tue, 15 Sep 2009 22:33:00 +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 B75168FC0A for ; Tue, 15 Sep 2009 22:32:59 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 3DD481E00312; Wed, 16 Sep 2009 00:32:58 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n8FMUdcI047022; Wed, 16 Sep 2009 00:30:39 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.3/8.14.3/Submit) id n8FMUdei047021; Wed, 16 Sep 2009 00:30:39 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Wed, 16 Sep 2009 00:30:39 +0200 To: xorquewasp@googlemail.com Message-ID: <20090915223039.GA46462@triton8.kn-bremen.de> References: <20090914051402.GB44046@logik.internal.network> <20090915173935.GA34173@logik.internal.network> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090915173935.GA34173@logik.internal.network> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-emulation@freebsd.org Subject: Re: Problems with qemu networking on 7.2-RELEASE-amd64? 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, 15 Sep 2009 22:33:00 -0000 On Tue, Sep 15, 2009 at 06:39:35PM +0100, xorquewasp@googlemail.com wrote: > On 2009-09-14 06:14:02, xorquewasp@googlemail.com wrote: > > Hello. Hi! > > > > I'm having horrendous trouble getting qemu to do networking > > on 7.2-RELEASE-amd64. I've not had any trouble on previous > > versions of FreeBSD and qemu so this comes as a bit of a surprise. > > So, er, nobody's using this rather common setup on 7.2-RELEASE-amd64? > > I don't know if this is a problem with qemu or a problem with if_bridge.ko. > > Again: > > NetBSD x86 sees no NIC at all. > > OpenBSD x86 sees a NIC but it doesn't work ("ne3: device timeout"). > Well thats unrelated, I'd say these guests just don't like most of qemu's emulated nic choices. I don't remember about OpenBSD, but NetBSD seemed to only really like the `pcnet' one, and that only after I patched qemu's bios, see this thread: http://lists.freebsd.org/pipermail/freebsd-emulation/2009-May/006207.html > Windows XP sees a NIC, can do DNS resolution but no outgoing TCP connection > works. > > NetBSD SPARC sees a NIC, can do DNS resolution but no outgoing TCP connection > works. I can connect into the guest via SSH. > Well if the guest's packets reach the tap interface and come back I'd say that mostly rules out qemu to be the cause of the problem, and also this works just fine for me on stable/7 and stable/8, and I guess I did it on 7.2 as well... > This isn't a firewall issue: I can watch the pflog0, re0 and tap0 devices > with tcpdump and clearly see that nothing is being blocked. > > The TCP outbound connections simply pass into the tap device and then apparently > don't even get as far as the bridge: > > Working DNS resolution: > 133779 rule 22/0(match): pass in on tap0: 10.1.3.12.65529 > 10.2.1.7.53: UDP, length 32 > 000006 rule 23/0(match): pass out on bridge0: 10.1.3.12.65529 > 10.2.1.7.53: UDP, length 32 > > Apparently broken TCP/IP to google.com: > 189768 rule 24/0(match): pass in on tap0: 10.1.3.12.65534 > 216.239.59.147.80: tcp 0 > > There's no "pass out on bridge0" or "pass out on re0" as expected. > Hmm have you tried disabling pf to completely rule out any issues with it? Also you may need to enable ip forwarding (net.inet.ip.forwarding sysctl, also settable via gateway_enable in rc.conf) and/or play with the net.link.bridge.pfil_* sysctls. (see the if_bridge manpage.) > I've tried the recent qemu-devel patch but it's so unstable that it seems > nearly any execution path results in a segmentation fault. > Oops :) Backtraces may be interesting there. Also which one you tried, the 0.11 rc2 one or the git head snapshot? > Any help would be appreciated - I have work to do that requires access > to these VMs and having no outgoing network connectivity is crippling. Oh and you could also try -net pcap... Or of course vbox too. HTH, Juergen From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 23:00:18 2009 Return-Path: Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 46A961065670 for ; Tue, 15 Sep 2009 23:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 34DDF8FC14 for ; Tue, 15 Sep 2009 23:00:18 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n8FN0HBZ081805 for ; Tue, 15 Sep 2009 23:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n8FN0Hh3081804; Tue, 15 Sep 2009 23:00:17 GMT (envelope-from gnats) Date: Tue, 15 Sep 2009 23:00:17 GMT Message-Id: <200909152300.n8FN0Hh3081804@freefall.freebsd.org> To: freebsd-emulation@FreeBSD.org From: Alexander Best Cc: Subject: Re: kern/56451: [linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU model X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Best List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Sep 2009 23:00:18 -0000 The following reply was made to PR kern/56451; it has been noted by GNATS. From: Alexander Best To: Cc: Subject: Re: kern/56451: [linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU model Date: Wed, 16 Sep 2009 00:50:15 +0200 (CEST) i can confirm that this problem still exists in 9.0-CURRENT (FreeBSD otaku 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r197043: Sat Sep 12 01:07:56 CEST 2009 root@otaku:/usr/obj/usr/src/sys/ARUNDEL i386). from `dmesg`: Timecounter "i8254" frequency 1193182 Hz quality 0 CPU: Intel(R) Pentium(R) Dual CPU E2160 @ 1.80GHz (1800.01-MHz 686-class CPU) Origin = "GenuineIntel" Id = 0x6fd Stepping = 13 Features=0xbfebfbff Features2=0xe39d AMD Features=0x20100000 AMD Features2=0x1 TSC: P-state invariant from `cat /compat/linux/proc/cpuinfo`: processor : 0 vendor_id : GenuineIntel cpu family : 6 model : 7 model name : Intel(R) Pentium(R) Dual CPU E2160 @ 1.80GHz stepping : 13 processor : 1 vendor_id : GenuineIntel cpu family : 6 model : 7 model name : Intel(R) Pentium(R) Dual CPU E2160 @ 1.80GHz stepping : 13 flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 b19 b21 mmxext mmx fxsr xmm sse2 b27 b28 b29 3dnow cpu MHz : 1800.01 bogomips : 1800.01 cheers. alex From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 15 23:40:09 2009 Return-Path: Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B2B6106568F for ; Tue, 15 Sep 2009 23:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D48F38FC19 for ; Tue, 15 Sep 2009 23:40:08 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n8FNe7mq022431 for ; Tue, 15 Sep 2009 23:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n8FNe7Ll022425; Tue, 15 Sep 2009 23:40:07 GMT (envelope-from gnats) Date: Tue, 15 Sep 2009 23:40:07 GMT Message-Id: <200909152340.n8FNe7Ll022425@freefall.freebsd.org> To: freebsd-emulation@FreeBSD.org From: Alexander Best Cc: Subject: Re: ports/135337: [PATCH] emulators/linux_base-f10: incorrect bash usage X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Best List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Sep 2009 23:40:09 -0000 The following reply was made to PR ports/135337; it has been noted by GNATS. From: Alexander Best To: Cc: Subject: Re: ports/135337: [PATCH] emulators/linux_base-f10: incorrect bash usage Date: Wed, 16 Sep 2009 01:39:33 +0200 (CEST) did anybody ever try the patch enclosed in this PR ? http://www.freebsd.org/cgi/query-pr.cgi?pr=36952 does it fix the issue? cheers. alex From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 01:10:04 2009 Return-Path: Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 05ECD106566C for ; Wed, 16 Sep 2009 01:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E8BF88FC12 for ; Wed, 16 Sep 2009 01:10:03 +0000 (UTC) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n8G1A3KK011856 for ; Wed, 16 Sep 2009 01:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n8G1A32T011855; Wed, 16 Sep 2009 01:10:03 GMT (envelope-from gnats) Date: Wed, 16 Sep 2009 01:10:03 GMT Message-Id: <200909160110.n8G1A32T011855@freefall.freebsd.org> To: freebsd-emulation@FreeBSD.org From: Alexander Best Cc: Subject: Re: kern/29698: [linux] [patch] linux ipcs doesn'work X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Alexander Best List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Sep 2009 01:10:04 -0000 The following reply was made to PR kern/29698; it has been noted by GNATS. From: Alexander Best To: Cc: Subject: Re: kern/29698: [linux] [patch] linux ipcs doesn'work Date: Wed, 16 Sep 2009 03:02:25 +0200 (CEST) emulators/linux_dist-gentoo-stage3 comes with `ipcs` and `ipcrm`. running ipcs [-s|-a] works without any problems. `/usr/local/gentoo-stage3/usr/bin/ipcs -a`: ------ Shared Memory Segments -------- key shmid owner perms bytes nattch status ------ Semaphore Arrays -------- key semid owner perms nsems 0x74738b52 65536 arundel 600 1 ------ Message Queues -------- key msqid owner perms used-bytes messages `/usr/local/gentoo-stage3/usr/bin/ipcs -s`: ------ Semaphore Arrays -------- key semid owner perms nsems 0x74738b52 65536 arundel 600 1 ` /usr/local/gentoo-stage3/usr/bin/ipcrm -s 65536` `/usr/local/gentoo-stage3/usr/bin/ipcs -s`: ------ Semaphore Arrays -------- key semid owner perms nsems question is if `ipcs`/`ipcrm` is needed in emulators/linux_base-f*. cheers. alex p.s.: i'm running - FreeBSD otaku 9.0-CURRENT FreeBSD 9.0-CURRENT #0 r197234: Wed Sep 16 01:10:00 CEST 2009 root@otaku:/usr/obj/usr/src/sys/ARUNDEL i386 From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 06:19:03 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 460241065676 for ; Wed, 16 Sep 2009 06:19:03 +0000 (UTC) (envelope-from xorquewasp@googlemail.com) Received: from mail-ew0-f208.google.com (mail-ew0-f208.google.com [209.85.219.208]) by mx1.freebsd.org (Postfix) with ESMTP id C8E3D8FC17 for ; Wed, 16 Sep 2009 06:19:02 +0000 (UTC) Received: by ewy4 with SMTP id 4so4771616ewy.36 for ; Tue, 15 Sep 2009 23:19:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:received:received:received:date:from:to:cc :subject:message-id:references:mime-version:content-type :content-disposition:in-reply-to; bh=Auyj/dwrz1XnkGibg3N6my8lPVxz7PxPsh/i3h6Sxkw=; b=QoMAx+Pvz2Hu8mBkcxfZSHsVr33UO8BuQ4NVP873ho6JIAVA5tq3BZZ1vxpN4cKK8l ASgN0ztP045t84Ral0+tvBnPt2/ZObvgf5/eXppPWHDK7QUZM/SCkHpW8JPEBTee/S+D DAPqhTEiok/0iTSEl8qUIt1o4W5OtJJ3I9XGI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to; b=XBb8CG5BZHXY3E35YKNN5EnFUPIxF3XVtskDfvnCHi1aqqm5rFg1s9HCkulqsJi9y4 l2KkqfStGmdrCjUL4OYI+chObuheRumMrcLy3ch2QpdYp+JH8q2lNRlezH2ooJxML7He Ber6iR5rpKHPmIxRqW1gVtPWK18oz6DOLlTjE= Received: by 10.211.139.13 with SMTP id r13mr9450497ebn.64.1253081941841; Tue, 15 Sep 2009 23:19:01 -0700 (PDT) Received: from viper.internal.network (dsl78-143-222-147.in-addr.fast.co.uk [78.143.222.147]) by mx.google.com with ESMTPS id 28sm1429755eyg.12.2009.09.15.23.18.59 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 15 Sep 2009 23:18:59 -0700 (PDT) Received: by viper.internal.network (Postfix, from userid 11001) id 23CE64AC57; Wed, 16 Sep 2009 07:18:58 +0100 (BST) Date: Wed, 16 Sep 2009 07:18:58 +0100 From: xorquewasp@googlemail.com To: Juergen Lock Message-ID: <20090916061858.GA70047@logik.internal.network> References: <20090914051402.GB44046@logik.internal.network> <20090915173935.GA34173@logik.internal.network> <20090915223039.GA46462@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090915223039.GA46462@triton8.kn-bremen.de> Cc: freebsd-emulation@freebsd.org Subject: Re: Problems with qemu networking on 7.2-RELEASE-amd64? 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, 16 Sep 2009 06:19:03 -0000 On 2009-09-16 00:30:39, Juergen Lock wrote: > Hi! 'Lo. > > Again: > > > > NetBSD x86 sees no NIC at all. > > > > OpenBSD x86 sees a NIC but it doesn't work ("ne3: device timeout"). > > > Well thats unrelated, I'd say these guests just don't like most of qemu's > emulated nic choices. I don't remember about OpenBSD, but NetBSD seemed > to only really like the `pcnet' one, and that only after I patched qemu's > bios, see this thread: > http://lists.freebsd.org/pipermail/freebsd-emulation/2009-May/006207.html > That's good to know at least... if you can call it that. I'll try the new BIOS. > Well if the guest's packets reach the tap interface and come back I'd > say that mostly rules out qemu to be the cause of the problem, and also > this works just fine for me on stable/7 and stable/8, and I guess I did > it on 7.2 as well... > Hmm have you tried disabling pf to completely rule out any issues with > it? Also you may need to enable ip forwarding (net.inet.ip.forwarding > sysctl, also settable via gateway_enable in rc.conf) and/or play with > the net.link.bridge.pfil_* sysctls. (see the if_bridge manpage.) Hm! Some quite disturbing results with the various sysctls. I tried different combinations of the net.link.bridge.pfil_* controls and got some strange results. All of the results below are the output of tcpdump watching pflog0 when I execute 'telnet www.google.com 80' in the guest VM (NetBSD SPARC): net.link.bridge.ipfw: 0 net.link.bridge.log_stp: 0 net.link.bridge.pfil_local_phys: 0 net.link.bridge.pfil_member: 0 net.link.bridge.pfil_bridge: 1 net.link.bridge.ipfw_arp: 0 net.link.bridge.pfil_onlyip: 0 Connection does appear to work. Note the strange 'block in on bridge0' at the end... 000009 rule 23/0(match): pass out on bridge0: 10.1.3.12.65531 > 10.2.1.7.53: UDP, length 32 004923 rule 23/0(match): pass in on bridge0: 10.1.3.12.65530 > 10.2.1.7.53: UDP, length 32 000004 rule 23/0(match): pass out on bridge0: 10.1.3.12.65530 > 10.2.1.7.53: UDP, length 32 004191 rule 25/0(match): pass in on bridge0: 10.1.3.12.65533 > 216.239.59.99.80: tcp 0 000008 rule 25/0(match): pass out on bridge0: 10.1.3.12.65533 > 216.239.59.99.80: tcp 0 6. 193397 rule 0/0(match): block in on bridge0: 10.1.3.12.65534 > 216.239.59.99.80: tcp 0 ---------------------------------------------------------------------- net.link.bridge.ipfw: 0 net.link.bridge.log_stp: 0 net.link.bridge.pfil_local_phys: 0 net.link.bridge.pfil_member: 1 net.link.bridge.pfil_bridge: 0 net.link.bridge.ipfw_arp: 0 net.link.bridge.pfil_onlyip: 0 Connection doesn't work but is correctly blocked by pf, anyway. 38. 968850 rule 22/0(match): pass in on tap0: 10.1.3.12.65529 > 10.2.1.7.53: UDP, length 32 000008 rule 1/0(match): block out on re0: 10.1.3.12.65529 > 10.2.1.7.53: UDP, length 32 5. 001455 rule 1/0(match): block out on re0: 10.1.3.12.65529 > 10.2.1.7.53: UDP, length 32 ---------------------------------------------------------------------- net.link.bridge.ipfw: 0 net.link.bridge.log_stp: 0 net.link.bridge.pfil_local_phys: 1 net.link.bridge.pfil_member: 0 net.link.bridge.pfil_bridge: 0 net.link.bridge.ipfw_arp: 0 net.link.bridge.pfil_onlyip: 0 (works, no log) ---------------------------------------------------------------------- net.link.bridge.ipfw: 0 net.link.bridge.log_stp: 0 net.link.bridge.pfil_local_phys: 1 net.link.bridge.pfil_member: 0 net.link.bridge.pfil_bridge: 1 net.link.bridge.ipfw_arp: 0 net.link.bridge.pfil_onlyip: 0 Works (explicitly allowed by pf rules). 408422 rule 23/0(match): pass in on bridge0: 10.1.3.12.65525 > 10.2.1.7.53: UDP, length 32 000007 rule 23/0(match): pass out on bridge0: 10.1.3.12.65525 > 10.2.1.7.53: UDP, length 32 003908 rule 23/0(match): pass in on bridge0: 10.1.3.12.65524 > 10.2.1.7.53: UDP, length 32 000005 rule 23/0(match): pass out on bridge0: 10.1.3.12.65524 > 10.2.1.7.53: UDP, length 32 004390 rule 25/0(match): pass in on bridge0: 10.1.3.12.65531 > 216.239.59.99.80: tcp 0 000008 rule 25/0(match): pass out on bridge0: 10.1.3.12.65531 > 216.239.59.99.80: tcp 0 ---------------------------------------------------------------------- net.link.bridge.ipfw: 0 net.link.bridge.log_stp: 0 net.link.bridge.pfil_local_phys: 1 net.link.bridge.pfil_member: 1 net.link.bridge.pfil_bridge: 1 net.link.bridge.ipfw_arp: 0 net.link.bridge.pfil_onlyip: 0 Note that suddenly, outbound TCP no longer works (but isn't blocked, according to pf) and seems to go no further than the tap0 device: 18. 884422 rule 22/0(match): pass in on tap0: 10.1.3.12.65523 > 10.2.1.7.53: UDP, length 32 000008 rule 23/0(match): pass out on bridge0: 10.1.3.12.65523 > 10.2.1.7.53: UDP, length 32 003237 rule 22/0(match): pass in on tap0: 10.1.3.12.65522 > 10.2.1.7.53: UDP, length 32 000005 rule 23/0(match): pass out on bridge0: 10.1.3.12.65522 > 10.2.1.7.53: UDP, length 32 187188 rule 24/0(match): pass in on tap0: 10.1.3.12.65530 > 216.239.59.147.80: tcp 0 This suggests there's some sort of spooky interaction between pf and bridge when those three sysctls are all enabled - connections are apparently dropped and not logged. That said, I can get something that works and is correctly filtered with pfil_local_phys and pfil_bridge enabled. > > I've tried the recent qemu-devel patch but it's so unstable that it seems > > nearly any execution path results in a segmentation fault. > > > Oops :) Backtraces may be interesting there. Also which one you tried, > the 0.11 rc2 one or the git head snapshot? I will get to the backtraces. The version I used was the patched port in your other thread: http://lists.freebsd.org/pipermail/freebsd-emulation/2009-September/006760.html Thanks for the minor enlightenment so far! xw From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 07:34: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 E13D21065679 for ; Wed, 16 Sep 2009 07:34:43 +0000 (UTC) (envelope-from gary.jennejohn@freenet.de) Received: from mout7.freenet.de (mout7.freenet.de [IPv6:2001:748:100:40::2:9]) by mx1.freebsd.org (Postfix) with ESMTP id 7BB7C8FC0C for ; Wed, 16 Sep 2009 07:34:43 +0000 (UTC) Received: from [195.4.92.15] (helo=5.mx.freenet.de) by mout7.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #92) id 1Mnp2I-0000al-4l; Wed, 16 Sep 2009 09:34:42 +0200 Received: from td7ad.t.pppool.de ([89.55.215.173]:12925 helo=ernst.jennejohn.org) by 5.mx.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #94) id 1Mnp2H-0003I7-SA; Wed, 16 Sep 2009 09:34:42 +0200 Date: Wed, 16 Sep 2009 09:34:41 +0200 From: Gary Jennejohn To: Fredrik Lindberg Message-ID: <20090916093441.0a0ede25@ernst.jennejohn.org> In-Reply-To: <4AAFEACA.20109@shapeshifter.se> References: <20090914094805.47a01eab@Picasso.Zahemszky.HU> <20090914132602.79faca57@ernst.jennejohn.org> <20090914142916.31e69226@Picasso.Zahemszky.HU> <20090914153800.38fb8e7a@ernst.jennejohn.org> <4AAE7259.80200@shapeshifter.se> <20090914190136.773147aa@ernst.jennejohn.org> <20090915150740.71c10b45@ernst.jennejohn.org> <4AAFEACA.20109@shapeshifter.se> 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 Cc: freebsd-emulation@freebsd.org Subject: Re: virtualbox cannot compile 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: Wed, 16 Sep 2009 07:34:44 -0000 On Tue, 15 Sep 2009 21:28:10 +0200 Fredrik Lindberg wrote: > Does your installed world (particularly your installed header files) > match your current sources? If they don't I suggest you do a > {build,install}world and see if that solves it. > Ah yes, how stupid of me. I haven't done an installworld for a week or so. OK, that explains everything. --- Gary Jennejohn From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 13:40: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 EAE531065695 for ; Wed, 16 Sep 2009 13:40:51 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from mail.farley.org (mail.farley.org [IPv6:2001:470:1f0f:20:2::11]) by mx1.freebsd.org (Postfix) with ESMTP id 9AD308FC24 for ; Wed, 16 Sep 2009 13:40:51 +0000 (UTC) Received: from thor.farley.org (HPooka@thor.farley.org [IPv6:2001:470:1f0f:20:1::5]) by mail.farley.org (8.14.3/8.14.3) with ESMTP id n8GDenDx086869; Wed, 16 Sep 2009 08:40:49 -0500 (CDT) (envelope-from scf@FreeBSD.org) Date: Wed, 16 Sep 2009 08:40:49 -0500 (CDT) From: "Sean C. Farley" To: Boris Samorodov In-Reply-To: <80173957@bb.ipt.ru> Message-ID: References: <80173957@bb.ipt.ru> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Spam-Status: No, score=-2.8 required=4.0 tests=AWL,BAYES_00,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on mail.farley.org Cc: freebsd-emulation@FreeBSD.org Subject: Re: changes in linux ports infrastructure 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, 16 Sep 2009 13:40:52 -0000 On Mon, 14 Sep 2009, Boris Samorodov wrote: > Dear linux ports maintainers, > > I've just committed a new graphics/linux-f10-libGLU port and > apropriate changes to linux ports infrastructure. I'm going to commit > the following patch which uses the new port and its infrastructure. > > The main goal is to give users of linux nvidia drivers to use more > recent libGLU packages. > > Those changes do not touch default packages but imho it will be good > to commit the patch before 8.0-RELEASE. Please, give it a try and > submit a followup. Thanks! The patch to games/linux-nwnclient does work. When you commit it, would you also apply the following patch which helps a bit? :) I think it has been broken since March, but I just noticed. Two things I have noticed in regard to this port, the Nvidia driver and Fedora 8 or 10 as base: 1. Performance is poor until you change the resolution. It does not matter what the starting resolution or the changed resolution is. Changing back to the starting resolution keeps the good performance. This is very odd. 2. The game core dumps upon exit, but I have not had time to look into this. ---------------------------------------- --- Makefile.orig 2009-09-14 22:36:27.000000000 -0500 +++ Makefile 2009-09-14 22:36:27.000000000 -0500 @@ -29,7 +29,7 @@ NO_BUILD= yes ONLY_FOR_ARCHS= i386 USE_LINUX= yes -USE_LINUX_APPS= sdl12 xorglibs +USE_LINUX_APPS+=sdl12 xorglibs NWNDATADIR= ${LOCALBASE}/share/nwndata PLIST_SUB+= NWNVERSION="${PORTVERSION:S/.//}" ---------------------------------------- Sean -- scf@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 14:42:24 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 B2CD01065670 for ; Wed, 16 Sep 2009 14:42:24 +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 6BFFD8FC14 for ; Wed, 16 Sep 2009 14:42:24 +0000 (UTC) Received: from [85.173.16.166] (helo=izar) by services.ipt.ru with esmtpa (Exim 4.54 (FreeBSD)) id 1MnviB-000Jbg-Cp; Wed, 16 Sep 2009 18:42:23 +0400 To: "Sean C. Farley" References: <80173957@bb.ipt.ru> From: Boris Samorodov Date: Wed, 16 Sep 2009 18:44:18 +0400 In-Reply-To: (Sean C. Farley's message of "Wed\, 16 Sep 2009 08\:40\:49 -0500 \(CDT\)") Message-ID: <23039453@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: changes in linux ports infrastructure 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, 16 Sep 2009 14:42:24 -0000 "Sean C. Farley" writes: > On Mon, 14 Sep 2009, Boris Samorodov wrote: > >> Dear linux ports maintainers, >> >> I've just committed a new graphics/linux-f10-libGLU port and >> apropriate changes to linux ports infrastructure. I'm going to >> commit the following patch which uses the new port and its >> infrastructure. >> >> The main goal is to give users of linux nvidia drivers to use more >> recent libGLU packages. >> >> Those changes do not touch default packages but imho it will be good >> to commit the patch before 8.0-RELEASE. Please, give it a try and >> submit a followup. Thanks! > > The patch to games/linux-nwnclient does work. When you commit it, > would you also apply the following patch which helps a bit? :) I > think it has been broken since March, but I just noticed. Hm, yes, I see it. I'll move the NVIDIA test down, just before PLIST_SUB, if you don't mind (as it is done at other ports). > Two things I have noticed in regard to this port, the Nvidia driver > and Fedora 8 or 10 as base: > 1. Performance is poor until you change the resolution. It does not > matter what the starting resolution or the changed resolution is. > Changing back to the starting resolution keeps the good performance. > This is very odd. Which video card/driver/dri/linux-dri port are you using? > 2. The game core dumps upon exit, but I have not had time to look into > this. Can't say anything about this case. -- WBR, bsam From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 14:58: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 E468A10656CE for ; Wed, 16 Sep 2009 14:58:31 +0000 (UTC) (envelope-from scf@FreeBSD.org) Received: from mail.farley.org (mail.farley.org [IPv6:2001:470:1f0f:20:2::11]) by mx1.freebsd.org (Postfix) with ESMTP id 9073C8FC13 for ; Wed, 16 Sep 2009 14:58:31 +0000 (UTC) Received: from thor.farley.org (HPooka@thor.farley.org [IPv6:2001:470:1f0f:20:1::5]) by mail.farley.org (8.14.3/8.14.3) with ESMTP id n8GEwUQJ063533; Wed, 16 Sep 2009 09:58:30 -0500 (CDT) (envelope-from scf@FreeBSD.org) Date: Wed, 16 Sep 2009 09:58:30 -0500 (CDT) From: "Sean C. Farley" To: Boris Samorodov In-Reply-To: <23039453@ipt.ru> Message-ID: References: <80173957@bb.ipt.ru> <23039453@ipt.ru> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Spam-Status: No, score=-2.8 required=4.0 tests=AWL,BAYES_00,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on mail.farley.org Cc: freebsd-emulation@FreeBSD.org Subject: Re: changes in linux ports infrastructure 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, 16 Sep 2009 14:58:32 -0000 On Wed, 16 Sep 2009, Boris Samorodov wrote: > "Sean C. Farley" writes: >> On Mon, 14 Sep 2009, Boris Samorodov wrote: >> >>> Dear linux ports maintainers, >>> >>> I've just committed a new graphics/linux-f10-libGLU port and >>> apropriate changes to linux ports infrastructure. I'm going to >>> commit the following patch which uses the new port and its >>> infrastructure. >>> >>> The main goal is to give users of linux nvidia drivers to use more >>> recent libGLU packages. >>> >>> Those changes do not touch default packages but imho it will be good >>> to commit the patch before 8.0-RELEASE. Please, give it a try and >>> submit a followup. Thanks! >> >> The patch to games/linux-nwnclient does work. When you commit it, >> would you also apply the following patch which helps a bit? :) I >> think it has been broken since March, but I just noticed. > > Hm, yes, I see it. I'll move the NVIDIA test down, just before > PLIST_SUB, if you don't mind (as it is done at other ports). I do not mind. Thank you. >> Two things I have noticed in regard to this port, the Nvidia driver >> and Fedora 8 or 10 as base: >> 1. Performance is poor until you change the resolution. It does not >> matter what the starting resolution or the changed resolution is. >> Changing back to the starting resolution keeps the good >> performance. This is very odd. > > Which video card/driver/dri/linux-dri port are you using? Nvidia 8800 GTS, nvidia-driver-185.18.31 (same issue with some previous drivers) and linux-f10-libGLU-7.2. linux-ut (does not use libGLU) does not have this issue nor does sauerbraten. >> 2. The game core dumps upon exit, but I have not had time to look >> into this. > > Can't say anything about this case. No problem. When I get more time, I will try examine it in more detail. The game plays fine; it is just when exiting. Same as above where linux-ut and sauerbraten do not have this issue. Sean -- scf@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 15:14:34 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 6F37D1065672 for ; Wed, 16 Sep 2009 15:14:34 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-vw0-f189.google.com (mail-vw0-f189.google.com [209.85.212.189]) by mx1.freebsd.org (Postfix) with ESMTP id 13CE28FC08 for ; Wed, 16 Sep 2009 15:14:33 +0000 (UTC) Received: by vws27 with SMTP id 27so3200494vws.3 for ; Wed, 16 Sep 2009 08:14:33 -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:content-type; bh=RSbgNUsn/Pgz/u82+4V0L4JPogDrNoNzTHztoyIYPvk=; b=fEomiCO8ZxSmy4OKq94K+vSpXtbvBa7KtN4wSKW8KwUUes6rCKObC8RlWDeDe/2G9t 8QNFMLuyFM7XhaYvVju/T9T3ag1XJ0OZGejdtaCuxTWNRXcamtadolft+tQlyrij0/et SYGAQXKNqiwLnAVF1TiFub26FG2UB3HTCmrY0= 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 :content-type; b=jw2WGgT5CtXVyOEJUqjXD2+xYiX1JAzVYcKQ7v2iZ76Kp2eUeeYzpRu9WEn2cGMABa qM/UhLg/5qLyW5JiLHc9f9s4twPMraJUoNxo18PecfVbTuGXOEm0X+J0pf+mIe88L37I DJvnJJ3FHUQLAm0t1xGJNfTUoDT9zHh+VWgRU= MIME-Version: 1.0 Received: by 10.220.79.168 with SMTP id p40mr12564862vck.110.1253112143609; Wed, 16 Sep 2009 07:42:23 -0700 (PDT) In-Reply-To: <790a9fff0701261550n5982c0chea94dbfa208439da@mail.gmail.com> References: <790a9fff0701060012x40063f48pc842510b082df5a5@mail.gmail.com> <20070106130830.3c2e6d98@Magellan.Leidinger.net> <790a9fff0701132017g6c081567la4a759cea4618535@mail.gmail.com> <20070114105239.GA6955@stud.fit.vutbr.cz> <790a9fff0701141254s2c92b10ag6b042a019bc283c@mail.gmail.com> <20070115105921.wbv2yrd4bkgokcko@webmail.leidinger.net> <790a9fff0701252321x2c7bea62od928766849e32c68@mail.gmail.com> <790a9fff0701261550n5982c0chea94dbfa208439da@mail.gmail.com> Date: Wed, 16 Sep 2009 09:42:22 -0500 Message-ID: <790a9fff0909160742p1043e643i69febf5a7e88a97e@mail.gmail.com> From: Scot Hetzel To: freebsd-emulation@freebsd.org Content-Type: multipart/mixed; boundary=0016e64603c82f027f0473b2e8f6 Subject: Fwd: linuxolator: proc/filesystems and sysfs function implementations 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, 16 Sep 2009 15:14:34 -0000 --0016e64603c82f027f0473b2e8f6 Content-Type: text/plain; charset=ISO-8859-1 I see that Alexander Best had added sysfs to the linux-kernel wiki. Attached is the sysfs implementation that I had created back in 2007, and was reviewed on this list. Could someone commit this implentation to P4 or at least put it up some where so others can improve on it. Thanks, Scot --0016e64603c82f027f0473b2e8f6 Content-Type: text/x-diff; charset=US-ASCII; name="sysfs4.patch" Content-Disposition: attachment; filename="sysfs4.patch" Content-Transfer-Encoding: base64 X-Attachment-Id: f_exewt7ib SW5kZXg6IGNvbXBhdC9saW5wcm9jZnMvbGlucHJvY2ZzLmMKPT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PQpSQ1MgZmlsZTog L2hvbWUvbmN2cy9zcmMvc3lzL2NvbXBhdC9saW5wcm9jZnMvbGlucHJvY2ZzLmMsdgpyZXRyaWV2 aW5nIHJldmlzaW9uIDEuMTA1CmRpZmYgLXUgLXIxLjEwNSBsaW5wcm9jZnMuYwotLS0gY29tcGF0 L2xpbnByb2Nmcy9saW5wcm9jZnMuYwkyMSBKYW4gMjAwNyAxMzoxODo1MiAtMDAwMAkxLjEwNQor KysgY29tcGF0L2xpbnByb2Nmcy9saW5wcm9jZnMuYwkyNiBKYW4gMjAwNiAwMTo1NzowOCAtMDAw MApAQCAtMTA0MSw2ICsxMTMzLDUxIEBACiB9CiAKIC8qCisgKiBGaWxsZXIgZnVuY3Rpb24gZm9y IHByb2MvZmlsZXN5c3RlbXMKKyAqLworc3RhdGljIGludAorbGlucHJvY2ZzX2RvZmlsZXN5c3Rl bXMoUEZTX0ZJTExfQVJHUykKK3sKKwlpbnQgaSwgZnNfZmxhZ3M7CisJY2hhciBmc19uYW1lW01G U05BTUVMRU5dOworCXN0cnVjdCB2ZnNjb25mICp2ZnNwOworCXN0YXRpYyBjaGFyICpsaW51eF9u b2RldmZzW10gPSB7CisJCS8qIEZpbGVzeXN0ZW1zIGluY2x1ZGVkIHdpdGggRnJlZUJTRCAqLwor CQkiY29kYSIsICJkZXZmcyIsICJmZGVzY2ZzIiwgIm1mcyIsICJuZnMiLAorCQkibmZzNCIsICJu dWxsZnMiLCAicG9ydGFsZnMiLCAicHJvY2ZzIiwKKwkJImxpbnByb2NmcyIsICJzbWJmcyIsICJs aW5zeXNmcyIsICJ1bmlvbmZzIiwKKworCQkvKiBGaWxlc3lzdGVtcyBpbmNsdWRlZCB3aXRoIExp bnV4ICovCisJCSI5cCIsICJhZnMiLCAiYXV0b2ZzIiwgImNpZnMiLCAiY29uZmlnZnMiLAorCQki ZGVidWdmcyIsICJkZXZwdHMiLCAiZnVzZSIsICJob3N0ZnMiLAorCQkiaHBwZnMiLCAiaHVnZXRs YmZzIiwgImpmZnMyIiwgIm5jcGZzIiwKKwkJIm5mc2QiLCAib3BlbnByb21mcyIsICJyYW1mcyIs ICJyb290ZnMiLAorCisJCU5VTEwKKwl9OworCisJVEFJTFFfRk9SRUFDSCh2ZnNwLCAmdmZzY29u ZiwgdmZjX2xpc3QpIHsKKworCQkvKiBEb2VzIHRoZSBmaWxlc3lzdGVtIHJlcXVpcmUgYSBkZXYg ZW50cnk/ICovCisJCWZzX2ZsYWdzID0gMTsJLyogRlNfUkVRVUlSRVNfREVWICovCisJCWZvciAo aSA9IDA7IGxpbnV4X25vZGV2ZnNbaV0gIT0gTlVMTDsgaSsrKSB7CisJCQlpZiAoc3RyY21wKGxp bnV4X25vZGV2ZnNbaV0sIHZmc3AtPnZmY19uYW1lKSA9PSAwKSB7CisJCQkgICAgZnNfZmxhZ3Mg PSAwOworCQkJICAgIGJyZWFrOworCQkJfQorCQl9CisKKwkJc3RybGNweShmc19uYW1lLCB2ZnNw LT52ZmNfbmFtZSwgc2l6ZW9mKGZzX25hbWUpKTsKKwkJYnNkMmxpbnV4X2ZzbmFtZShmc19uYW1l LCBzaXplb2YoZnNfbmFtZSkpOworCisJCXNidWZfcHJpbnRmKHNiLCAiJXNcdCVzXG4iLCBcCisJ CSAgICBmc19mbGFncyA/ICIiIDogIm5vZGV2IiwgZnNfbmFtZSk7CisJfQorCisJcmV0dXJuICgw KTsKK30KKworLyoKICAqIEZpbGxlciBmdW5jdGlvbiBmb3IgcHJvYy9jbWRsaW5lCiAgKi8KIHN0 YXRpYyBpbnQKQEAgLTEwODYsNiArMTIyMyw4IEBACiAJICAgIE5VTEwsIE5VTEwsIFBGU19SRCk7 CiAJcGZzX2NyZWF0ZV9maWxlKHJvb3QsICJkZXZpY2VzIiwgJmxpbnByb2Nmc19kb2RldmljZXMs CiAJICAgIE5VTEwsIE5VTEwsIFBGU19SRCk7CisJcGZzX2NyZWF0ZV9maWxlKHJvb3QsICJmaWxl c3lzdGVtcyIsICZsaW5wcm9jZnNfZG9maWxlc3lzdGVtcywKKwkgICAgTlVMTCwgTlVMTCwgUEZT X1JEKTsKIAlwZnNfY3JlYXRlX2ZpbGUocm9vdCwgImxvYWRhdmciLCAmbGlucHJvY2ZzX2RvbG9h ZGF2ZywKIAkgICAgTlVMTCwgTlVMTCwgUEZTX1JEKTsKIAlwZnNfY3JlYXRlX2ZpbGUocm9vdCwg Im1lbWluZm8iLCAmbGlucHJvY2ZzX2RvbWVtaW5mbywKSW5kZXg6IGNvbXBhdC9saW51eC9saW51 eF9taXNjLmgKPT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PQpSQ1MgZmlsZTogL2hvbWUvbmN2cy9zcmMvc3lzL2NvbXBhdC9s aW51eC9saW51eF9taXNjLmgsdgpyZXRyaWV2aW5nIHJldmlzaW9uIDEuMgpkaWZmIC11IC1yMS4y IGxpbnV4X21pc2MuaAotLS0gY29tcGF0L2xpbnV4L2xpbnV4X21pc2MuaAkzMSBEZWMgMjAwNiAx MTo1NjoxNiAtMDAwMAkxLjIKKysrIGNvbXBhdC9saW51eC9saW51eF9taXNjLmgJMjYgSmFuIDIw MDYgMDI6MTI6MzAgLTAwMDAKQEAgLTQyLDQgKzQyLDkgQEAKIAogI2RlZmluZQlMSU5VWF9NQVhf Q09NTV9MRU4JMTYJLyogTWF4aW11bSBsZW5ndGggb2YgdGhlIHByb2Nlc3MgbmFtZS4gKi8KIAor LyogZGVmaW5lcyBmb3Igc3lzZnMgKi8KKyNkZWZpbmUgTElOVVhfR0VURlNJTkQJCTEJLyogVHJh bnNsYXRlIGZpbGVzeXN0ZW0gbmFtZSB0byBpbmRleCAqLworI2RlZmluZSBMSU5VWF9HRVRGU1RZ UAkJMgkvKiBUcmFuc2xhdGUgaW5kZXggdG8gZmlsZXN5c3RlbSBuYW1lICovCisjZGVmaW5lIExJ TlVYX0dFVE5GU1RZUAkJMwkvKiBSZXR1cm4gdG90YWwgbnVtYmVyIG9mIGZpbGVzeXN0ZW1zICov CisKICNlbmRpZgkvKiBfTElOVVhfTUlTQ19IXyAqLwpJbmRleDogY29tcGF0L2xpbnV4L2xpbnV4 X3V0aWwuaAo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09ClJDUyBmaWxlOiAvaG9tZS9uY3ZzL3NyYy9zeXMvY29tcGF0L2xp bnV4L2xpbnV4X3V0aWwuaCx2CnJldHJpZXZpbmcgcmV2aXNpb24gMS4yOApkaWZmIC11IC1yMS4y OCBsaW51eF91dGlsLmgKLS0tIGNvbXBhdC9saW51eC9saW51eF91dGlsLmgJMjcgSnVuIDIwMDYg MTg6MzA6NDkgLTAwMDAJMS4yOAorKysgY29tcGF0L2xpbnV4L2xpbnV4X3V0aWwuaAkyNiBKYW4g MjAwNiAwMjowMTozNCAtMDAwMApAQCAtMTAxLDQgKzEwMyw3IEBACiBjaGFyCSpsaW51eF9nZXRf Y2hhcl9kZXZpY2VzKHZvaWQpOwogdm9pZAlsaW51eF9mcmVlX2dldF9jaGFyX2RldmljZXMoY2hh ciAqc3RyaW5nKTsKIAorLyogdXNlZCBieSBzeXNmcyBhbmQgbGlucHJvY2ZzX2RvZmlsZXN5c3Rl bXMgZnVuY3Rpb25zICovCit2b2lkCWJzZDJsaW51eF9mc25hbWUoY2hhciAqbmFtZSwgaW50IHNp emUpOworCiAjZW5kaWYgLyogIV9MSU5VWF9VVElMX0hfICovCkluZGV4OiBhbWQ2NC9saW51eDMy L2xpbnV4MzJfZHVtbXkuYwo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09ClJDUyBmaWxlOiAvaG9tZS9uY3ZzL3NyYy9zeXMv YW1kNjQvbGludXgzMi9saW51eDMyX2R1bW15LmMsdgpyZXRyaWV2aW5nIHJldmlzaW9uIDEuNwpk aWZmIC11IC1yMS43IGxpbnV4MzJfZHVtbXkuYwotLS0gYW1kNjQvbGludXgzMi9saW51eDMyX2R1 bW15LmMJMzEgRGVjIDIwMDYgMTM6MTY6MDAgLTAwMDAJMS43CisrKyBhbWQ2NC9saW51eDMyL2xp bnV4MzJfZHVtbXkuYwkxNiBKYW4gMjAwNyAwMjo0MjowMyAtMDAwMApAQCAtNTAsNiArNTAsNSBA QAogRFVNTVkoZ2V0X2tlcm5lbF9zeW1zKTsKIERVTU1ZKHF1b3RhY3RsKTsKIERVTU1ZKGJkZmx1 c2gpOwotRFVNTVkoc3lzZnMpOwogRFVNTVkocXVlcnlfbW9kdWxlKTsKIERVTU1ZKG5mc3NlcnZj dGwpOwpJbmRleDogaTM4Ni9saW51eC9saW51eF9kdW1teS5jCj09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0KUkNTIGZpbGU6 IC9ob21lL25jdnMvc3JjL3N5cy9pMzg2L2xpbnV4L2xpbnV4X2R1bW15LmMsdgpyZXRyaWV2aW5n IHJldmlzaW9uIDEuNDUKZGlmZiAtdSAtcjEuNDUgbGludXhfZHVtbXkuYwotLS0gaTM4Ni9saW51 eC9saW51eF9kdW1teS5jCTMxIERlYyAyMDA2IDEzOjE2OjAwIC0wMDAwCTEuNDUKKysrIGkzODYv bGludXgvbGludXhfZHVtbXkuYwkxNiBKYW4gMjAwNyAwMzowMjo1NiAtMDAwMApAQCAtNTIsNiAr NTIsNSBAQAogRFVNTVkoZ2V0X2tlcm5lbF9zeW1zKTsKIERVTU1ZKHF1b3RhY3RsKTsKIERVTU1Z KGJkZmx1c2gpOwotRFVNTVkoc3lzZnMpOwogRFVNTVkodm04Nik7CiBEVU1NWShxdWVyeV9tb2R1 bGUpOwpJbmRleDogY29tcGF0L2xpbnV4L2xpbnV4X21pc2MuYwo9PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09ClJDUyBmaWxl OiAvaG9tZS9uY3ZzL3NyYy9zeXMvY29tcGF0L2xpbnV4L2xpbnV4X21pc2MuYyx2CnJldHJpZXZp bmcgcmV2aXNpb24gMS4yMDUKZGlmZiAtdSAtcjEuMjA1IGxpbnV4X21pc2MuYwotLS0gY29tcGF0 L2xpbnV4L2xpbnV4X21pc2MuYwk3IEphbiAyMDA3IDE5OjMwOjE5IC0wMDAwCTEuMjA1CisrKyBj b21wYXQvbGludXgvbGludXhfbWlzYy5jCTI2IEphbiAyMDA2IDA0OjU2OjUyIC0wMDAwCkBAIC0x NzE2LDMgKzE3MjksMTE0IEBACiB7CiAJcmV0dXJuIChjaHJvb3QodGQsIChzdHJ1Y3QgY2hyb290 X2FyZ3MgKilhcmdzKSk7CiB9CisKKy8qIHRhYmxlIHVzZWQgdG8gZGVyaXZlIGxpbnV4IGZpbGVz eXN0ZW0gbmFtZXMgdG8vZnJvbSBmcmVlYnNkIGZpbGVzeXN0ZW0gbmFtZXMgKi8KK3N0YXRpYyBz dHJ1Y3Qge2NvbnN0IGNoYXIgKmxfbmFtZTsgY29uc3QgY2hhciAqYl9uYW1lO30gbDJiZnNfdGJs W10gPSB7CisJeyAiZXh0MiIsICJleHQyZnMiIH0sCisJeyAiZXh0MyIsICJleHQyZnMifSwKKwl7 ICJpc285NjYwIiwgImNkOTY2MCJ9LAorCXsgIm1zZG9zIiwgIm1zZG9zZnMifSwKKwl7ICJic2Rw cm9jZnMiLCAicHJvY2ZzIn0sCisJeyAicHJvYyIsICJsaW5wcm9jZnMifSwKKwl7ICJzeXNmcyIs ICJsaW5zeXNmcyJ9LAorCXsgInVmcyIsICJmZnMifSwKKwl7ICJ2ZmF0IiwgIm1zZG9zZnMifSwK Kwl7IE5VTEwsIE5VTEwgfQorfTsKKworLyogCisgKiBUcmFuc2xhdGUgYnNkIGZpbGVzeXN0ZW0g bmFtZSB0byBsaW51eCBmaWxlc3lzdGVtIG5hbWUKKyAqIHVzZWQgYnkgbGlucHJvY2ZzX2RvZmls ZXN5c3RlbXMgYW5kIHN5c2ZzIExJTlVYX0dFVEZTVFlQCisgKi8KK3ZvaWQKK2JzZDJsaW51eF9m c25hbWUoY2hhciAqbmFtZSwgaW50IHNpemUpCit7CisJaW50IGk7CisKKwlmb3IgKCBpID0gMDsg bDJiZnNfdGJsW2ldLmJfbmFtZSAhPSBOVUxMOyBpKyspIHsKKwkJaWYgKHN0cmNtcChsMmJmc190 YmxbaV0uYl9uYW1lLCBuYW1lKSA9PSAwKSB7CisJCQlzdHJsY3B5KG5hbWUsIGwyYmZzX3RibFtp XS5sX25hbWUsIHNpemUpOworCQkJYnJlYWs7CisJCX0KKwl9Cit9CisKK2ludAorbGludXhfc3lz ZnMoc3RydWN0IHRocmVhZCAqdGQsIHN0cnVjdCBsaW51eF9zeXNmc19hcmdzICphcmdzKQorewor CWludCBpLCBlcnJvcj0wOworCXVuc2lnbmVkIGludCBpbmRleCA9IDA7CisJY2hhciBmc19uYW1l W01GU05BTUVMRU5dOworCXN0cnVjdCB2ZnNjb25mICp2ZnNwOworCisJc3dpdGNoIChhcmdzLT5v cHRpb24pIHsKKwkJLyoKKwkJICogVHJhbnNsYXRlIHRoZSBmaWxlc3lzdGVtIGlkZW50aWZpZXIg c3RyaW5nIGludG8gYQorCQkgKiBmaWxlc3lzdGVtIHR5cGUgaW5kZXguCisJCSAqLworCQljYXNl IExJTlVYX0dFVEZTSU5EOgorCQkJLyogSXMgYXJncy0+YXJnMSB2YWxpZCwgaWYgbm90IHZhbGlk IHJldHVybiBFRkFVTFQgKi8KKwkJCWVycm9yID0gY29weWluc3RyKCh2b2lkICopKHJlZ2lzdGVy X3QpYXJncy0+YXJnMSwgZnNfbmFtZSwKKwkJCQkJICBNRlNOQU1FTEVOLCBOVUxMKTsKKwkJCWlm IChlcnJvcikgeworCQkJCXJldHVybiAoZXJyb3IpOworIAkJCX0KKworCQkJZm9yICggaSA9IDA7 IGwyYmZzX3RibFtpXS5sX25hbWUgIT0gTlVMTDsgaSsrKSB7CisJCQkJaWYgKHN0cmNtcChsMmJm c190YmxbaV0ubF9uYW1lLCBmc19uYW1lKSA9PSAwKSB7CisJCQkJCXN0cmxjcHkoZnNfbmFtZSwg bDJiZnNfdGJsW2ldLmJfbmFtZSwKKwkJCQkJCXNpemVvZihmc19uYW1lKSk7CisJCQkJCWJyZWFr OworCQkJCX0KKwkJCX0KKworCQkJVEFJTFFfRk9SRUFDSCh2ZnNwLCAmdmZzY29uZiwgdmZjX2xp c3QpCisJCQkJaWYgKHN0cmNtcCh2ZnNwLT52ZmNfbmFtZSwgZnNfbmFtZSkgPT0gMCkgeworCQkJ CQl0ZC0+dGRfcmV0dmFsWzBdID0gaW5kZXg7CisJCQkJCWJyZWFrOworCQkJCX0gZWxzZQorCQkJ CQlpbmRleCsrOworCQkJaWYgKCF2ZnNwKQorCQkJCXJldHVybiAoRUlOVkFMKTsKKwkJCWJyZWFr OworCisJCS8qCisJCSAqIFRyYW5zbGF0ZSB0aGUgZmlsZS1zeXN0ZW0gdHlwZSBpbmRleCBpbnRv IGEKKwkJICogbnVsbC10ZXJtaW5hdGVkIGZpbGVzeXN0ZW0gaWRlbnRpZmllciBzdHJpbmcuCisJ CSAqLworCQljYXNlIExJTlVYX0dFVEZTVFlQOgorCQkJaW5kZXggPSBhcmdzLT5hcmcxOworCisJ CQlUQUlMUV9GT1JFQUNIKHZmc3AsICZ2ZnNjb25mLCB2ZmNfbGlzdCkKKwkJCQlpZiAoaW5kZXgt LSA8PSAwKQorCQkJCQlicmVhazsKKwkJCWlmICghdmZzcCkKKwkJCQlyZXR1cm4gKEVJTlZBTCk7 CisKKwkJCXN0cmxjcHkoZnNfbmFtZSwgdmZzcC0+dmZjX25hbWUsIHNpemVvZihmc19uYW1lKSk7 CisJCQlic2QybGludXhfZnNuYW1lKGZzX25hbWUpOworCisJCQkvKgorCQkJICogV2UgYXNzdW1l IHRoYXQgdGhlIGJ1ZmZlciBwb2ludGVkIHRvIGJ5CisJCQkgKiAodm9pZCAqKShyZWdpc3Rlcl90 KWFyZ3MtPmFyZzIgaXMgZ3JlYXRlciB0aGFuIE1GU05BTUVMRU4KKwkJCSAqLworCQkJZXJyb3Ig PSBjb3B5b3V0KGZzX25hbWUsICh2b2lkICopKHJlZ2lzdGVyX3QpYXJncy0+YXJnMiwKKwkJCQkJ TUZTTkFNRUxFTik7CisJCQlicmVhazsKKworCQkvKgorCQkgKiBSZXR1cm4gdGhlIHRvdGFsIG51 bWJlciBvZiBmaWxlIHN5c3RlbSB0eXBlcworCQkgKiBjdXJyZW50bHkgcHJlc2VudCBpbiB0aGUg a2VybmVsLgorCQkgKi8KKwkJY2FzZSBMSU5VWF9HRVRORlNUWVA6CisJCQlUQUlMUV9GT1JFQUNI KHZmc3AsICZ2ZnNjb25mLCB2ZmNfbGlzdCkKKwkJCQlpbmRleCsrOworCQkJdGQtPnRkX3JldHZh bFswXSA9IGluZGV4OworCQkJYnJlYWs7CisKKwkJLyogSW52YWxpZCBvcHRpb24gcGFzc2VkICov CisJCWRlZmF1bHQ6CisJCQllcnJvciA9IEVJTlZBTDsKKwl9CisJcmV0dXJuIChlcnJvcik7Cit9 Cg== --0016e64603c82f027f0473b2e8f6-- From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 20:16:19 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 2634B1065670 for ; Wed, 16 Sep 2009 20:16:19 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.delphij.net (delphij-pt.tunnel.tserv2.fmt.ipv6.he.net [IPv6:2001:470:1f03:2c9::2]) by mx1.freebsd.org (Postfix) with ESMTP id BDAE58FC25 for ; Wed, 16 Sep 2009 20:16:18 +0000 (UTC) Received: from tarsier.geekcn.org (tarsier.geekcn.org [211.166.10.233]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by tarsier.delphij.net (Postfix) with ESMTPS id B31C25C025 for ; Thu, 17 Sep 2009 04:16:17 +0800 (CST) Received: from localhost (tarsier.geekcn.org [211.166.10.233]) by tarsier.geekcn.org (Postfix) with ESMTP id 327BE55CE047; Thu, 17 Sep 2009 04:16:17 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([211.166.10.233]) by localhost (mail.geekcn.org [211.166.10.233]) (amavisd-new, port 10024) with ESMTP id QWMqiy3Rt+wr; Thu, 17 Sep 2009 04:16:11 +0800 (CST) Received: from charlie.delphij.net (adsl-76-237-33-62.dsl.pltn13.sbcglobal.net [76.237.33.62]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTPSA id 169E255CE045; Thu, 17 Sep 2009 04:16:09 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:reply-to:organization:user-agent: mime-version:to:cc:subject:references:in-reply-to: x-enigmail-version:openpgp:content-type:content-transfer-encoding; b=kKqB+ViT7O8+fCbrWbLxfaUV6tqTFo+mHxKftZdBuRVkOkOX8xK6w+wIEW4us84aS c4sb9dewhdflaOCKjcySA== Message-ID: <4AB14786.1010202@delphij.net> Date: Wed, 16 Sep 2009 13:16:06 -0700 From: Xin LI Organization: The FreeBSD Project User-Agent: Thunderbird 2.0.0.22 (X11/20090803) MIME-Version: 1.0 To: Scot Hetzel References: <790a9fff0701060012x40063f48pc842510b082df5a5@mail.gmail.com> <20070106130830.3c2e6d98@Magellan.Leidinger.net> <790a9fff0701132017g6c081567la4a759cea4618535@mail.gmail.com> <20070114105239.GA6955@stud.fit.vutbr.cz> <790a9fff0701141254s2c92b10ag6b042a019bc283c@mail.gmail.com> <20070115105921.wbv2yrd4bkgokcko@webmail.leidinger.net> <790a9fff0701252321x2c7bea62od928766849e32c68@mail.gmail.com> <790a9fff0701261550n5982c0chea94dbfa208439da@mail.gmail.com> <790a9fff0909160742p1043e643i69febf5a7e88a97e@mail.gmail.com> In-Reply-To: <790a9fff0909160742p1043e643i69febf5a7e88a97e@mail.gmail.com> X-Enigmail-Version: 0.96.0 OpenPGP: id=18EDEBA0; url=http://www.delphij.net/delphij.asc Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@freebsd.org Subject: Re: Fwd: linuxolator: proc/filesystems and sysfs function implementations X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: d@delphij.net List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Sep 2009 20:16:19 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Scot Hetzel wrote: > I see that Alexander Best had added sysfs to the linux-kernel wiki. > > Attached is the sysfs implementation that I had created back in 2007, > and was reviewed on this list. > > Could someone commit this implentation to P4 or at least put it up > some where so others can improve on it. Em... Is there any reason this is not ready for -HEAD? (There is a minor information disclosure issue, though, but that can be easily fixed). Cheers, - -- Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (FreeBSD) iEYEARECAAYFAkqxR4YACgkQi+vbBBjt66CzuACbBb96TwldoUZ0wMKpf6FV0C+K KKUAnjHMafVuvdvMM0g/2HvcAXM0P5g7 =Igxx -----END PGP SIGNATURE----- From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 16 21:55:07 2009 Return-Path: Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C7BB3106568B; Wed, 16 Sep 2009 21:55:07 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 7BF998FC1F; Wed, 16 Sep 2009 21:55:07 +0000 (UTC) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n8GLt7nn006460; Wed, 16 Sep 2009 21:55:07 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n8GLt7RI006456; Wed, 16 Sep 2009 21:55:07 GMT (envelope-from linimon) Date: Wed, 16 Sep 2009 21:55:07 GMT Message-Id: <200909162155.n8GLt7RI006456@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-emulation@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/138880: [linux] munmap segfaults after linux_mmap2 stresstest 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, 16 Sep 2009 21:55:07 -0000 Synopsis: [linux] munmap segfaults after linux_mmap2 stresstest Responsible-Changed-From-To: freebsd-bugs->freebsd-emulation Responsible-Changed-By: linimon Responsible-Changed-When: Wed Sep 16 21:54:34 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=138880 From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 17 00:44:13 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 C780D1065679 for ; Thu, 17 Sep 2009 00:44:13 +0000 (UTC) (envelope-from mlobo@digiart.art.br) Received: from sv4.hmnoc.net (sv4.hmnoc.net [63.247.76.174]) by mx1.freebsd.org (Postfix) with ESMTP id 9D4718FC0A for ; Thu, 17 Sep 2009 00:44:13 +0000 (UTC) Received: from localhost ([127.0.0.1]:40576 helo=squirrel.sv4.hmnoc.net) by sv4.hmnoc.net with esmtp (Exim 4.69) (envelope-from ) id 1MnF8Y-0004DA-AW; Mon, 14 Sep 2009 14:14:47 -0300 Received: from 200.249.56.17 (proxying for unknown) (SquirrelMail authenticated user mlobo@digiart.art.br) by squirrel.sv4.hmnoc.net with HTTP; Mon, 14 Sep 2009 14:14:46 -0300 (BRT) Message-ID: <51072.200.249.56.17.1252948486.squirrel@squirrel.sv4.hmnoc.net> In-Reply-To: <20090914155807.5ED7B1CC37@ptavv.es.net> References: <20090914155807.5ED7B1CC37@ptavv.es.net> Date: Mon, 14 Sep 2009 14:14:46 -0300 (BRT) From: "Mario Lobo" To: "Kevin Oberman" User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - sv4.hmnoc.net X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - digiart.art.br Cc: emulation@freebsd.org Subject: Re: New network capabilities? 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, 17 Sep 2009 00:44:13 -0000 > I see that the new port of VB seems to have added a couple of kernel > modules that are probably network related: vboxnetadp.ko and > vboxnetflt.ko. > > Do these provide new networking options? I have seen quite a bit of > discussion of new network code on this list, but I am not sure exactly > what they cover or how to use them and I don't see much on the wiki, > but it looks like TAP is now available. > They provide host and bridge networking respectively. The TAP device (a great patch provided by Juergen Lock) is still in the code (I think) but Juergen designed it to be used while the networking bridge was not avaliable. I think that you can still use the TAP patch at the cost of disabling the bridge code. Mario Lobo From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 18 02:07: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 08985106566B for ; Fri, 18 Sep 2009 02:07:14 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from mail-vw0-f189.google.com (mail-vw0-f189.google.com [209.85.212.189]) by mx1.freebsd.org (Postfix) with ESMTP id A92098FC17 for ; Fri, 18 Sep 2009 02:07:13 +0000 (UTC) Received: by vws27 with SMTP id 27so660374vws.3 for ; Thu, 17 Sep 2009 19:07:12 -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=ZrKefcIrdWaZ8eNbEbigOZVHY8SfwgKPcrPasXZzgw8=; b=BVr8bDNazsvtayDI+QtY7M8R2CHZ6ix8rnRwHnEbBQFdryc+lHMp/M7C/tCiq1RMDr sGTt3LF9H5NPxW2Iu4GTeFvtOn+TGpjiXN8BZP3Xq50E6MHI3kTCq53Nkmzja3zwpfFs UyyFxO83nKKwbn7bN7c+dw3NFEdHZL4UxxjEg= 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=v0zU1U0bEGt4HOSk/TEMhxxPpAPYm91tpKUyZ8U/Xj+CAEQENnpNDdudM/uUNr9EPX hBq5HEr+08a/UMuFYByM+/xh1jmeSKnuTMPkenvvsPJv8mClA6FCgfxrdN1pT01CAvuD z1+ne3OBkw3OqhFxR13x6FCUTxQ4XHs9Rithg= MIME-Version: 1.0 Received: by 10.220.113.134 with SMTP id a6mr374954vcq.100.1253239632690; Thu, 17 Sep 2009 19:07:12 -0700 (PDT) In-Reply-To: <4AB14786.1010202@delphij.net> References: <790a9fff0701060012x40063f48pc842510b082df5a5@mail.gmail.com> <20070106130830.3c2e6d98@Magellan.Leidinger.net> <790a9fff0701132017g6c081567la4a759cea4618535@mail.gmail.com> <20070114105239.GA6955@stud.fit.vutbr.cz> <790a9fff0701141254s2c92b10ag6b042a019bc283c@mail.gmail.com> <20070115105921.wbv2yrd4bkgokcko@webmail.leidinger.net> <790a9fff0701252321x2c7bea62od928766849e32c68@mail.gmail.com> <790a9fff0701261550n5982c0chea94dbfa208439da@mail.gmail.com> <790a9fff0909160742p1043e643i69febf5a7e88a97e@mail.gmail.com> <4AB14786.1010202@delphij.net> Date: Thu, 17 Sep 2009 21:07:12 -0500 Message-ID: <790a9fff0909171907i296e65a0gbc7fefa255b70c65@mail.gmail.com> From: Scot Hetzel To: d@delphij.net Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: freebsd-emulation@freebsd.org Subject: Re: Fwd: linuxolator: proc/filesystems and sysfs function implementations 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, 18 Sep 2009 02:07:14 -0000 On Wed, Sep 16, 2009 at 3:16 PM, Xin LI wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Scot Hetzel wrote: >> I see that Alexander Best had added sysfs to the linux-kernel wiki. >> >> Attached is the sysfs implementation that I had created back in 2007, >> and was reviewed on this list. >> >> Could someone commit this implentation to P4 or at least put it up >> some where so others can improve on it. > > Em... =A0Is there any reason this is not ready for -HEAD? > None that I can think of, it could be committed to -HEAD. Just needs someone to commit it. > (There is a minor information disclosure issue, though, but that can be > easily fixed). > Scot From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 18 13:08: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 811561065693 for ; Fri, 18 Sep 2009 13:08:35 +0000 (UTC) (envelope-from a_best01@uni-muenster.de) Received: from zivm-out1.uni-muenster.de (ZIVM-OUT1.UNI-MUENSTER.DE [128.176.192.8]) by mx1.freebsd.org (Postfix) with ESMTP id 180908FC1F for ; Fri, 18 Sep 2009 13:08:34 +0000 (UTC) X-IronPort-AV: E=Sophos;i="4.44,409,1249250400"; d="scan'208";a="283047378" Received: from zivmaildisp2.uni-muenster.de (HELO ZIVMAILUSER01.UNI-MUENSTER.DE) ([128.176.188.143]) by zivm-relay1.uni-muenster.de with ESMTP; 18 Sep 2009 15:08:33 +0200 Received: by ZIVMAILUSER01.UNI-MUENSTER.DE (Postfix, from userid 149459) id 262221B0766; Fri, 18 Sep 2009 15:08:33 +0200 (CEST) Date: Fri, 18 Sep 2009 15:08:31 +0200 (CEST) From: Alexander Best Sender: Organization: Westfaelische Wilhelms-Universitaet Muenster To: Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: compat.linux.osrelease behavior 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, 18 Sep 2009 13:08:35 -0000 hi there, i have a question regarding the behavior of compat.linux.osrelease. setting it to 2.4.2 sets linuxulator into 2.4 kernel-emulation and 2.6.16 sets it into 2.6 kernel-emulation right? but what happens when compat.linux.osrelease gets set to a different value? ports/Updating entry 20071101 e.g. advises skype users to set compat.linux.osrelease to 2.4.20. does this trigger 2.6 kernel-emulation because 2.4.20 > 2.4.2 or are there more than two kernel-emulation layers inside the linuxulator?? cheers. alex From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 18 22:07:46 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 76165106568D for ; Fri, 18 Sep 2009 22:07:46 +0000 (UTC) (envelope-from yurtesen@ispro.net) Received: from mail.ispro.net (mail.ispro.net [87.251.0.19]) by mx1.freebsd.org (Postfix) with ESMTP id 846BA8FC1A for ; Fri, 18 Sep 2009 22:07:45 +0000 (UTC) Received: (qmail 52334 invoked by uid 399); 18 Sep 2009 22:01:03 -0000 Received: from dsl-tkubrasgw1-fe1efa00-39.dhcp.inet.fi (HELO ?192.168.0.100?) (yurtesen@ispro.net@84.250.30.39) by mail.ispro.net with ESMTPAM; 18 Sep 2009 22:01:03 -0000 X-Originating-IP: 84.250.30.39 Message-ID: <4AB4035E.2030907@ispro.net> Date: Sat, 19 Sep 2009 01:02:06 +0300 From: Evren Yurtesen User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: emulation@FreeBSD.org References: <4AB4016D.5070508@ispro.net> In-Reply-To: <4AB4016D.5070508@ispro.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: E:Attach to pid 54301 failed: Function not implemented 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, 18 Sep 2009 22:07:46 -0000 Evren Yurtesen wrote: > Hello, > > I am trying to use the Intel Software Development Emulator on FreeBSD 8 > > http://software.intel.com/en-us/articles/intel-software-development-emulator/ > > > with the linux_base-f10 port however I am getting the following error: > > # ./sde -- /bin/csh > E:Attach to pid 54304 failed: Function not implemented > > Is this something which can be fixed or should I forget about it? > > Thanks, > Evren > I just realized this in logs also: linux: pid 54303 (pinbin): syscall ptrace not implemented From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 18 22:19:36 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 5EE251065670 for ; Fri, 18 Sep 2009 22:19:35 +0000 (UTC) (envelope-from yurtesen@ispro.net) Received: from mail.ispro.net (mail.ispro.net [87.251.0.19]) by mx1.freebsd.org (Postfix) with ESMTP id 822448FC17 for ; Fri, 18 Sep 2009 22:19:34 +0000 (UTC) Received: (qmail 43647 invoked by uid 399); 18 Sep 2009 21:52:49 -0000 Received: from dsl-tkubrasgw1-fe1efa00-39.dhcp.inet.fi (HELO ?192.168.0.100?) (yurtesen@ispro.net@84.250.30.39) by mail.ispro.net with ESMTPAM; 18 Sep 2009 21:52:49 -0000 X-Originating-IP: 84.250.30.39 Message-ID: <4AB4016D.5070508@ispro.net> Date: Sat, 19 Sep 2009 00:53:49 +0300 From: Evren Yurtesen User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: emulation@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: E:Attach to pid 54301 failed: Function not implemented 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, 18 Sep 2009 22:19:36 -0000 Hello, I am trying to use the Intel Software Development Emulator on FreeBSD 8 http://software.intel.com/en-us/articles/intel-software-development-emulator/ with the linux_base-f10 port however I am getting the following error: # ./sde -- /bin/csh E:Attach to pid 54304 failed: Function not implemented Is this something which can be fixed or should I forget about it? Thanks, Evren From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 19 08:07:29 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 A27D6106568F for ; Sat, 19 Sep 2009 08:07:29 +0000 (UTC) (envelope-from gary.jennejohn@freenet.de) Received: from mout4.freenet.de (mout4.freenet.de [IPv6:2001:748:100:40::2:6]) by mx1.freebsd.org (Postfix) with ESMTP id 40C5A8FC1A for ; Sat, 19 Sep 2009 08:07:29 +0000 (UTC) Received: from [195.4.92.15] (helo=5.mx.freenet.de) by mout4.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #92) id 1Mouye-0006I5-0R; Sat, 19 Sep 2009 10:07:28 +0200 Received: from tc9d4.t.pppool.de ([89.55.201.212]:30588 helo=ernst.jennejohn.org) by 5.mx.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #94) id 1Mouya-0001sb-OZ; Sat, 19 Sep 2009 10:07:24 +0200 Date: Sat, 19 Sep 2009 10:07:24 +0200 From: Gary Jennejohn To: Evren Yurtesen Message-ID: <20090919100724.1165f685@ernst.jennejohn.org> In-Reply-To: <4AB4035E.2030907@ispro.net> References: <4AB4016D.5070508@ispro.net> <4AB4035E.2030907@ispro.net> 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 Cc: emulation@FreeBSD.org Subject: Re: E:Attach to pid 54301 failed: Function not implemented 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: Sat, 19 Sep 2009 08:07:29 -0000 On Sat, 19 Sep 2009 01:02:06 +0300 Evren Yurtesen wrote: > Evren Yurtesen wrote: > > Hello, > > > > I am trying to use the Intel Software Development Emulator on FreeBSD 8 > > > > http://software.intel.com/en-us/articles/intel-software-development-emulator/ > > > > > > with the linux_base-f10 port however I am getting the following error: > > > > # ./sde -- /bin/csh > > E:Attach to pid 54304 failed: Function not implemented > > > > Is this something which can be fixed or should I forget about it? > > > It could probably be fixed, but it may require lots of effort. The arguments to the Linux ptrace(2) are different (some are pointers instead of ints) and it wouldn't surprise me in the least to find that ptrace(2) in Linux behaves differently than under FreeBSD. > I just realized this in logs also: > > linux: pid 54303 (pinbin): syscall ptrace not implemented --- Gary Jennejohn From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 19 20:36: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 09CA21065697 for ; Sat, 19 Sep 2009 20:36:40 +0000 (UTC) (envelope-from alexander@leidinger.net) Received: from mail.ebusiness-leidinger.de (mail.ebusiness-leidinger.de [217.11.53.44]) by mx1.freebsd.org (Postfix) with ESMTP id B7A108FC41 for ; Sat, 19 Sep 2009 20:36:39 +0000 (UTC) Received: from outgoing.leidinger.net (pD9E2FCE6.dip.t-dialin.net [217.226.252.230]) by mail.ebusiness-leidinger.de (Postfix) with ESMTPSA id D07998442C1; Sat, 19 Sep 2009 22:36:30 +0200 (CEST) Received: from unknown (IO.Leidinger.net [192.168.2.103]) by outgoing.leidinger.net (Postfix) with ESMTP id 6EAC2A5C96; Sat, 19 Sep 2009 22:36:25 +0200 (CEST) Date: Sat, 19 Sep 2009 22:36:24 +0200 From: Alexander Leidinger To: Alexander Best Message-ID: <20090919223624.00004f42@unknown> In-Reply-To: References: X-Mailer: Claws Mail 3.7.2cvs15 (GTK+ 2.16.0; i586-pc-mingw32msvc) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-EBL-MailScanner-Information: Please contact the ISP for more information X-EBL-MailScanner-ID: D07998442C1.E2118 X-EBL-MailScanner: Found to be clean X-EBL-MailScanner-SpamCheck: not spam, spamhaus-ZEN, SpamAssassin (not cached, score=-1.44, required 6, autolearn=disabled, ALL_TRUSTED -1.44) X-EBL-MailScanner-From: alexander@leidinger.net X-EBL-MailScanner-Watermark: 1253997392.29655@nxWsD6fOwU+YAGlQ8srIVQ X-EBL-Spam-Status: No Cc: freebsd-emulation@freebsd.org Subject: Re: compat.linux.osrelease behavior 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, 19 Sep 2009 20:36:40 -0000 On Fri, 18 Sep 2009 15:08:31 +0200 (CEST) Alexander Best wrote: > hi there, > > i have a question regarding the behavior of compat.linux.osrelease. > setting it to 2.4.2 sets linuxulator into 2.4 kernel-emulation and > 2.6.16 sets it into 2.6 kernel-emulation right? Sort of. 2.6.x set's 2.6 mode, and everything else is 2.4 mode. But this is AFAIK only a semantic change of some functions. This does not disable syscalls which are in 2.6 but not in 2.4. > but what happens when compat.linux.osrelease gets set to a different > value? ports/Updating entry 20071101 e.g. advises skype users to set > compat.linux.osrelease to 2.4.20. does this trigger 2.6 > kernel-emulation because 2.4.20 > 2.4.2 or are there more than two > kernel-emulation layers inside the linuxulator?? It does not affect the kernel emulation. But the glibc will try to use new syscalls. Bye, Alexander. From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 19 23:28:33 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 14231106566B for ; Sat, 19 Sep 2009 23:28:33 +0000 (UTC) (envelope-from kabaev@gmail.com) Received: from mail-qy0-f188.google.com (mail-qy0-f188.google.com [209.85.221.188]) by mx1.freebsd.org (Postfix) with ESMTP id B6C6E8FC0C for ; Sat, 19 Sep 2009 23:28:32 +0000 (UTC) Received: by qyk26 with SMTP id 26so2914049qyk.7 for ; Sat, 19 Sep 2009 16:28:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:in-reply-to:references:x-mailer:mime-version :content-type; bh=21QEgYlH4ArmsasHcon296xGKpDT/5ebfVossaTMsRA=; b=jzOTTjPBCkoyaIGxd3r7PAIxqYh+B16BgLhXpiWbkGsBf6u5+4gd/8K9LtOlZ59fik 9skX5SdOzQ6brI5HI9+vDHaGSpmxJfJXLa1uV0rqA7+cp7u5kL4PiKmOV0mImWZVTMwD orG+lqbi+DbJ84VSHJ6baEO0+vKx3V64GfZyg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:in-reply-to:references:x-mailer :mime-version:content-type; b=wxZwD9mEh5Q0EC5UShTeJQalupCXrAidTIVJAAmwu7Vv3TM1vz5fHFztc1MAmga8US uktWo6WPjJKwW+zCOrygBVNRYik2J5ozw14/hnNedy5HbgHVuf9LeUxuRvOrl41wYOcA Pmizo8YZj1dNMwoq6Jz8CvqQRzevWeE/JkIww= Received: by 10.224.44.40 with SMTP id y40mr2475947qae.318.1253401230359; Sat, 19 Sep 2009 16:00:30 -0700 (PDT) Received: from kan.dnsalias.net (c-24-91-218-112.hsd1.ma.comcast.net [24.91.218.112]) by mx.google.com with ESMTPS id 7sm3256975qwf.48.2009.09.19.16.00.28 (version=SSLv3 cipher=RC4-MD5); Sat, 19 Sep 2009 16:00:29 -0700 (PDT) Date: Sat, 19 Sep 2009 19:00:22 -0400 From: Alexander Kabaev To: gary.jennejohn@freenet.de Message-ID: <20090919190022.3b046b1a@kan.dnsalias.net> In-Reply-To: <20090919100724.1165f685@ernst.jennejohn.org> References: <4AB4016D.5070508@ispro.net> <4AB4035E.2030907@ispro.net> <20090919100724.1165f685@ernst.jennejohn.org> X-Mailer: Claws Mail 3.7.2 (GTK+ 2.16.6; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/koxpGo5MEQevrpv/fKk+Er/"; protocol="application/pgp-signature" Cc: emulation@FreeBSD.org, Evren Yurtesen Subject: Re: E:Attach to pid 54301 failed: Function not implemented 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, 19 Sep 2009 23:28:33 -0000 --Sig_/koxpGo5MEQevrpv/fKk+Er/ Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Sat, 19 Sep 2009 10:07:24 +0200 Gary Jennejohn wrote: > On Sat, 19 Sep 2009 01:02:06 +0300 > Evren Yurtesen wrote: >=20 > > Evren Yurtesen wrote: > > > Hello, > > >=20 > > > I am trying to use the Intel Software Development Emulator on > > > FreeBSD 8 > > >=20 > > > http://software.intel.com/en-us/articles/intel-software-development-e= mulator/=20 > > >=20 > > >=20 > > > with the linux_base-f10 port however I am getting the following > > > error: > > >=20 > > > # ./sde -- /bin/csh > > > E:Attach to pid 54304 failed: Function not implemented > > >=20 > > > Is this something which can be fixed or should I forget about it? > > >=20 > >=20 >=20 > It could probably be fixed, but it may require lots of effort. >=20 > The arguments to the Linux ptrace(2) are different (some are pointers > instead of ints) and it wouldn't surprise me in the least to find that > ptrace(2) in Linux behaves differently than under FreeBSD. >=20 > > I just realized this in logs also: > >=20 > > linux: pid 54303 (pinbin): syscall ptrace not implemented >=20 ptrace _was_ implemented for Linux at some point. See sys/i386/linux/linux_ptrace.c. --=20 Alexander Kabaev --Sig_/koxpGo5MEQevrpv/fKk+Er/ Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.13 (FreeBSD) iD8DBQFKtWKLQ6z1jMm+XZYRAqXgAKDgYBQCMhapt8L0TLzWFRZGvV8B8ACfW9q2 oC3tDfNMAkf4iiCXG+mDXIE= =ia53 -----END PGP SIGNATURE----- --Sig_/koxpGo5MEQevrpv/fKk+Er/--