From owner-freebsd-virtualization@FreeBSD.ORG Thu Jan 14 14:46:36 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9AC5F106568D for ; Thu, 14 Jan 2010 14:46:36 +0000 (UTC) (envelope-from mmadigan@nyit.edu) Received: from ip1.nyit.edu (ip1.nyit.edu [64.35.176.47]) by mx1.freebsd.org (Postfix) with ESMTP id 695DC8FC0A for ; Thu, 14 Jan 2010 14:46:35 +0000 (UTC) Received: from owexht1.admin.nyit.edu (owexht1.nyit.edu [10.10.24.112]) by ip1.nyit.edu (8.13.8+Sun/8.13.8) with ESMTP id o0EEjvqJ003990; Thu, 14 Jan 2010 09:46:11 -0500 (EST) Received: from owexmailbox-srv.admin.nyit.edu ([fe80::287a:dfe5:ba48:b6be]) by owexht1.admin.nyit.edu ([fe80::a4fd:c6d:9dff:44fc%10]) with mapi; Thu, 14 Jan 2010 09:45:50 -0500 From: Michael Madigan To: Marko Zec , "freebsd-virtualization@freebsd.org" Date: Thu, 14 Jan 2010 09:44:01 -0500 Thread-Topic: IMUNES on FreeBSD 8.0-RELEASE... Thread-Index: AcqRP6mKq58yKG+zRDeRKr+kIHYj6wD6FmdL Message-ID: <9097211CB1FE274DB453E08FB78B4DBC339DAC6700@OWEXMAILBOX-SRV.admin.nyit.edu> References: <9097211CB1FE274DB453E08FB78B4DBC339DAC66F7@OWEXMAILBOX-SRV.admin.nyit.edu>, <201001091622.07574.zec@icir.org> In-Reply-To: <201001091622.07574.zec@icir.org> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: acceptlanguage: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Cc: Subject: RE: IMUNES on FreeBSD 8.0-RELEASE... X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jan 2010 14:46:36 -0000 Hello Marko, Thanks for the reply!! I started from scratch and followed the directions = with the new version of IMUNES. Only difference this time was that I used = tk-8.6.b.1_1 and created a symlink named wish8.4 using the following comman= d:=20 ln -s /usr/local/bin/wish8.6 /usr/local/bin/wish8.4 While IMUNES did not complain this time, it still did not work right when t= rying to execute an experiment (it would disable the "Execute" button and t= he toolbar on the right hand side, and I was not able to open a shell windo= w to any of the nodes because that option was also disabled). I noticed th= at I had been running IMUNES as a regular user and not as root. So, I logg= ed into KDE as root (after editing /usr/local/share/config/kdm/kdmrc and ch= anging AllowRootLogin=3Dfalse to AllowRootLogin=3Dtrue), and IMUNES ran fin= e. After playing around a little and looking into some of the IMUNES tcl f= iles, I was able to get IMUNES running under a regular user by doing the fo= llowing: chmod 4755 /usr/local/bin/wish8.6 chmod 4555 /usr/sbin/vimage I don't have the older version of IMUNES with the experimental code anymore= , but I think it would run fine as a regular user after the above changes. = Thanks for your help!!=20 =20 Regards, Mike ________________________________________ From: Marko Zec [zec@icir.org] Sent: Saturday, January 09, 2010 10:22 AM To: freebsd-virtualization@freebsd.org Cc: Michael Madigan Subject: Re: IMUNES on FreeBSD 8.0-RELEASE... On Tuesday 05 January 2010 22:06:33 Michael Madigan wrote: > Hello, > > Has anyone been successful in getting IMUNES to run on FreeBSD 8.0-RELEAS= E? > I have been trying and have had no luck. I followed the directions from > the following link exactly: > > http://www.mail-archive.com/freebsd-virtualization@freebsd.org/msg00156.h= tm >l > > I have no problem starting up IMUNES or creating network topologies. > However, when I tried to run a network topology, I would get the followi= ng > error: Hi Michael, I'm not shure why and how, but you've triggered some experimental code in t= he IMUNES GUI which was not supposed to be in the tree for a while, possibly d= ue to some environment variable you might have set. Nevertheless, I've remove= d the offending code from the CVS - could you try refetching the GUI code fro= m the anoncvs and let me know whether it fixes the issue for you? Cheers, Marko > > can't use empty string as operand of "&&" > can't use empty string as operand of "&&" > while executing > "if { (![info exists mpid] || $mpid =3D=3D "") && $ssh } { > set mpid [openFwrd [expr $rmPort + 10] $rmPort $userName@$rHost] > }" > (procedure "remoteStart" line 33) > invoked from within > "remoteStart " > (procedure "nexec" line 7) > invoked from within > "nexec id -u" > (procedure "setOperMode" line 11) > invoked from within > "setOperMode exec" > invoked from within > ".#menubar.#menubar#experiment invoke active" > ("uplevel" body line 1) > invoked from within > "uplevel #0 [list $w invoke active]" > (procedure "tk::MenuInvoke" line 50) > invoked from within > "tk::MenuInvoke .#menubar.#menubar#experiment 1" > (command bound to event) > > > After searching through some of the tcl files, I tried changing the > following lines in exec.tcl under the remoteStart procedure from > > > if { (![info exists mpid] || $mpid =3D=3D "") && $ssh } { > set mpid [openFwrd [expr $rmPort + 10] $rmPort $userName@$rHost] > } > if { (![info exists epid] || $epid =3D=3D "") && $ssh } { > set epid [openFwrd [expr $rePort + 10] $rePort $userName@$rHost] > } > > > to > > > if { (![info exists mpid] || $mpid =3D=3D "") && ($ssh !=3D "") } { > set mpid [openFwrd [expr $rmPort + 10] $rmPort $userName@$rHost] > } > if { (![info exists epid] || $epid =3D=3D "") && ($ssh !=3D "") } { > set epid [openFwrd [expr $rePort + 10] $rePort $userName@$rHost] > } > > > I now get past the previous errors, but now I get the following error: > > "Cannot open sockets" > > I have never done any tcl programming, so I don't have a clue of where to > start debugging a program like this. Does anyone have any ideas on how t= o > resolve this? Maybe I'm missing something? Any help would be greatly > appreciated!! Thanks!! > > Regards, > Mike_______________________________________________ > freebsd-virtualization@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > To unsubscribe, send any mail to > "freebsd-virtualization-unsubscribe@freebsd.org"= From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 06:46:43 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD94210656A4 for ; Fri, 15 Jan 2010 06:46:43 +0000 (UTC) (envelope-from enginbsd@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.27]) by mx1.freebsd.org (Postfix) with ESMTP id 171F78FC0C for ; Fri, 15 Jan 2010 06:46:42 +0000 (UTC) Received: by ey-out-2122.google.com with SMTP id 22so116777eye.9 for ; Thu, 14 Jan 2010 22:46:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=LaeaHyvTu71Dgp/zxs37bhX/Fq4KQf1DeWiHV9L/qzY=; b=w95aBF2jK0cnUCElh1zL8e+4MMzOMWGaTQ7gD7bESe9kYL+EnhJ82CpxxCmLrDZLha 0XjLo/SeenzUlApD5rhjg2IFjZ+FoqTX+xwcpchU4IV8+Ya6buLRfOQL/nWoy7YdiIga YGXq5QtWYUg7uvrQ9Klifh6Udp6KbXa+RHnuo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=IZmob3Wy5tlanWRJrgioU7+ULCtib0UQIo3Le0Mr99nY4F3vIf+e8QDllgp59yOq6v 6a69tA3R+JF9OQiIUBHBqjKZ5+RsohT41F2E6STBAE2zNrYSXer905tPgLeeWyTnaGZ/ L/Pv8CthD02G1fu/8QaPY/lvKbNZjwvgOlNhU= MIME-Version: 1.0 Received: by 10.216.186.12 with SMTP id v12mr671254wem.75.1263536542496; Thu, 14 Jan 2010 22:22:22 -0800 (PST) Date: Fri, 15 Jan 2010 08:22:22 +0200 Message-ID: <86095ec11001142222m7f3f14c9s29adc280de1d4a2@mail.gmail.com> From: =?ISO-8859-1?B?RW5naW4g1lpU3FJL?= To: freebsd-virtualization@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: virtualbox-ose error X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 06:46:43 -0000 8.0-STABLE amd64 GENERIC /usr/ports/emulators/virtualbox-ose make install clean /sys/sys/cpu.h: In function 'cpu_get_pcpu': /sys/sys/cpu.h:44: warning: implicit declaration of function 'BUS_READ_IVAR' /sys/sys/cpu.h:44: warning: nested extern declaration of 'BUS_READ_IVAR' kmk[2]: *** [/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/out/freebsd.amd64/release/obj/RuntimeGuestR0/r0drv/freebsd/memobj-r0drv-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/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/out/freebsd.amd64/release/gen-sys-hdrs -I/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/src/VBox/Runtime -I/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/src/VBox/Runtime/include -I/sys -I/sys/contrib/altq -I/sys/../include -I/usr/include -I/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/include -I/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/share/virtualbox-ose\" -DRTPATH_APP_PRIVATE_ARCH=\"/usr/local/lib/virtualbox\" -DRTPATH_SHARED_LIBS=\"/usr/local/lib/virtualbox\" -DRTPATH_APP_DOCS=\"/usr/local/share/doc/virtualbox-ose\" -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -D_KERNEL -DKLD_MODULE -DIN_RING0 -DIN_RT_R0 -DIN_GUEST -DIN_GUEST_R0 -DIN_RT_R0 -DRT_WITH_VBOX -DRT_WITHOUT_NOCRT_WRAPPERS -DRT_NO_EXPORT_SYMBOL -Wp,-MD,/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/out/freebsd.amd64/release/obj/RuntimeGuestR0/r0drv/freebsd/memobj-r0drv-freebsd.o.dep -Wp,-MT,/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/out/freebsd.amd64/release/obj/RuntimeGuestR0/r0drv/freebsd/memobj-r0drv-freebsd.o -Wp,-MP -o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/out/freebsd.amd64/release/obj/RuntimeGuestR0/r0drv/freebsd/memobj-r0drv-freebsd.o /usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE/src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c kmk[2]: Leaving directory `/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE' kmk[2]: Entering directory `/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE' kmk[2]: *** Exiting with status 2 kmk[1]: *** [pass_libraries_this] Error 2 kmk[1]: Leaving directory `/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE' kmk: *** [pass_libraries_order] Error 2 *** Error code 2 Stop in /usr/ports/emulators/virtualbox-ose. *** Error code 1 other port /usr/ports/emulators/virtualbox-ose-additions make install clean kmk: *** [/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/out/freebsd.amd64/release/obj/RuntimeGuestR0/r0drv/freebsd/assert-r0drv-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/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/out/freebsd.amd64/release/gen-sys-hdrs -I/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/src/VBox/Runtime -I/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/src/VBox/Runtime/include -I/usr/src/sys -I/usr/src/sys/contrib/altq -I/usr/src/sys/../include -I/usr/include -I/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/include -I/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/out/freebsd.amd64/release -DVBOX -DVBOX_OSE -DVBOX_WITH_64_BITS_GUESTS -DVBOX_WITH_HARDENING -DRTPATH_APP_PRIVATE=\"/usr/local/lib/virtualbox\" -DRT_OS_FREEBSD -D__FREEBSD__ -DRT_ARCH_AMD64 -D__AMD64__ -D_KERNEL -DKLD_MODULE -DIN_RING0 -DIN_RT_R0 -DIN_GUEST -DIN_GUEST_R0 -DIN_RT_R0 -DRT_WITH_VBOX -DRT_WITHOUT_NOCRT_WRAPPERS -DRT_NO_EXPORT_SYMBOL -Wp,-MD,/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/out/freebsd.amd64/release/obj/RuntimeGuestR0/r0drv/freebsd/assert-r0drv-freebsd.o.dep -Wp,-MT,/usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/out/freebsd.amd64/release/obj/RuntimeGuestR0/r0drv/freebsd/assert-r0drv-freebsd.o -Wp,-MP -o /usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/out/freebsd.amd64/release/obj/RuntimeGuestR0/r0drv/freebsd/assert-r0drv-freebsd.o /usr/ports/emulators/virtualbox-ose-additions/work/VirtualBox-3.1.51.r25618_OSE/src/VBox/Runtime/r0drv/freebsd/assert-r0drv-freebsd.c kmk: *** Exiting with status 2 *** Error code 2 From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 07:11:50 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4211F106568B for ; Fri, 15 Jan 2010 07:11:50 +0000 (UTC) (envelope-from wilkinsa@dsto.defence.gov.au) Received: from digger1.defence.gov.au (digger1.defence.gov.au [203.5.217.4]) by mx1.freebsd.org (Postfix) with ESMTP id 9A2BF8FC13 for ; Fri, 15 Jan 2010 07:11:49 +0000 (UTC) Received: from ednmsw520.dsto.defence.gov.au (ednmsw520.dsto.defence.gov.au [131.185.68.60]) by digger1.defence.gov.au (DSTO/DSTO) with ESMTP id o0F6oWMB018633 for ; Fri, 15 Jan 2010 17:20:32 +1030 (CST) Received: from ednex510.dsto.defence.gov.au (ednex510.dsto.defence.gov.au) by ednmsw520.dsto.defence.gov.au (Clearswift SMTPRS 5.3.2) with ESMTP id for ; Fri, 15 Jan 2010 17:23:06 +1030 Received: from stlex511.dsto.defence.gov.au ([203.6.60.49]) by ednex510.dsto.defence.gov.au with Microsoft SMTPSVC(6.0.3790.3959); Fri, 15 Jan 2010 17:23:05 +1030 Received: from stlux550.dsto.defence.gov.au ([203.6.60.61]) by stlex511.dsto.defence.gov.au with Microsoft SMTPSVC(6.0.3790.3959); Fri, 15 Jan 2010 14:53:04 +0800 Received: from stlux550.dsto.defence.gov.au (localhost [127.0.0.1]) by stlux550.dsto.defence.gov.au (8.14.3/8.14.3) with ESMTP id o0F6pgje019236 for ; Fri, 15 Jan 2010 14:51:42 +0800 (WST) (envelope-from wilkinsa@stlux550.dsto.defence.gov.au) Received: (from wilkinsa@localhost) by stlux550.dsto.defence.gov.au (8.14.3/8.14.3/Submit) id o0F6pgTe019235 for freebsd-virtualization@freebsd.org; Fri, 15 Jan 2010 14:51:42 +0800 (WST) (envelope-from wilkinsa) Date: Fri, 15 Jan 2010 14:51:42 +0800 From: "Wilkinson, Alex" To: freebsd-virtualization@freebsd.org Message-ID: <20100115065141.GD18402@stlux503.dsto.defence.gov.au> References: <86095ec11001142222m7f3f14c9s29adc280de1d4a2@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <86095ec11001142222m7f3f14c9s29adc280de1d4a2@mail.gmail.com> Organisation: Defence Science Technology Organisation X-Message-Flag: "Please Restore Line Breaks If Necessary" User-Agent: Mutt/1.5.20 (2009-06-14) X-OriginalArrivalTime: 15 Jan 2010 06:53:04.0368 (UTC) FILETIME=[62D8EF00:01CA95AF] X-TM-AS-Product-Ver: SMEX-8.0.0.1285-6.000.1038-17132.005 X-TM-AS-Result: No-1.308500-0.000000-31 X-TM-AS-User-Approved-Sender: Yes X-TM-AS-User-Blocked-Sender: No Subject: Re: virtualbox-ose error [SEC=UNCLASSIFIED] X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 07:11:50 -0000 ditto. saw this yesterday. -Alex 0n Fri, Jan 15, 2010 at 08:22:22AM +0200, Engin ÖZTÜRK wrote: >`/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE' >kmk[2]: Entering directory >`/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE' >kmk[2]: *** Exiting with status 2 >kmk[1]: *** [pass_libraries_this] Error 2 >kmk[1]: Leaving directory >`/usr/ports/emulators/virtualbox-ose/work/VirtualBox-3.1.2_OSE' >kmk: *** [pass_libraries_order] Error 2 >*** Error code 2 > >Stop in /usr/ports/emulators/virtualbox-ose. >*** Error code 1 IMPORTANT: This email remains the property of the Australian Defence Organisation and is subject to the jurisdiction of section 70 of the CRIMES ACT 1914. If you have received this email in error, you are requested to contact the sender and delete the email. From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 08:12:45 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0E051065672 for ; Fri, 15 Jan 2010 08:12:45 +0000 (UTC) (envelope-from vova@parallels.com) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id 1118C8FC08 for ; Fri, 15 Jan 2010 08:12:44 +0000 (UTC) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id o0F7VPRt002918 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Fri, 15 Jan 2010 10:31:26 +0300 (MSK) Received: from vova by vbook.fbsd.ru with local (Exim 4.71 (FreeBSD)) (envelope-from ) id 1NVgeT-0007A4-0w for freebsd-virtualization@freebsd.org; Fri, 15 Jan 2010 10:31:25 +0300 From: Vladimir Grebenschikov To: freebsd-virtualization@freebsd.org Content-Type: text/plain; charset="KOI8-R" Content-Transfer-Encoding: quoted-printable Date: Fri, 15 Jan 2010 10:31:24 +0300 Message-ID: <1263540684.2279.11.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.28.2 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Subject: virtualbox-ose and host usb devices X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 08:12:45 -0000 Hi=20 Looks like host usb devices are not supported in virtualbox-ose-3.1.2. Is it planned to enable host usb devices in virtualbox VMs ? What are the obstacles ? --=20 Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 08:15:14 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id EC4B2106566B for ; Fri, 15 Jan 2010 08:15:14 +0000 (UTC) (envelope-from tlott@gamesnet.de) Received: from spirit.gamesnet.de (spirit.gamesnet.de [87.230.101.86]) by mx1.freebsd.org (Postfix) with ESMTP id A80C68FC1B for ; Fri, 15 Jan 2010 08:15:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by spirit.gamesnet.de (Postfix) with ESMTP id EDC1529B00C for ; Fri, 15 Jan 2010 08:50:29 +0100 (CET) X-Virus-Scanned: amavisd-new at mail.gamesnet.de Received: from spirit.gamesnet.de ([127.0.0.1]) by localhost (spirit.gamesnet.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 2ZyW4kZZsEC9 for ; Fri, 15 Jan 2010 08:50:27 +0100 (CET) Received: from sub.han.vpn.gamesnet.de (sub.han.vpn.gamesnet.de [192.168.1.101]) by spirit.gamesnet.de (Postfix) with ESMTPSA id 84EC529B007 for ; Fri, 15 Jan 2010 08:50:27 +0100 (CET) Date: Fri, 15 Jan 2010 08:50:25 +0100 From: Tobias Lott To: freebsd-virtualization@freebsd.org Message-ID: <20100115085025.0a08ff54@sub.han.vpn.gamesnet.de> X-Mailer: Claws Mail 3.7.3 (GTK+ 2.18.5; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Vimage Kernel Panic X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 08:15:15 -0000 Good Day to everyone As subject says FreeBSD 8.0-STABLE #10 r202187: Wed Jan 13 18:59:52 CET 2010 panics at boot. The only difference is, I removed options SCTP and added options VIMAGE. Either it is re Driver or pfsync in my Kernel, going to try and build a Kernel without pfsync and with Debug Symbols. re0@pci0:3:0:0: class=0x020000 card=0xe0001458 chip=0x816810ec rev=0x02 hdr=0x00 vendor = 'Realtek Semiconductor' device = 'Gigabit Ethernet NIC(NDIS 6.0) (RTL8168/8111)' class = network subclass = ethernet http://i47.tinypic.com/n18kf4.jpg Cheers Tobias From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 09:35:22 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4B4311065679 for ; Fri, 15 Jan 2010 09:35:22 +0000 (UTC) (envelope-from julian@elischer.org) Received: from utility-0.aerioconnect.net (utility-0.aerioconnect.net [216.240.32.11]) by mx1.freebsd.org (Postfix) with ESMTP id 190C88FC0A for ; Fri, 15 Jan 2010 09:35:21 +0000 (UTC) Received: from idiom.com (mx0.idiom.com [216.240.32.160]) by utility-0.aerioconnect.net (8.13.1/8.13.1) with ESMTP id o0F8vjiT022418; Fri, 15 Jan 2010 00:57:47 -0800 X-Client-Authorized: MaGic Cook1e X-Client-Authorized: MaGic Cook1e Received: from julian-mac.elischer.org (h-67-100-89-137.snfccasy.static.covad.net [67.100.89.137]) by idiom.com (Postfix) with ESMTP id 5F5702D6016; Fri, 15 Jan 2010 00:57:45 -0800 (PST) Message-ID: <4B502E08.2070108@elischer.org> Date: Fri, 15 Jan 2010 00:57:44 -0800 From: Julian Elischer User-Agent: Thunderbird 2.0.0.23 (Macintosh/20090812) MIME-Version: 1.0 To: Tobias Lott References: <20100115085025.0a08ff54@sub.han.vpn.gamesnet.de> In-Reply-To: <20100115085025.0a08ff54@sub.han.vpn.gamesnet.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-virtualization@freebsd.org Subject: Re: Vimage Kernel Panic X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 09:35:22 -0000 Tobias Lott wrote: > Good Day to everyone > > As subject says FreeBSD 8.0-STABLE #10 r202187: Wed Jan 13 18:59:52 CET > 2010 panics at boot. > > The only difference is, I removed options SCTP and added options VIMAGE. > > Either it is re Driver or pfsync in my Kernel, going to try and build a > Kernel without pfsync and with Debug Symbols. probably pfsync, as we haven't done any work on virtualizing it yet. > > re0@pci0:3:0:0: class=0x020000 card=0xe0001458 chip=0x816810ec rev=0x02 > hdr=0x00 vendor = 'Realtek Semiconductor' > device = 'Gigabit Ethernet NIC(NDIS 6.0) (RTL8168/8111)' > class = network > subclass = ethernet > > http://i47.tinypic.com/n18kf4.jpg > > Cheers > Tobias > _______________________________________________ > freebsd-virtualization@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > To unsubscribe, send any mail to "freebsd-virtualization-unsubscribe@freebsd.org" From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 10:27:54 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49F201065670 for ; Fri, 15 Jan 2010 10:27:54 +0000 (UTC) (envelope-from tlott@gamesnet.de) Received: from spirit.gamesnet.de (spirit.gamesnet.de [87.230.101.86]) by mx1.freebsd.org (Postfix) with ESMTP id 048E78FC0A for ; Fri, 15 Jan 2010 10:27:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by spirit.gamesnet.de (Postfix) with ESMTP id B4CDE29B00B; Fri, 15 Jan 2010 11:27:21 +0100 (CET) X-Virus-Scanned: amavisd-new at mail.gamesnet.de Received: from spirit.gamesnet.de ([127.0.0.1]) by localhost (spirit.gamesnet.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZwWuc+x2P+kK; Fri, 15 Jan 2010 11:27:19 +0100 (CET) Received: from sub.han.vpn.gamesnet.de (sub.han.vpn.gamesnet.de [192.168.1.101]) by spirit.gamesnet.de (Postfix) with ESMTPSA id 3A5BD29B007; Fri, 15 Jan 2010 11:27:19 +0100 (CET) Date: Fri, 15 Jan 2010 11:27:18 +0100 From: Tobias Lott To: Julian Elischer Message-ID: <20100115112718.19ce041d@sub.han.vpn.gamesnet.de> In-Reply-To: <4B502E08.2070108@elischer.org> References: <20100115085025.0a08ff54@sub.han.vpn.gamesnet.de> <4B502E08.2070108@elischer.org> X-Mailer: Claws Mail 3.7.3 (GTK+ 2.18.5; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-virtualization@freebsd.org Subject: Re: Vimage Kernel Panic X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 10:27:54 -0000 On Fri, 15 Jan 2010 00:57:44 -0800 Julian Elischer wrote: > Tobias Lott wrote: > > Good Day to everyone > > > > As subject says FreeBSD 8.0-STABLE #10 r202187: Wed Jan 13 18:59:52 > > CET 2010 panics at boot. > > > > The only difference is, I removed options SCTP and added options > > VIMAGE. > > > > Either it is re Driver or pfsync in my Kernel, going to try and > > build a Kernel without pfsync and with Debug Symbols. > > probably pfsync, as we haven't done any work on virtualizing it yet. > Works just fine without pfsync, thanks for the Information. > > > > > re0@pci0:3:0:0: class=0x020000 card=0xe0001458 chip=0x816810ec > > rev=0x02 hdr=0x00 vendor = 'Realtek Semiconductor' > > device = 'Gigabit Ethernet NIC(NDIS 6.0) (RTL8168/8111)' > > class = network > > subclass = ethernet > > > > http://i47.tinypic.com/n18kf4.jpg > > > > Cheers > > Tobias From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 11:45:01 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B0DC21065672 for ; Fri, 15 Jan 2010 11:45:01 +0000 (UTC) (envelope-from romain.garbage@gmail.com) Received: from mail-iw0-f189.google.com (mail-iw0-f189.google.com [209.85.223.189]) by mx1.freebsd.org (Postfix) with ESMTP id 7521E8FC1A for ; Fri, 15 Jan 2010 11:45:00 +0000 (UTC) Received: by iwn27 with SMTP id 27so487041iwn.8 for ; Fri, 15 Jan 2010 03:44:55 -0800 (PST) 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=1LYprGQvQRMV9xBg97NcMgU540Qy4OMTXN/ZNYKP65Q=; b=gfn1YOVgT7XqA75WjhSLfNHwsbPGKMUrgwPi0hSjrzMpLy2sQWyx8GKV5raCA6+9U2 vpNKX/RvTMHf6JxxQ0iztHxebos21b983m6SSySLDVDseznluwneVqyTtZtUQlxiCsX4 IEvMB81j9WF5f+You68PPNQzuHNazlUpv3h9g= 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=ruU+4kPYgpWT3+9VOzu8wpw/ArZnick3IsCHDiG6naNlLigxVAvVoeBNO5mWFol5k8 p4CWqhwJ8hvG/lMnrS30wFi7fhMepMB7eCEAn2oCae8UdQfDAOHk6oLPulgZfdR80vhd KKzjzHkTmoHoiRuTIrjiQQo+XV/AuN4Cdc+P0= MIME-Version: 1.0 Received: by 10.231.24.142 with SMTP id v14mr410968ibb.55.1263554164375; Fri, 15 Jan 2010 03:16:04 -0800 (PST) In-Reply-To: <1263540684.2279.11.camel@localhost> References: <1263540684.2279.11.camel@localhost> Date: Fri, 15 Jan 2010 12:16:04 +0100 Message-ID: <7ab0356e1001150316x125340efre5631bb99b7b7a6b@mail.gmail.com> From: Romain Garbage To: vova@fbsd.ru Content-Type: text/plain; charset=UTF-8 Cc: freebsd-virtualization@freebsd.org Subject: Re: virtualbox-ose and host usb devices X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 11:45:01 -0000 2010/1/15, Vladimir Grebenschikov : > Hi > > Looks like host usb devices are not supported in virtualbox-ose-3.1.2. > > Is it planned to enable host usb devices in virtualbox VMs ? > What are the obstacles ? It's supported in the non-free version, and there is no such version for FreeBSD, AFAIK. I don't know if they're planning to release one for FreeBSD. Regards, Romain From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 13:22:35 2010 Return-Path: Delivered-To: freebsd-virtualization@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CA28106566C for ; Fri, 15 Jan 2010 13:22:35 +0000 (UTC) (envelope-from vova@parallels.com) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id B8A058FC17 for ; Fri, 15 Jan 2010 13:22:32 +0000 (UTC) Received: from vbook.fbsd.ru ([10.30.1.111]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id o0FDMTLW026121 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 15 Jan 2010 16:22:30 +0300 (MSK) Received: from vova by vbook.fbsd.ru with local (Exim 4.71 (FreeBSD)) (envelope-from ) id 1NVm8D-000CAi-0K; Fri, 15 Jan 2010 16:22:29 +0300 From: Vladimir Grebenschikov To: Andrew Thompson In-Reply-To: <20100115081524.GI63408@citylink.fud.org.nz> References: <1263540684.2279.11.camel@localhost> <20100115081524.GI63408@citylink.fud.org.nz> Content-Type: text/plain; charset="KOI8-R" Content-Transfer-Encoding: quoted-printable Date: Fri, 15 Jan 2010 16:22:28 +0300 Message-ID: <1263561748.46732.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.29.5 FreeBSD GNOME Team Port Sender: Vladimir Grebenschikov Cc: freebsd-virtualization@FreeBSD.org Subject: Re: virtualbox-ose and host usb devices X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vova@fbsd.ru List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 13:22:35 -0000 Hi=20 So, no-go with USB stack: * commercial version does not support FreeBSD * OSE version does not support usb mapping What about community implementation of USB support ? Probably there are similar projects ? > > Looks like host usb devices are not supported in > virtualbox-ose-3.1.2. > >=20 > > Is it planned to enable host usb devices in virtualbox VMs ? > > What are the obstacles ? >=20 > That is only available in the closed source edition for which they > have > not yet released a FreeBSD version. >=20 > http://www.virtualbox.org/wiki/Editions --=20 Vladimir B. Grebenschikov vova@fbsd.ru From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 13:43:01 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 68853106566C for ; Fri, 15 Jan 2010 13:43:01 +0000 (UTC) (envelope-from bramverswalm@hotmail.com) Received: from snt0-omc4-s22.snt0.hotmail.com (snt0-omc4-s22.snt0.hotmail.com [65.55.90.225]) by mx1.freebsd.org (Postfix) with ESMTP id 3AF828FC0C for ; Fri, 15 Jan 2010 13:43:00 +0000 (UTC) Received: from SNT135-W43 ([65.55.90.201]) by snt0-omc4-s22.snt0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 15 Jan 2010 05:32:50 -0800 Message-ID: X-Originating-IP: [78.23.192.193] From: Bram Verswalm CC: Date: Fri, 15 Jan 2010 13:32:50 +0000 Importance: Normal In-Reply-To: <1263561748.46732.3.camel@localhost> References: <1263540684.2279.11.camel@localhost>, <20100115081524.GI63408@citylink.fud.org.nz>, <1263561748.46732.3.camel@localhost> MIME-Version: 1.0 X-OriginalArrivalTime: 15 Jan 2010 13:32:52.0137 (UTC) FILETIME=[3CAC0190:01CA95E7] X-Mailman-Approved-At: Fri, 15 Jan 2010 15:04:51 +0000 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: RE: virtualbox-ose and host usb devices X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 13:43:01 -0000 I recently was on the vbox irc channel and there they said a FreeBSD versio= n of the non-ose is in the future plans? > From: vova@fbsd.ru > To: thompsa@FreeBSD.org > Date: Fri=2C 15 Jan 2010 16:22:28 +0300 > CC: freebsd-virtualization@FreeBSD.org > Subject: Re: virtualbox-ose and host usb devices >=20 > Hi=20 >=20 > So=2C no-go with USB stack: > * commercial version does not support FreeBSD > * OSE version does not support usb mapping >=20 > What about community implementation of USB support ? Probably there are > similar projects ? >=20 > > > Looks like host usb devices are not supported in > > virtualbox-ose-3.1.2. > > >=20 > > > Is it planned to enable host usb devices in virtualbox VMs ? > > > What are the obstacles ? > >=20 > > That is only available in the closed source edition for which they > > have > > not yet released a FreeBSD version. > >=20 > > http://www.virtualbox.org/wiki/Editions >=20 >=20 > --=20 > Vladimir B. Grebenschikov > vova@fbsd.ru > _______________________________________________ > freebsd-virtualization@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-virtualization > To unsubscribe=2C send any mail to "freebsd-virtualization-unsubscribe@fr= eebsd.org" =20 _________________________________________________________________ Het laatste nieuws=2C shownieuws en voetbalnieuws op MSN.nl http://nl.msn.com/= From owner-freebsd-virtualization@FreeBSD.ORG Fri Jan 15 08:33:01 2010 Return-Path: Delivered-To: freebsd-virtualization@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DEF40106568B for ; Fri, 15 Jan 2010 08:33:01 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from pele.citylink.co.nz (pele.citylink.co.nz [202.8.44.226]) by mx1.freebsd.org (Postfix) with ESMTP id 9F3058FC18 for ; Fri, 15 Jan 2010 08:33:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by pele.citylink.co.nz (Postfix) with ESMTP id 009967B9E0; Fri, 15 Jan 2010 21:15:30 +1300 (NZDT) X-Virus-Scanned: Debian amavisd-new at citylink.co.nz Received: from pele.citylink.co.nz ([127.0.0.1]) by localhost (pele.citylink.co.nz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dp8pxbd6qJxY; Fri, 15 Jan 2010 21:15:25 +1300 (NZDT) Received: from citylink.fud.org.nz (unknown [202.8.44.45]) by pele.citylink.co.nz (Postfix) with ESMTP; Fri, 15 Jan 2010 21:15:25 +1300 (NZDT) Received: by citylink.fud.org.nz (Postfix, from userid 1001) id AD92911434; Fri, 15 Jan 2010 21:15:24 +1300 (NZDT) Date: Fri, 15 Jan 2010 21:15:24 +1300 From: Andrew Thompson To: Vladimir Grebenschikov Message-ID: <20100115081524.GI63408@citylink.fud.org.nz> References: <1263540684.2279.11.camel@localhost> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1263540684.2279.11.camel@localhost> User-Agent: Mutt/1.5.17 (2007-11-01) X-Mailman-Approved-At: Sat, 16 Jan 2010 08:55:11 +0000 Cc: freebsd-virtualization@freebsd.org Subject: Re: virtualbox-ose and host usb devices X-BeenThere: freebsd-virtualization@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Discussion of various virtualization techniques FreeBSD supports." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 15 Jan 2010 08:33:01 -0000 On Fri, Jan 15, 2010 at 10:31:24AM +0300, Vladimir Grebenschikov wrote: > Hi > > Looks like host usb devices are not supported in virtualbox-ose-3.1.2. > > Is it planned to enable host usb devices in virtualbox VMs ? > What are the obstacles ? That is only available in the closed source edition for which they have not yet released a FreeBSD version. http://www.virtualbox.org/wiki/Editions Andrew