<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-6578</id>
	<title>Nabble - freebsd-emulation</title>
	<updated>2009-12-22T15:47:30Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/freebsd-emulation-f6578.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/freebsd-emulation-f6578.html" />
	<subtitle type="html">Development of Emulators of other operating systems</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26896080</id>
	<title>Re: VirtualBox error if kernel module loader in /boot/loader.conf (WAS Re: Loading kernel modules for virtualbox via script)</title>
	<published>2009-12-22T15:47:30Z</published>
	<updated>2009-12-22T15:47:30Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sorry for my rush on the previous post. Here is a better script:
&lt;br&gt;&amp;gt; ----------------------------------------------------------
&lt;br&gt;&amp;gt; #!/bin/sh
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt; # $FreeBSD: src/etc/rc.d/vbox,v 1.0 2009/12/22 20:20:06 mlobo Exp $
&lt;br&gt;&amp;gt; #
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; # PROVIDE: vbox
&lt;br&gt;&amp;gt; # REQUIRE: LOGIN
&lt;br&gt;&amp;gt; # KEYWORD: nojail
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; . /etc/rc.subr
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; name=&amp;quot;vbox&amp;quot;
&lt;br&gt;&amp;gt; start_cmd=&amp;quot;${name}_start&amp;quot;
&lt;br&gt;&amp;gt; stop_cmd=&amp;quot;:&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; vboxm_start()
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/sbin/kldload vboxnetflt
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;/sbin/kldload vboxnetadp
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; vbox_start()
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt; 	if checkyesno vbox_enable; then
&lt;br&gt;&amp;gt; 		echo ' VirtualBox modules'
&lt;br&gt;&amp;gt; 		vboxm_start
&lt;br&gt;&amp;gt; 	fi
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; load_rc_config $name
&lt;br&gt;&amp;gt; run_rc_command &amp;quot;$1&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You have to place vbox_enable=&amp;quot;YES&amp;quot; on /etc/rc.conf
&lt;/div&gt;&lt;br&gt;Thank you Mario.
&lt;br&gt;&lt;br&gt;This works fine, module loaded and VirtualBox VM starts with no error :-)
&lt;br&gt;&lt;br&gt;/Les
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26896080&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26896080&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VirtualBox-error-if-kernel-module-loader-in--boot-loader.conf-%28WAS-Re%3A-Loading-kernel-modules-for-virtualbox-via-script%29-tp26895426p26896080.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26896052</id>
	<title>Re: VirtualBox error if kernel module loader in /boot/loader.conf (WAS Re: Loading kernel modules for virtualbox via script) CORRECTION !</title>
	<published>2009-12-22T15:43:55Z</published>
	<updated>2009-12-22T15:43:55Z</updated>
	<author>
		<name>Mario Lobo-5</name>
	</author>
	<content type="html">&lt;br&gt;A small correction:
&lt;br&gt;&lt;br&gt;take out the &amp;quot;-&amp;quot; lines and add the &amp;quot;+&amp;quot; line
&lt;br&gt;&lt;br&gt;It should work now !
&lt;br&gt;&lt;br&gt;----------------------------------------------------------
&lt;br&gt;#!/bin/sh
&lt;br&gt;#
&lt;br&gt;# $FreeBSD: src/etc/rc.d/vbox,v 1.0 2009/12/22 20:20:06 mlobo Exp $
&lt;br&gt;#
&lt;br&gt;&lt;br&gt;# PROVIDE: vbox
&lt;br&gt;- # REQUIRE: LOGIN 
&lt;br&gt;- # KEYWORD: nojail 
&lt;br&gt;+ # BEFORE: LOGIN
&lt;br&gt;&lt;br&gt;. /etc/rc.subr
&lt;br&gt;&lt;br&gt;name=&amp;quot;vbox&amp;quot;
&lt;br&gt;start_cmd=&amp;quot;${name}_start&amp;quot;
&lt;br&gt;stop_cmd=&amp;quot;:&amp;quot;
&lt;br&gt;&lt;br&gt;vboxm_start()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /sbin/kldload vboxnetflt
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /sbin/kldload vboxnetadp
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;vbox_start()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if checkyesno vbox_enable; then
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; echo ' VirtualBox modules'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vboxm_start
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fi
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;load_rc_config $name
&lt;br&gt;run_rc_command &amp;quot;$1&amp;quot;
&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;&lt;br&gt;Place vbox_enable=&amp;quot;YES&amp;quot; on /etc/rc.conf
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Mario Lobo
&lt;br&gt;&lt;a href=&quot;http://www.mallavoodoo.com.br&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mallavoodoo.com.br&lt;/a&gt;&lt;br&gt;FreeBSD since version 2.2.8 [not Pro-Audio.... YET!!] (99,7% winfoes FREE)
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26896052&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26896052&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-VirtualBox-error-if-kernel-module-loader-in--boot-loader.conf-%28WAS-Re%3A-Loading-kernel-modules-for-virtualbox-via-script%29-CORRECTION-%21-tp26896052p26896052.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26895921</id>
	<title>Re: VirtualBox error if kernel module loader in /boot/loader.conf (WAS Re: Loading kernel modules for virtualbox via script)</title>
	<published>2009-12-22T15:25:19Z</published>
	<updated>2009-12-22T15:25:19Z</updated>
	<author>
		<name>Mario Lobo-5</name>
	</author>
	<content type="html">On Tuesday 22 December 2009 20:20:40 Leslie Jensen wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt; This is a known problem for a while but I think it's almost microscopic.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Just place the following script in /usr/local/etc/rc.d/vboxkos
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; -----------------------------------
&lt;br&gt;&amp;gt; &amp;gt; #!/bin/sh
&lt;br&gt;&amp;gt; &amp;gt; echo ' VirtualBox'
&lt;br&gt;&amp;gt; &amp;gt; /sbin/kldload vboxnetflt
&lt;br&gt;&amp;gt; &amp;gt; /sbin/kldload vboxnetadp&amp;lt;- optional
&lt;br&gt;&amp;gt; &amp;gt; ------------------------------------
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; and take vboxnetflt_load=&amp;quot;YES&amp;quot; out of loader.conf.
&lt;br&gt;&amp;gt; &amp;gt; Load only vboxdrv.ko there !
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The modules will be loaded late enough and everything will work.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I placed the vboxkos script as you described, set the same owner and
&lt;br&gt;&amp;gt; group and rights as the files already present. Unfortunately the
&lt;br&gt;&amp;gt; vboxnetflt module did not get loaded.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; /Les
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;Sorry for my rush on the previous post. Here is a better script:
&lt;br&gt;----------------------------------------------------------
&lt;br&gt;#!/bin/sh
&lt;br&gt;#
&lt;br&gt;# $FreeBSD: src/etc/rc.d/vbox,v 1.0 2009/12/22 20:20:06 mlobo Exp $
&lt;br&gt;#
&lt;br&gt;&lt;br&gt;# PROVIDE: vbox
&lt;br&gt;# REQUIRE: LOGIN
&lt;br&gt;# KEYWORD: nojail
&lt;br&gt;&lt;br&gt;. /etc/rc.subr
&lt;br&gt;&lt;br&gt;name=&amp;quot;vbox&amp;quot;
&lt;br&gt;start_cmd=&amp;quot;${name}_start&amp;quot;
&lt;br&gt;stop_cmd=&amp;quot;:&amp;quot;
&lt;br&gt;&lt;br&gt;vboxm_start()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /sbin/kldload vboxnetflt
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /sbin/kldload vboxnetadp
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;vbox_start()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if checkyesno vbox_enable; then
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; echo ' VirtualBox modules'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vboxm_start
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fi
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;load_rc_config $name
&lt;br&gt;run_rc_command &amp;quot;$1&amp;quot;
&lt;br&gt;&lt;br&gt;-------------------------------------------------------
&lt;br&gt;&lt;br&gt;You have to place vbox_enable=&amp;quot;YES&amp;quot; on /etc/rc.conf
&lt;br&gt;-- 
&lt;br&gt;Mario Lobo
&lt;br&gt;&lt;a href=&quot;http://www.mallavoodoo.com.br&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mallavoodoo.com.br&lt;/a&gt;&lt;br&gt;FreeBSD since version 2.2.8 [not Pro-Audio.... YET!!] (99,7% winfoes FREE)
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895921&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895921&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VirtualBox-error-if-kernel-module-loader-in--boot-loader.conf-%28WAS-Re%3A-Loading-kernel-modules-for-virtualbox-via-script%29-tp26895426p26895921.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26895862</id>
	<title>Re: VirtualBox error if kernel module loader in /boot/loader.conf (WAS Re: Loading kernel modules for virtualbox via script)</title>
	<published>2009-12-22T15:20:40Z</published>
	<updated>2009-12-22T15:20:40Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; This is a known problem for a while but I think it's almost microscopic.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Just place the following script in /usr/local/etc/rc.d/vboxkos
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----------------------------------
&lt;br&gt;&amp;gt; #!/bin/sh
&lt;br&gt;&amp;gt; echo ' VirtualBox'
&lt;br&gt;&amp;gt; /sbin/kldload vboxnetflt
&lt;br&gt;&amp;gt; /sbin/kldload vboxnetadp&amp;lt;- optional
&lt;br&gt;&amp;gt; ------------------------------------
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; and take vboxnetflt_load=&amp;quot;YES&amp;quot; out of loader.conf.
&lt;br&gt;&amp;gt; Load only vboxdrv.ko there !
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The modules will be loaded late enough and everything will work.
&lt;/div&gt;&lt;br&gt;I placed the vboxkos script as you described, set the same owner and 
&lt;br&gt;group and rights as the files already present. Unfortunately the 
&lt;br&gt;vboxnetflt module did not get loaded.
&lt;br&gt;&lt;br&gt;/Les
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895862&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895862&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VirtualBox-error-if-kernel-module-loader-in--boot-loader.conf-%28WAS-Re%3A-Loading-kernel-modules-for-virtualbox-via-script%29-tp26895426p26895862.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26895681</id>
	<title>Re: VirtualBox error if kernel module loader in /boot/loader.conf (WAS Re: Loading kernel modules for virtualbox via script)</title>
	<published>2009-12-22T15:01:08Z</published>
	<updated>2009-12-22T15:01:08Z</updated>
	<author>
		<name>Mario Lobo-5</name>
	</author>
	<content type="html">On Tuesday 22 December 2009 19:48:27 Leslie Jensen wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On 2009-12-22 23:17, Paul Wootton wrote:
&lt;br&gt;&amp;gt; &amp;gt; I too get an error on starting a VM if I try to load the modules from
&lt;br&gt;&amp;gt; &amp;gt; /boot/loader.conf. For me, the loading of vboxnetflt does not seem to
&lt;br&gt;&amp;gt; &amp;gt; work correctly. I dont load vboxnetadp, so I cant comment on that.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; /boot/loader.conf
&lt;br&gt;&amp;gt; &amp;gt; zfs_load=&amp;quot;YES&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; vboxdrv_load=&amp;quot;YES&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; vboxnetflt_load=&amp;quot;YES&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; If I try to start a VM that is using the &amp;quot;Bridged Ethernet&amp;quot; adapter, the
&lt;br&gt;&amp;gt; &amp;gt; error I get is
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;Failed to start the virtual machine Win Vista
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Failed to open/create the internal network 'HostInterfaceNetworking-re0'
&lt;br&gt;&amp;gt; &amp;gt; (VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Failed to attach the network LUN
&lt;br&gt;&amp;gt; &amp;gt; (VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Unknown eror creating VM (VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Details
&lt;br&gt;&amp;gt; &amp;gt; Result Code: NS_ERROR_FAILURE (0x80004005)
&lt;br&gt;&amp;gt; &amp;gt; Component: Console
&lt;br&gt;&amp;gt; &amp;gt; Interface: IConsole {0a51994b-cbc6-4686-94eb-d4e4023280e2}&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I know the module got loaded.
&lt;br&gt;&amp;gt; &amp;gt; [paul@demophon /usr/home/paul]$ kldstat
&lt;br&gt;&amp;gt; &amp;gt; Id Refs Address Size Name
&lt;br&gt;&amp;gt; &amp;gt; 1 25 0xffffffff80100000 e7c540 kernel
&lt;br&gt;&amp;gt; &amp;gt; 2 1 0xffffffff80f7d000 18a788 zfs.ko
&lt;br&gt;&amp;gt; &amp;gt; 3 2 0xffffffff81108000 3778 opensolaris.ko
&lt;br&gt;&amp;gt; &amp;gt; 4 2 0xffffffff8110d000 41e88 vboxdrv.ko
&lt;br&gt;&amp;gt; &amp;gt; 5 1 0xffffffff8114f000 6960 vboxnetflt.ko
&lt;br&gt;&amp;gt; &amp;gt; 6 1 0xffffffff81223000 38fc linprocfs.ko
&lt;br&gt;&amp;gt; &amp;gt; 7 1 0xffffffff81227000 1bcc4 linux.ko
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; If I then do a kldunload vboxnetflt followed by kldload vboxnetflt, I
&lt;br&gt;&amp;gt; &amp;gt; can now start and stop my VMs to my heart's content.
&lt;br&gt;&amp;gt; &amp;gt; Im using 9 CURRENT and I only started using /boot/loader.conf for the
&lt;br&gt;&amp;gt; &amp;gt; vbox modules about a month back. The vboxnetflt module has never worked
&lt;br&gt;&amp;gt; &amp;gt; correctly for me this way
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Paul
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Thanks for starting the new tread :-)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; This is exactly the same problem I'm having.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'm on 8.0-RELEASE
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; /Les
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895681&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;&amp;gt; To unsubscribe, send any mail to
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895681&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;This is a known problem for a while but I think it's almost microscopic.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Just place the following script in /usr/local/etc/rc.d/vboxkos
&lt;br&gt;&lt;br&gt;-----------------------------------
&lt;br&gt;#!/bin/sh
&lt;br&gt;echo ' VirtualBox'
&lt;br&gt;/sbin/kldload vboxnetflt
&lt;br&gt;/sbin/kldload vboxnetadp &amp;lt;- optional
&lt;br&gt;------------------------------------
&lt;br&gt;&lt;br&gt;and take vboxnetflt_load=&amp;quot;YES&amp;quot; out of loader.conf.
&lt;br&gt;Load only vboxdrv.ko there !
&lt;br&gt;&lt;br&gt;The modules will be loaded late enough and everything will work.
&lt;br&gt;-- 
&lt;br&gt;Mario Lobo
&lt;br&gt;&lt;a href=&quot;http://www.mallavoodoo.com.br&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.mallavoodoo.com.br&lt;/a&gt;&lt;br&gt;FreeBSD since version 2.2.8 [not Pro-Audio.... YET!!] (99,7% winfoes FREE)
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895681&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895681&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VirtualBox-error-if-kernel-module-loader-in--boot-loader.conf-%28WAS-Re%3A-Loading-kernel-modules-for-virtualbox-via-script%29-tp26895426p26895681.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26895507</id>
	<title>Re: VirtualBox error if kernel module loader in /boot/loader.conf (WAS Re: Loading kernel modules for virtualbox via script)</title>
	<published>2009-12-22T14:48:27Z</published>
	<updated>2009-12-22T14:48:27Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;On 2009-12-22 23:17, Paul Wootton wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I too get an error on starting a VM if I try to load the modules from
&lt;br&gt;&amp;gt; /boot/loader.conf. For me, the loading of vboxnetflt does not seem to
&lt;br&gt;&amp;gt; work correctly. I dont load vboxnetadp, so I cant comment on that.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /boot/loader.conf
&lt;br&gt;&amp;gt; zfs_load=&amp;quot;YES&amp;quot;
&lt;br&gt;&amp;gt; vboxdrv_load=&amp;quot;YES&amp;quot;
&lt;br&gt;&amp;gt; vboxnetflt_load=&amp;quot;YES&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If I try to start a VM that is using the &amp;quot;Bridged Ethernet&amp;quot; adapter, the
&lt;br&gt;&amp;gt; error I get is
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;quot;Failed to start the virtual machine Win Vista
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Failed to open/create the internal network 'HostInterfaceNetworking-re0'
&lt;br&gt;&amp;gt; (VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Failed to attach the network LUN
&lt;br&gt;&amp;gt; (VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Unknown eror creating VM (VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Details
&lt;br&gt;&amp;gt; Result Code: NS_ERROR_FAILURE (0x80004005)
&lt;br&gt;&amp;gt; Component: Console
&lt;br&gt;&amp;gt; Interface: IConsole {0a51994b-cbc6-4686-94eb-d4e4023280e2}&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I know the module got loaded.
&lt;br&gt;&amp;gt; [paul@demophon /usr/home/paul]$ kldstat
&lt;br&gt;&amp;gt; Id Refs Address Size Name
&lt;br&gt;&amp;gt; 1 25 0xffffffff80100000 e7c540 kernel
&lt;br&gt;&amp;gt; 2 1 0xffffffff80f7d000 18a788 zfs.ko
&lt;br&gt;&amp;gt; 3 2 0xffffffff81108000 3778 opensolaris.ko
&lt;br&gt;&amp;gt; 4 2 0xffffffff8110d000 41e88 vboxdrv.ko
&lt;br&gt;&amp;gt; 5 1 0xffffffff8114f000 6960 vboxnetflt.ko
&lt;br&gt;&amp;gt; 6 1 0xffffffff81223000 38fc linprocfs.ko
&lt;br&gt;&amp;gt; 7 1 0xffffffff81227000 1bcc4 linux.ko
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If I then do a kldunload vboxnetflt followed by kldload vboxnetflt, I
&lt;br&gt;&amp;gt; can now start and stop my VMs to my heart's content.
&lt;br&gt;&amp;gt; Im using 9 CURRENT and I only started using /boot/loader.conf for the
&lt;br&gt;&amp;gt; vbox modules about a month back. The vboxnetflt module has never worked
&lt;br&gt;&amp;gt; correctly for me this way
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Paul
&lt;/div&gt;&lt;br&gt;Thanks for starting the new tread :-)
&lt;br&gt;&lt;br&gt;This is exactly the same problem I'm having.
&lt;br&gt;&lt;br&gt;I'm on 8.0-RELEASE
&lt;br&gt;&lt;br&gt;/Les
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895507&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895507&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VirtualBox-error-if-kernel-module-loader-in--boot-loader.conf-%28WAS-Re%3A-Loading-kernel-modules-for-virtualbox-via-script%29-tp26895426p26895507.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26895479</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-22T14:45:36Z</published>
	<updated>2009-12-22T14:45:36Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;On 2009-12-22 23:18, Adam Vande More wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; It started with the tread below
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;&lt;a href=&quot;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I asumed it was the accepted way to resolve this matter, therefore I
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; just asked for a way to automate it when the script in /etc/rc.d/
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; failed on 8.0.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; I'll start a new tread and describe what I've done.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; /Les
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Yeah, that post is basically irrelevant to your described issue. &amp;nbsp;Vbox
&lt;br&gt;&amp;gt; has changed a lot since then, #1 being it's in the ports tree now.
&lt;br&gt;&amp;gt; You've not actually related what the core issue is though.
&lt;br&gt;&amp;gt; vboxnetadp.ko is needed for host-only networking mode, most people don't
&lt;br&gt;&amp;gt; need this and quite useless for almost anything. &amp;nbsp;Are you aware of this?
&lt;/div&gt;&lt;br&gt;No, I wasn't aware of this!
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You also stated &amp;quot; I load vboxnetflt.ko in /boot/loader.conf and load
&lt;br&gt;&amp;gt; vboxnetadp.ko manually after I've logged in.&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do not do this. &amp;nbsp;This why crontab didn't work for you.
&lt;br&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Adam Vande More
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895479&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895479&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26895479.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26895199</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-22T14:18:18Z</published>
	<updated>2009-12-22T14:18:18Z</updated>
	<author>
		<name>Galactic_Dominator</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp;It started with the tread below
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I asumed it was the accepted way to resolve this matter, therefore I just
&lt;br&gt;&amp;gt; asked for a way to automate it when the script in /etc/rc.d/ failed on 8.0.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'll start a new tread and describe what I've done.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /Les
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;Yeah, that post is basically irrelevant to your described issue. &amp;nbsp;Vbox has
&lt;br&gt;changed a lot since then, #1 being it's in the ports tree now. &amp;nbsp;You've not
&lt;br&gt;actually related what the core issue is though. &amp;nbsp;vboxnetadp.ko is needed for
&lt;br&gt;host-only networking mode, most people don't need this and quite useless for
&lt;br&gt;almost anything. &amp;nbsp;Are you aware of this?
&lt;br&gt;&lt;br&gt;You also stated &amp;quot; I load vboxnetflt.ko in /boot/loader.conf and load
&lt;br&gt;vboxnetadp.ko manually after I've logged in.&amp;quot;
&lt;br&gt;&lt;br&gt;Do not do this. &amp;nbsp;This why crontab didn't work for you.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Adam Vande More
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895199&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895199&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26895199.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26895426</id>
	<title>VirtualBox error if kernel module loader in /boot/loader.conf (WAS Re: Loading kernel modules for virtualbox via script)</title>
	<published>2009-12-22T14:17:42Z</published>
	<updated>2009-12-22T14:17:42Z</updated>
	<author>
		<name>Paul Wootton-2</name>
	</author>
	<content type="html">&amp;nbsp; Doug Barton wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Leslie Jensen wrote:
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; On 2009-12-22 21:22, Doug Barton wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; The appropriate way to do this is to add them to /boot/loader.conf,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; like this:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; vboxdrv_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; vboxnetflt_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; vboxnetadp_load=&amp;quot;yes&amp;quot; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; Thanks for your answer.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I did test to load the modules as you suggest. They do load but
&lt;br&gt;&amp;gt;&amp;gt; virtualbox produces an error when starting a virtual machine.
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If what you're saying is that you tried loading the modules in
&lt;br&gt;&amp;gt; /boot/loader.conf and that produced an error, then you need to start a
&lt;br&gt;&amp;gt; NEW thread on this list and describe what you did, and what the
&lt;br&gt;&amp;gt; results are in detail. This method worked fine for me in 9-current, so
&lt;br&gt;&amp;gt; if it's not working for you then we need to find out why.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp; 
&lt;br&gt;&amp;gt;&amp;gt; I've tried to load vboxdrv and vboxnetflt via loader.conf and then load
&lt;br&gt;&amp;gt;&amp;gt; vboxnetadp manually before starting virtualbox. That also produces the
&lt;br&gt;&amp;gt;&amp;gt; error when starting a VM. &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;gt;&amp;gt; &amp;nbsp; &amp;nbsp; 
&lt;/div&gt;I too get an error on starting a VM if I try to load the modules from 
&lt;br&gt;/boot/loader.conf. For me, the loading of vboxnetflt does not seem to 
&lt;br&gt;work correctly. I dont load vboxnetadp, so I cant comment on that.
&lt;br&gt;&lt;br&gt;/boot/loader.conf
&lt;br&gt;zfs_load=&amp;quot;YES&amp;quot;
&lt;br&gt;vboxdrv_load=&amp;quot;YES&amp;quot;
&lt;br&gt;vboxnetflt_load=&amp;quot;YES&amp;quot;
&lt;br&gt;&lt;br&gt;&lt;br&gt;If I try to start a VM that is using the &amp;quot;Bridged Ethernet&amp;quot; adapter, the 
&lt;br&gt;error I get is
&lt;br&gt;&lt;br&gt;&amp;quot;Failed to start the virtual machine Win Vista
&lt;br&gt;&lt;br&gt;Failed to open/create the internal network 'HostInterfaceNetworking-re0' 
&lt;br&gt;(VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&lt;br&gt;Failed to attach the network LUN
&lt;br&gt;(VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&lt;br&gt;Unknown eror creating VM (VERR_SUPDRV_COMPONENT_NOT_FOUND).
&lt;br&gt;&lt;br&gt;Details
&lt;br&gt;Result Code: NS_ERROR_FAILURE (0x80004005)
&lt;br&gt;Component: Console
&lt;br&gt;Interface: IConsole {0a51994b-cbc6-4686-94eb-d4e4023280e2}&amp;quot;
&lt;br&gt;&lt;br&gt;&lt;br&gt;I know the module got loaded.
&lt;br&gt;[paul@demophon /usr/home/paul]$ kldstat
&lt;br&gt;Id Refs Address &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Size &amp;nbsp; &amp;nbsp; Name
&lt;br&gt;&amp;nbsp;1 &amp;nbsp; 25 0xffffffff80100000 e7c540 &amp;nbsp; kernel
&lt;br&gt;&amp;nbsp;2 &amp;nbsp; &amp;nbsp;1 0xffffffff80f7d000 18a788 &amp;nbsp; zfs.ko
&lt;br&gt;&amp;nbsp;3 &amp;nbsp; &amp;nbsp;2 0xffffffff81108000 3778 &amp;nbsp; &amp;nbsp; opensolaris.ko
&lt;br&gt;&amp;nbsp;4 &amp;nbsp; &amp;nbsp;2 0xffffffff8110d000 41e88 &amp;nbsp; &amp;nbsp;vboxdrv.ko
&lt;br&gt;&amp;nbsp;5 &amp;nbsp; &amp;nbsp;1 0xffffffff8114f000 6960 &amp;nbsp; &amp;nbsp; vboxnetflt.ko
&lt;br&gt;&amp;nbsp;6 &amp;nbsp; &amp;nbsp;1 0xffffffff81223000 38fc &amp;nbsp; &amp;nbsp; linprocfs.ko
&lt;br&gt;&amp;nbsp;7 &amp;nbsp; &amp;nbsp;1 0xffffffff81227000 1bcc4 &amp;nbsp; &amp;nbsp;linux.ko
&lt;br&gt;&lt;br&gt;If I then do a kldunload vboxnetflt followed by kldload vboxnetflt, I 
&lt;br&gt;can now start and stop my VMs to my heart's content.
&lt;br&gt;Im using 9 CURRENT and I only started using /boot/loader.conf for the 
&lt;br&gt;vbox modules about a month back. The vboxnetflt module has never worked 
&lt;br&gt;correctly for me this way
&lt;br&gt;&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895426&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895426&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VirtualBox-error-if-kernel-module-loader-in--boot-loader.conf-%28WAS-Re%3A-Loading-kernel-modules-for-virtualbox-via-script%29-tp26895426p26895426.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26895032</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-22T14:02:48Z</published>
	<updated>2009-12-22T14:02:48Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;On 2009-12-22 22:32, Doug Barton wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Leslie Jensen wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On 2009-12-22 21:22, Doug Barton wrote:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; The appropriate way to do this is to add them to /boot/loader.conf,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; like this:
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; vboxdrv_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; vboxnetflt_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; vboxnetadp_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; You could also write a new-style rc.d script to do this fairly easily,
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; see
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; for more information. There are also existing ports that use rc.d to
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; load kernel modules, although none of the names come to mind off hand.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; Doug
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks for your answer.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I did test to load the modules as you suggest. They do load but
&lt;br&gt;&amp;gt;&amp;gt; virtualbox produces an error when starting a virtual machine.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If what you're saying is that you tried loading the modules in
&lt;br&gt;&amp;gt; /boot/loader.conf and that produced an error, then you need to start a
&lt;br&gt;&amp;gt; NEW thread on this list and describe what you did, and what the
&lt;br&gt;&amp;gt; results are in detail. This method worked fine for me in 9-current, so
&lt;br&gt;&amp;gt; if it's not working for you then we need to find out why.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I found information in the forums suggesting that one could load the
&lt;br&gt;&amp;gt;&amp;gt; modules via a script i /etc/rc.d/. But with 8.0 that did not work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do you understand why it didn't work? Do you understand that my
&lt;br&gt;&amp;gt; suggestion is different than the one you received on the forum?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I've tried to load vboxdrv and vboxnetflt via loader.conf and then load
&lt;br&gt;&amp;gt;&amp;gt; vboxnetadp manually before starting virtualbox. That also produces the
&lt;br&gt;&amp;gt;&amp;gt; error when starting a VM.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; That sounds like a deeper issue to me that has nothing to do with HOW
&lt;br&gt;&amp;gt; you load them. Once again, you need to start a NEW thread to try and
&lt;br&gt;&amp;gt; diagnose the problem you're having.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; For now I load the modules manually with a script that also starts
&lt;br&gt;&amp;gt;&amp;gt; virtualbox.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If you have an actual solution that works then you should include that
&lt;br&gt;&amp;gt; information in the new thread you're going to create. :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Doug
&lt;br&gt;&amp;gt;
&lt;/div&gt;It started with the tread below
&lt;br&gt;&lt;a href=&quot;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&lt;/a&gt;&lt;br&gt;&lt;br&gt;I asumed it was the accepted way to resolve this matter, therefore I 
&lt;br&gt;just asked for a way to automate it when the script in /etc/rc.d/ failed 
&lt;br&gt;on 8.0.
&lt;br&gt;&lt;br&gt;I'll start a new tread and describe what I've done.
&lt;br&gt;&lt;br&gt;/Les
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895032&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26895032&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26895032.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26894673</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-22T13:32:49Z</published>
	<updated>2009-12-22T13:32:49Z</updated>
	<author>
		<name>Doug Barton</name>
	</author>
	<content type="html">Leslie Jensen wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; On 2009-12-22 21:22, Doug Barton wrote:
&lt;br&gt;&amp;gt;&amp;gt; The appropriate way to do this is to add them to /boot/loader.conf,
&lt;br&gt;&amp;gt;&amp;gt; like this:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; vboxdrv_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; vboxnetflt_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt; vboxnetadp_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; You could also write a new-style rc.d script to do this fairly easily,
&lt;br&gt;&amp;gt;&amp;gt; see
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; for more information. There are also existing ports that use rc.d to
&lt;br&gt;&amp;gt;&amp;gt; load kernel modules, although none of the names come to mind off hand.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Doug
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for your answer.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I did test to load the modules as you suggest. They do load but
&lt;br&gt;&amp;gt; virtualbox produces an error when starting a virtual machine.
&lt;/div&gt;&lt;br&gt;If what you're saying is that you tried loading the modules in
&lt;br&gt;/boot/loader.conf and that produced an error, then you need to start a
&lt;br&gt;NEW thread on this list and describe what you did, and what the
&lt;br&gt;results are in detail. This method worked fine for me in 9-current, so
&lt;br&gt;if it's not working for you then we need to find out why.
&lt;br&gt;&lt;br&gt;&amp;gt; I found information in the forums suggesting that one could load the
&lt;br&gt;&amp;gt; modules via a script i /etc/rc.d/. But with 8.0 that did not work.
&lt;br&gt;&lt;br&gt;Do you understand why it didn't work? Do you understand that my
&lt;br&gt;suggestion is different than the one you received on the forum?
&lt;br&gt;&lt;br&gt;&amp;gt; I've tried to load vboxdrv and vboxnetflt via loader.conf and then load
&lt;br&gt;&amp;gt; vboxnetadp manually before starting virtualbox. That also produces the
&lt;br&gt;&amp;gt; error when starting a VM.
&lt;br&gt;&lt;br&gt;That sounds like a deeper issue to me that has nothing to do with HOW
&lt;br&gt;you load them. Once again, you need to start a NEW thread to try and
&lt;br&gt;diagnose the problem you're having.
&lt;br&gt;&lt;br&gt;&amp;gt; For now I load the modules manually with a script that also starts
&lt;br&gt;&amp;gt; virtualbox.
&lt;br&gt;&lt;br&gt;If you have an actual solution that works then you should include that
&lt;br&gt;information in the new thread you're going to create. :)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Doug
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Improve the effectiveness of your Internet presence with
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a domain name makeover! &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://SupersetSolutions.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://SupersetSolutions.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26894673&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26894673&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26894673.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26894474</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-22T13:18:05Z</published>
	<updated>2009-12-22T13:18:05Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;On 2009-12-22 21:22, Doug Barton wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The appropriate way to do this is to add them to /boot/loader.conf,
&lt;br&gt;&amp;gt; like this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; vboxdrv_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt; vboxnetflt_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt; vboxnetadp_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You could also write a new-style rc.d script to do this fairly easily,
&lt;br&gt;&amp;gt; see
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&lt;/a&gt;&lt;br&gt;&amp;gt; for more information. There are also existing ports that use rc.d to
&lt;br&gt;&amp;gt; load kernel modules, although none of the names come to mind off hand.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Doug
&lt;br&gt;&amp;gt;
&lt;/div&gt;Thanks for your answer.
&lt;br&gt;&lt;br&gt;I did test to load the modules as you suggest. They do load but 
&lt;br&gt;virtualbox produces an error when starting a virtual machine.
&lt;br&gt;&lt;br&gt;I found information in the forums suggesting that one could load the 
&lt;br&gt;modules via a script i /etc/rc.d/. But with 8.0 that did not work.
&lt;br&gt;&lt;br&gt;I've tried to load vboxdrv and vboxnetflt via loader.conf and then load 
&lt;br&gt;vboxnetadp manually before starting virtualbox. That also produces the 
&lt;br&gt;error when starting a VM.
&lt;br&gt;&lt;br&gt;So the vboxnetflt and vboxnetadp must be loaded in that order before one 
&lt;br&gt;starts virtualbox.
&lt;br&gt;&lt;br&gt;I was ok with the suggested script so when that didn't work I got stuck.
&lt;br&gt;&lt;br&gt;For now I load the modules manually with a script that also starts 
&lt;br&gt;virtualbox.
&lt;br&gt;&lt;br&gt;/Les
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26894474&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26894474&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26894474.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26894159</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-22T12:29:34Z</published>
	<updated>2009-12-22T12:29:34Z</updated>
	<author>
		<name>Yuri Pankov</name>
	</author>
	<content type="html">On Tue, Dec 22, 2009 at 12:22:05PM -0800, Doug Barton wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The appropriate way to do this is to add them to /boot/loader.conf,
&lt;br&gt;&amp;gt; like this:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; vboxdrv_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt; vboxnetflt_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt; vboxnetadp_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; You could also write a new-style rc.d script to do this fairly easily,
&lt;br&gt;&amp;gt; see
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&lt;/a&gt;&lt;br&gt;&amp;gt; for more information. There are also existing ports that use rc.d to
&lt;br&gt;&amp;gt; load kernel modules, although none of the names come to mind off hand.
&lt;/div&gt;&lt;br&gt;And many base rc scripts in /etc/rc.d/, grep for load_kld, defined and
&lt;br&gt;described in /etc/rc.subr.
&lt;br&gt;&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Doug
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; -- 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 	Improve the effectiveness of your Internet presence with
&lt;br&gt;&amp;gt; 	a domain name makeover! &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://SupersetSolutions.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://SupersetSolutions.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Yuri
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26894159&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26894159&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26894159.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26893774</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-22T12:22:05Z</published>
	<updated>2009-12-22T12:22:05Z</updated>
	<author>
		<name>Doug Barton</name>
	</author>
	<content type="html">The appropriate way to do this is to add them to /boot/loader.conf,
&lt;br&gt;like this:
&lt;br&gt;&lt;br&gt;vboxdrv_load=&amp;quot;yes&amp;quot;
&lt;br&gt;vboxnetflt_load=&amp;quot;yes&amp;quot;
&lt;br&gt;vboxnetadp_load=&amp;quot;yes&amp;quot;
&lt;br&gt;&lt;br&gt;You could also write a new-style rc.d script to do this fairly easily,
&lt;br&gt;see
&lt;br&gt;&lt;a href=&quot;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html&lt;/a&gt;&lt;br&gt;for more information. There are also existing ports that use rc.d to
&lt;br&gt;load kernel modules, although none of the names come to mind off hand.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Doug
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Improve the effectiveness of your Internet presence with
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; a domain name makeover! &amp;nbsp; &amp;nbsp;&lt;a href=&quot;http://SupersetSolutions.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://SupersetSolutions.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26893774&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26893774&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26893774.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26888347</id>
	<title>Re: Wiki says: Bridged networking doesn't work with a wireless	interface</title>
	<published>2009-12-22T05:27:03Z</published>
	<updated>2009-12-22T05:27:03Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;On 2009-12-22 14:22, Christof Schulze wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Am Montag 21 Dezember 2009 23:41:42 schrieb Leslie Jensen:
&lt;br&gt;&amp;gt;&amp;gt; &lt;a href=&quot;http://wiki.freebsd.org/VirtualBox&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/VirtualBox&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; says
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Bridged networking doesn't work with a wireless interface
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; I'm in the process of testing the iwn driver on 8.0-RELEASE.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On this machine Bridged networking works with a wireless interface.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; So I was just wondering if I was lucky or the wiki needs an update?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; /Leslie
&lt;br&gt;&amp;gt; &amp;nbsp; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; in general the wiki is correct, but there might be some exceptions like in
&lt;br&gt;&amp;gt; your case. The Problem with bridging ethernet and wlan is that the layer 2
&lt;br&gt;&amp;gt; protocol is different which some drivers cannot handle correctly.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Christof
&lt;br&gt;&amp;gt;
&lt;/div&gt;Hi Christof
&lt;br&gt;&lt;br&gt;I've seen that it's quite intermittent and unreliable, and I dropped the 
&lt;br&gt;testing with wlan.
&lt;br&gt;&lt;br&gt;/Leslie
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26888347&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26888347&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wiki-says%3A-Bridged-networking-doesn%27t-work-with-a-wireless-interface-tp26881495p26888347.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26888285</id>
	<title>Re: Wiki says: Bridged networking doesn't work with a wireless interface</title>
	<published>2009-12-22T05:22:16Z</published>
	<updated>2009-12-22T05:22:16Z</updated>
	<author>
		<name>Christof Schulze</name>
	</author>
	<content type="html">Am Montag 21 Dezember 2009 23:41:42 schrieb Leslie Jensen:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &lt;a href=&quot;http://wiki.freebsd.org/VirtualBox&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/VirtualBox&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; says
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Bridged networking doesn't work with a wireless interface
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm in the process of testing the iwn driver on 8.0-RELEASE.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On this machine Bridged networking works with a wireless interface.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So I was just wondering if I was lucky or the wiki needs an update?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /Leslie
&lt;/div&gt;&amp;nbsp;Hello,
&lt;/div&gt;&lt;br&gt;in general the wiki is correct, but there might be some exceptions like in 
&lt;br&gt;your case. The Problem with bridging ethernet and wlan is that the layer 2 
&lt;br&gt;protocol is different which some drivers cannot handle correctly.
&lt;br&gt;&lt;br&gt;Christof
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;() &amp;nbsp;ascii ribbon campaign - against html e-mail 
&lt;br&gt;/\ &amp;nbsp;www.asciiribbon.org &amp;nbsp; - against proprietary attachments
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (203 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26888285/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wiki-says%3A-Bridged-networking-doesn%27t-work-with-a-wireless-interface-tp26881495p26888285.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26887975</id>
	<title>Re: [WIP] wine/i386 on FreeBSD/amd64 (take 3)</title>
	<published>2009-12-22T04:56:27Z</published>
	<updated>2009-12-22T04:56:27Z</updated>
	<author>
		<name>David Bruce Naylor</name>
	</author>
	<content type="html">On Friday 18 December 2009 23:27:15 David Naylor wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Tuesday 08 December 2009 15:24:00 David Naylor wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I have developed a port that allows wine to be installed as a package
&lt;br&gt;&amp;gt; &amp;gt; under FreeBSD/amd64. &amp;nbsp;This avoids having a i386 chroot environment (and
&lt;br&gt;&amp;gt; &amp;gt; is much easier to setup, once the package is built).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I've changes the name of the port (should be obvious what it is for and not
&lt;br&gt;&amp;gt; conflict when wine/amd64 arrives). &amp;nbsp;The port now also automagically
&lt;br&gt;&amp;gt; &amp;nbsp;determines which third party shared libraries should be bundled with it. 
&lt;br&gt;&amp;gt; &amp;nbsp;(See below on how to handle nvidia-driver).
&lt;/div&gt;&lt;/div&gt;I've fixed two soft dependencies (freetype and xrender). &amp;nbsp;This should complete 
&lt;br&gt;all the required libraries to be bundled. &amp;nbsp;Anti-aliased fonts and transparency 
&lt;br&gt;should be working. &amp;nbsp;This allows MS Office 2007 to work as well as on i386. &amp;nbsp;
&lt;br&gt;&lt;br&gt;It appears a major bug crept in with the previous published patch. &amp;nbsp;Therefore 
&lt;br&gt;it was totally useless. &amp;nbsp;It has been fixed in this one (the bin and lib 
&lt;br&gt;directories were not set correctly). &amp;nbsp;
&lt;br&gt;&lt;br&gt;Also, this port should now work on i386 and one can soft link to the bin/* 
&lt;br&gt;files. &amp;nbsp;
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt; To get this working apply the attached patch and build the
&lt;br&gt;&amp;gt; &amp;gt; emulators/wine- amd64 port under FreeBSD/i386 then transfer that package
&lt;br&gt;&amp;gt; &amp;gt; to the amd64 host:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; (On FreeBSD/i386)
&lt;br&gt;&amp;gt; &amp;gt; # cd /usr/ports/emulators
&lt;br&gt;&amp;gt; &amp;gt; # patch &amp;lt; /tmp/wine-amd64.diff
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (patch name changed, fix arguments)
&lt;br&gt;&amp;gt; # patch -sp0 &amp;lt; /tmp/wine-fbsd64.diff
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; # cd wine-amd64
&lt;br&gt;&amp;gt; &amp;gt; # make package clean
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; (On FreeBSD/amd64)
&lt;br&gt;&amp;gt; &amp;gt; # pkg_add wine-amd64-8-1.1.34,1.tbz
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (package name changed)
&lt;br&gt;&amp;gt; # pkg_add wine-amd64.8-1.1.34,1.tbz
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; I have such a package for FreeBSD-8 if anyone is willing to host it.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I'll update the patch when wine-1.1.35 gets into my ports.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt; There are a few TODO items (port options not supported). &amp;nbsp;Any
&lt;br&gt;&amp;gt; &amp;gt; comments/suggestions are welcome.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 1) Install from package on FreeBSD/amd64 (any suggestions on how to do
&lt;br&gt;&amp;gt; &amp;nbsp;that?) 
&lt;br&gt;&amp;gt; 2) Which version of FreeBSD/amd64 supports FreeBSD/i386 well enough
&lt;br&gt;&amp;gt; &amp;nbsp;to run wine?
&lt;br&gt;&amp;gt; 3) Any bugs reported?
&lt;/div&gt;&lt;/div&gt;Fixed two bugs (the above mentioned soft dependencies). &amp;nbsp;Please report any you 
&lt;br&gt;may encounter. &amp;nbsp;
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; &amp;gt; Word of warning: nvidia-driver breaks everything. &amp;nbsp;Make sure it is not
&lt;br&gt;&amp;gt; &amp;gt; installed on both i386/amd64 systems. &amp;nbsp;If one really wants wine with
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp;nvidia- driver support then install the beta on both i386 and amd64
&lt;br&gt;&amp;gt; &amp;gt; (very important it is the same version of the driver) and copy
&lt;br&gt;&amp;gt; &amp;gt; libGL.so.1, libGLcore.so.1 and libnvidia-tls.so.1 from i386 to
&lt;br&gt;&amp;gt; &amp;gt; $PREFIX/lib32 (on amd64).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; The above method still does work but now, if one installs nvidia-driver (of
&lt;br&gt;&amp;gt; the correct version) before building wine under FreeBSD/i386 then the
&lt;br&gt;&amp;gt; &amp;nbsp;required libraries will be included (this makes the package unsuitable for
&lt;br&gt;&amp;gt; &amp;nbsp;any system without the correct nvidia drivers installed).
&lt;/div&gt;&amp;nbsp;
&lt;/div&gt;Regards,
&lt;br&gt;&amp;nbsp;
&lt;br&gt;David
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;gt; P.S. I've included the shar archive as some people have not been able to
&lt;br&gt;&amp;gt; &amp;nbsp;apply the patch cleanly
&lt;br&gt;&lt;br /&gt;&lt;tt&gt;[wine-fbsd64.diff]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;diff -uNr /usr/ports/emulators/wine/Makefile wine/Makefile
&lt;br&gt;--- /usr/ports/emulators/wine/Makefile	2009-12-20 03:04:01.000000000 +0200
&lt;br&gt;+++ wine/Makefile	2009-12-20 17:02:22.000000000 +0200
&lt;br&gt;@@ -30,12 +30,10 @@
&lt;br&gt;&amp;nbsp;		--without-sane --without-xcursor
&lt;br&gt;&amp;nbsp;CONFIGURE_ENV=	CPPFLAGS=&amp;quot;-I${LOCALBASE}/include&amp;quot; \
&lt;br&gt;&amp;nbsp;		LDFLAGS=&amp;quot;-L${LOCALBASE}/lib&amp;quot;
&lt;br&gt;-USE_LDCONFIG=	${PREFIX}/lib ${PREFIX}/lib/wine
&lt;br&gt;&amp;nbsp;MAKE_JOBS_SAFE=	yes
&lt;br&gt;&amp;nbsp;MAN1=		widl.1 wine.1 winebuild.1 winedbg.1 winedump.1 winegcc.1 \
&lt;br&gt;&amp;nbsp;		winemaker.1 wineprefixcreate.1 wineserver.1 wmc.1 wrc.1
&lt;br&gt;&amp;nbsp;MLINKS=		winegcc.1 wineg++.1
&lt;br&gt;-ONLY_FOR_ARCHS=	i386
&lt;br&gt;&amp;nbsp;USE_BISON=	build
&lt;br&gt;&amp;nbsp;USE_BZIP2=	yes
&lt;br&gt;&amp;nbsp;USE_GMAKE=	yes
&lt;br&gt;@@ -80,10 +78,33 @@
&lt;br&gt;&amp;nbsp;CONFIGURE_ARGS+=	--without-xslt
&lt;br&gt;&amp;nbsp;.endif
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+# TODO: when does FreeBSD/i386 work properly under FreeBSD/amd64?
&lt;br&gt;&amp;nbsp;.if ${OSVERSION} &amp;lt; 603000
&lt;br&gt;&amp;nbsp;IGNORE=		fails to properly work on versions of FreeBSD before 6.3
&lt;br&gt;&amp;nbsp;.endif
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+.ifdef WINE_CROSS_BUILD
&lt;br&gt;+
&lt;br&gt;+CONFIGURE_ARGS+=	--bindir=${PREFIX}/bin32 --libdir=${PREFIX}/lib32
&lt;br&gt;+CONFLICTS=	wine-[0-9]*
&lt;br&gt;+ONLY_FOR_ARCHS=	i386 amd64
&lt;br&gt;+USE_LDCONFIG32=	${PREFIX}/lib32 ${PREFIX}/lib32/wine
&lt;br&gt;+WINELIBDIR=${PREFIX}/lib32
&lt;br&gt;+
&lt;br&gt;+PLIST_REINPLACE+=	winelib
&lt;br&gt;+PLIST_REINPLACE_WINELIB=s!lib/!lib32/!g
&lt;br&gt;+
&lt;br&gt;+ACTUAL-PACKAGE-DEPENDS=${DO_NADA}
&lt;br&gt;+
&lt;br&gt;+.else
&lt;br&gt;+
&lt;br&gt;+CONFLICTS=	wine-fbsd64.*
&lt;br&gt;+ONLY_FOR_ARCHS=	i386
&lt;br&gt;+USE_LDCONFIG=	${PREFIX}/lib ${PREFIX}/lib/wine
&lt;br&gt;+WINELIBDIR=${PREFIX}/lib
&lt;br&gt;+
&lt;br&gt;+.endif
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;post-patch:
&lt;br&gt;&amp;nbsp;.if ${OSVERSION} &amp;lt; 700041
&lt;br&gt;&amp;nbsp;	${REINPLACE_CMD} 's/-lpthread/-lthr/g' ${WRKSRC}/configure
&lt;br&gt;@@ -99,8 +120,8 @@
&lt;br&gt;&amp;nbsp;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;${MAN1PREFIX}/man/fr.UTF-8/man1/wineserver.1
&lt;br&gt;&amp;nbsp;	@-${RMDIR} -p ${MAN1PREFIX}/man/de.UTF-8/man1 \
&lt;br&gt;&amp;nbsp;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;${MAN1PREFIX}/man/fr.UTF-8/man1
&lt;br&gt;-	${MV} -f ${PREFIX}/lib/libwine.so.1.0 ${PREFIX}/lib/libwine.so.1
&lt;br&gt;-	${LN} -sf libwine.so.1 ${PREFIX}/lib/libwine.so
&lt;br&gt;+	${MV} -f ${WINELIBDIR}/libwine.so.1.0 ${WINELIBDIR}/libwine.so.1
&lt;br&gt;+	${LN} -sf libwine.so.1 ${WINELIBDIR}/libwine.so
&lt;br&gt;&amp;nbsp;.if !defined(NOPORTDOCS)
&lt;br&gt;&amp;nbsp;	-@${MKDIR} ${DOCSDIR}
&lt;br&gt;&amp;nbsp;.for i in README ANNOUNCE AUTHORS LICENSE
&lt;br&gt;@@ -109,6 +130,27 @@
&lt;br&gt;&amp;nbsp;	@${INSTALL_DATA} ${WRKSRC}/programs/winedbg/README ${DOCSDIR}/README.winedbg
&lt;br&gt;&amp;nbsp;	@${INSTALL_DATA} ${WRKSRC}/tools/winedump/README ${DOCSDIR}/README.winedump
&lt;br&gt;&amp;nbsp;.endif
&lt;br&gt;+.ifdef WINE_CROSS_BUILD
&lt;br&gt;+	grep -v '[@%]' ${TMPPLIST} | sed &amp;quot;s!^!${PREFIX}/!g&amp;quot; | \
&lt;br&gt;+	xargs -n1 file -F' ' | grep ELF | cut -f1 -d' ' | \
&lt;br&gt;+	env LD_LIBRARY_PATH=${PREFIX}/lib32:${LD_LIBRARY_PATH} xargs ldd -f '%p\n' \
&lt;br&gt;+	| sort -u | grep -v '^\(/usr\)\?/lib' | grep -v &amp;quot;^${PREFIX}/lib32/libwine.so&amp;quot; \
&lt;br&gt;+	| grep -v &amp;quot;^${PREFIX}/lib32/wine&amp;quot; &amp;gt; ${WRKDIR}/winelibs.list
&lt;br&gt;+	for i in `cat ${WRKDIR}/winelibs.list` ; do \
&lt;br&gt;+		${INSTALL_DATA} $${i} ${PREFIX}/lib32/ ; \
&lt;br&gt;+		echo lib32/`basename $${i}` &amp;gt;&amp;gt; ${TMPPLIST} ; \
&lt;br&gt;+	done
&lt;br&gt;+	for i in libfreetype.so.9 libXrender.so.1 ; do \
&lt;br&gt;+		${INSTALL_DATA} ${LOCALBASE}/lib/$${i} ${PREFIX}/lib32/ ; \
&lt;br&gt;+		echo lib32/$${i} &amp;gt;&amp;gt; ${TMPPLIST} ; \
&lt;br&gt;+	done
&lt;br&gt;+	${INSTALL_SCRIPT} ${FILESDIR}/binbounce ${PREFIX}/bin/wine
&lt;br&gt;+	for i in `grep ^bin ${TMPPLIST} | xargs -n1 basename` ; do \
&lt;br&gt;+		[ &amp;quot;$${i}&amp;quot; = &amp;quot;wine&amp;quot; ] || ${LN} -f ${PREFIX}/bin/wine ${PREFIX}/bin/$${i} ; \
&lt;br&gt;+		echo bin32/$${i} &amp;gt;&amp;gt; ${TMPPLIST} ; \
&lt;br&gt;+	done
&lt;br&gt;+	echo '@unexec rmdir %D/bin32 2&amp;gt;/dev/null || true' &amp;gt;&amp;gt; ${TMPPLIST}
&lt;br&gt;+.endif
&lt;br&gt;&amp;nbsp;	@${MKDIR} ${DESKTOPDIR}
&lt;br&gt;&amp;nbsp;	@${MV} ${DATADIR}/applications/wine.desktop ${DESKTOPDIR}/
&lt;br&gt;&amp;nbsp;	@${ECHO}
&lt;br&gt;diff -uNr /usr/ports/emulators/wine/files/binbounce wine/files/binbounce
&lt;br&gt;--- /usr/ports/emulators/wine/files/binbounce	1970-01-01 02:00:00.000000000 +0200
&lt;br&gt;+++ wine/files/binbounce	2009-12-20 18:29:51.000000000 +0200
&lt;br&gt;@@ -0,0 +1,27 @@
&lt;br&gt;+#!/bin/sh
&lt;br&gt;+
&lt;br&gt;+TARGET=$0
&lt;br&gt;+_count=0
&lt;br&gt;+while [ -L &amp;quot;$TARGET&amp;quot; ]
&lt;br&gt;+do
&lt;br&gt;+ &amp;nbsp;TARGET=`ls -l &amp;quot;$TARGET&amp;quot; | sed -e 's/.* -&amp;gt; //'`
&lt;br&gt;+ &amp;nbsp;_count=$(($_count + 1))
&lt;br&gt;+ &amp;nbsp;if [ $_count -gt 100 ]
&lt;br&gt;+ &amp;nbsp;then
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;echo &amp;quot;$0: to many symbolic links&amp;quot; &amp;gt; /dev/stderr
&lt;br&gt;+ &amp;nbsp; &amp;nbsp;exit 1
&lt;br&gt;+ &amp;nbsp;fi
&lt;br&gt;+done
&lt;br&gt;+
&lt;br&gt;+LOCALBASE=`dirname &amp;quot;$TARGET&amp;quot;`/..
&lt;br&gt;+BINNAME=`basename &amp;quot;$TARGET&amp;quot;`
&lt;br&gt;+
&lt;br&gt;+if [ `uname -p` = i386 ]
&lt;br&gt;+then
&lt;br&gt;+ &amp;nbsp;export LD_LIBRARY_PATH=&amp;quot;$LOCALBASE/lib32&amp;quot;:&amp;quot;$LOCALBASE/lib32/wine&amp;quot;:&amp;quot;$LD_LIBRARY_PATH&amp;quot;
&lt;br&gt;+else
&lt;br&gt;+ &amp;nbsp;export LD_32_LIBRARY_PATH=&amp;quot;$LOCALBASE/lib32&amp;quot;:&amp;quot;$LOCALBASE/lib32/wine&amp;quot;:&amp;quot;$LD_32_LIBRARY_PATH&amp;quot;
&lt;br&gt;+fi
&lt;br&gt;+export PATH=&amp;quot;$LOCALBASE/bin32&amp;quot;:&amp;quot;$PATH&amp;quot;
&lt;br&gt;+
&lt;br&gt;+exec &amp;quot;$LOCALBASE/bin32/$BINNAME&amp;quot; &amp;quot;$@&amp;quot;
&lt;br&gt;diff -uNr /usr/ports/emulators/wine-fbsd64/ChangeLog wine-fbsd64/ChangeLog
&lt;br&gt;--- /usr/ports/emulators/wine-fbsd64/ChangeLog	1970-01-01 02:00:00.000000000 +0200
&lt;br&gt;+++ wine-fbsd64/ChangeLog	2009-12-20 16:52:11.000000000 +0200
&lt;br&gt;@@ -0,0 +1,20 @@
&lt;br&gt;+2009/12/20:
&lt;br&gt;+ * Correctly set bin/lib directories
&lt;br&gt;+ * Support running on i386
&lt;br&gt;+ * Follow symbolic links to script
&lt;br&gt;+ * Allow spaces in path
&lt;br&gt;+ * Hard link the bin/* files (otherwise symbolic link following breaks)
&lt;br&gt;+
&lt;br&gt;+2009/12/19:
&lt;br&gt;+ * Include freetype (it is a soft dependancy)
&lt;br&gt;+ * Include libXrender (it is a soft dependancy)
&lt;br&gt;+
&lt;br&gt;+2009/12/18:
&lt;br&gt;+ * Rename to something with a little more sense (wine-amd64-[V] -&amp;gt; wine-fbsd64.[V])
&lt;br&gt;+ * Fix conflicts (wine conflicts with wine-fbsd64)
&lt;br&gt;+
&lt;br&gt;+2009/12/17:
&lt;br&gt;+ * Automatically determine libraries and binaries
&lt;br&gt;+
&lt;br&gt;+2009/12/08:
&lt;br&gt;+ * Initial implementation of WINE/i386 on FreeBSD/amd64 
&lt;br&gt;diff -uNr /usr/ports/emulators/wine-fbsd64/Makefile wine-fbsd64/Makefile
&lt;br&gt;--- /usr/ports/emulators/wine-fbsd64/Makefile	1970-01-01 02:00:00.000000000 +0200
&lt;br&gt;+++ wine-fbsd64/Makefile	2009-12-18 19:44:47.000000000 +0200
&lt;br&gt;@@ -0,0 +1,12 @@
&lt;br&gt;+PORTNAME=	wine
&lt;br&gt;+PKGNAMESUFFIX=	-fbsd64.${OSVERSION:C/([0-9]).*/\1/}
&lt;br&gt;+
&lt;br&gt;+WINE_CROSS_BUILD=yes
&lt;br&gt;+
&lt;br&gt;+MASTERDIR=	${.CURDIR}/../wine
&lt;br&gt;+
&lt;br&gt;+#.if ${ARCH} == &amp;quot;amd64&amp;quot;
&lt;br&gt;+# TODO: install from package (how?)
&lt;br&gt;+#.endif
&lt;br&gt;+
&lt;br&gt;+.include &amp;quot;${MASTERDIR}/Makefile&amp;quot;
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (203 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26887975/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-WIP--wine-i386-on-FreeBSD-amd64-tp26693852p26887975.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26886214</id>
	<title>Re: Building kernel modules for virtualbox independently</title>
	<published>2009-12-22T02:13:05Z</published>
	<updated>2009-12-22T02:13:05Z</updated>
	<author>
		<name>Vladimir Grebenschikov-2</name>
	</author>
	<content type="html">Hi 
&lt;br&gt;&lt;br&gt;Thanks, will be happy to test it.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Bernhard Froehlich &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26886214&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;decke@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26886214&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vova@...&lt;/a&gt;
&lt;br&gt;Cc: freebsd-emulation &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26886214&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt;&amp;gt;, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26886214&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vbox@...&lt;/a&gt;
&lt;br&gt;Subject: Re: Building kernel modules for virtualbox independently
&lt;br&gt;Date: Tue, 22 Dec 2009 10:25:24 +0100 (CET)
&lt;br&gt;&lt;br&gt;On Tue, December 22, 2009 9:58 am, Vladimir Grebenschikov wrote:
&lt;br&gt;&amp;gt; Hi
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Probably it is better to move out build of kernel modules out of
&lt;br&gt;&amp;gt; virtualbox port ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; After kernel upgrade all kmods should be rebuild, but rebuilding whole
&lt;br&gt;&amp;gt; virtualbox looks too heavy to do it on every kernel update.
&lt;br&gt;&lt;br&gt;Our testing port is already split up and we will do a call for testers for
&lt;br&gt;the new virtualbox 3.1.2 port very soon.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Vladimir B. Grebenschikov
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26886214&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vova@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26886214&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26886214&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26886214.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26885975</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-22T01:52:42Z</published>
	<updated>2009-12-22T01:52:42Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have this in my crontab
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; @reboot &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; root &amp;nbsp; &amp;nbsp;/sbin/kldload
&lt;br&gt;&amp;gt; /boot/modules/vboxnetflt.ko
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Adam Vande More
&lt;/div&gt;&lt;br&gt;Thanks for the answer!
&lt;br&gt;The problem is that I understood that vboxnetflt.ko should be loaded 
&lt;br&gt;before vboxnetadp.ko
&lt;br&gt;&lt;br&gt;I load vboxnetflt.ko in /boot/loader.conf and load vboxnetadp.ko 
&lt;br&gt;manually after I've logged in.
&lt;br&gt;&lt;br&gt;I tried to load vboxnetadp.ko via crontab but Virtualbox came up with 
&lt;br&gt;the error.
&lt;br&gt;&lt;br&gt;If I unload both modules and load them again manually, vboxnetflt.ko 
&lt;br&gt;first. Then it works!
&lt;br&gt;&lt;br&gt;I can manage this, but I was looking for a way to do it automagically :-)
&lt;br&gt;&lt;br&gt;I've seen that if vboxnetadp.ko is loaded first it loads vboxnetflt.ko 
&lt;br&gt;as well.
&lt;br&gt;&lt;br&gt;So what if the &amp;quot;dependency&amp;quot; was reversed? Then only vboxnetflt.ko had to 
&lt;br&gt;be loaded and it could load vboxnetadp.ko.
&lt;br&gt;&lt;br&gt;/Leslie
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26885975&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26885975&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26885975.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26885719</id>
	<title>Re: Building kernel modules for virtualbox independently</title>
	<published>2009-12-22T01:25:24Z</published>
	<updated>2009-12-22T01:25:24Z</updated>
	<author>
		<name>Bernhard Froehlich</name>
	</author>
	<content type="html">On Tue, December 22, 2009 9:58 am, Vladimir Grebenschikov wrote:
&lt;br&gt;&amp;gt; Hi
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Probably it is better to move out build of kernel modules out of
&lt;br&gt;&amp;gt; virtualbox port ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; After kernel upgrade all kmods should be rebuild, but rebuilding whole
&lt;br&gt;&amp;gt; virtualbox looks too heavy to do it on every kernel update.
&lt;br&gt;&lt;br&gt;Our testing port is already split up and we will do a call for testers for
&lt;br&gt;the new virtualbox 3.1.2 port very soon.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Bernhard Fröhlich
&lt;br&gt;&lt;a href=&quot;http://www.bluelife.at/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bluelife.at/&lt;/a&gt;&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26885719&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26885719&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26885719.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26885453</id>
	<title>Building kernel modules for virtualbox independently</title>
	<published>2009-12-22T00:58:47Z</published>
	<updated>2009-12-22T00:58:47Z</updated>
	<author>
		<name>Vladimir Grebenschikov-2</name>
	</author>
	<content type="html">Hi 
&lt;br&gt;&lt;br&gt;Probably it is better to move out build of kernel modules out of
&lt;br&gt;virtualbox port ? 
&lt;br&gt;&lt;br&gt;After kernel upgrade all kmods should be rebuild, but rebuilding whole
&lt;br&gt;virtualbox looks too heavy to do it on every kernel update.
&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Vladimir B. Grebenschikov
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26885453&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vova@...&lt;/a&gt;
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26885453&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26885453&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26885453.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26881836</id>
	<title>Re: Loading kernel modules for virtualbox via script</title>
	<published>2009-12-21T15:37:52Z</published>
	<updated>2009-12-21T15:37:52Z</updated>
	<author>
		<name>Galactic_Dominator</name>
	</author>
	<content type="html">On Mon, Dec 21, 2009 at 4:37 PM, Leslie Jensen &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26881836&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;leslie@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Following the suggestion here:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; To load two kernel modules via a script in /etc/rc.d/
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Produces the following:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; WARNING: Ignoring old-style startup script /etc/rc.d/
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I found the answer here:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://sourceforge.net/tracker/index.php?func=detail&amp;aid=2896643&amp;group_id=151951&amp;atid=782616&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/tracker/index.php?func=detail&amp;aid=2896643&amp;group_id=151951&amp;atid=782616&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; At the moment I load vboxnetflt via /boot/loader.conf and I then load
&lt;br&gt;&amp;gt; vboxnetadp manually before I start virtualbox.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I would like a suggestion on how to load both modules automaticly!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /Leslie
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;I have this in my crontab
&lt;br&gt;&lt;br&gt;@reboot &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; root &amp;nbsp; &amp;nbsp;/sbin/kldload
&lt;br&gt;/boot/modules/vboxnetflt.ko
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Adam Vande More
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26881836&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26881836&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26881836.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26881495</id>
	<title>Wiki says: Bridged networking doesn't work with a wireless interface</title>
	<published>2009-12-21T14:41:42Z</published>
	<updated>2009-12-21T14:41:42Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;&lt;a href=&quot;http://wiki.freebsd.org/VirtualBox&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://wiki.freebsd.org/VirtualBox&lt;/a&gt;&lt;br&gt;&lt;br&gt;says
&lt;br&gt;&lt;br&gt;Bridged networking doesn't work with a wireless interface
&lt;br&gt;&lt;br&gt;&lt;br&gt;I'm in the process of testing the iwn driver on 8.0-RELEASE.
&lt;br&gt;&lt;br&gt;On this machine Bridged networking works with a wireless interface.
&lt;br&gt;&lt;br&gt;So I was just wondering if I was lucky or the wiki needs an update?
&lt;br&gt;&lt;br&gt;/Leslie
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26881495&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26881495&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wiki-says%3A-Bridged-networking-doesn%27t-work-with-a-wireless-interface-tp26881495p26881495.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26881437</id>
	<title>Loading kernel modules for virtualbox via script</title>
	<published>2009-12-21T14:37:20Z</published>
	<updated>2009-12-21T14:37:20Z</updated>
	<author>
		<name>Leslie Jensen</name>
	</author>
	<content type="html">&lt;br&gt;Following the suggestion here:
&lt;br&gt;&lt;a href=&quot;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://forums.freebsd.org/showpost.php?p=45664&amp;postcount=5&lt;/a&gt;&lt;br&gt;&lt;br&gt;To load two kernel modules via a script in /etc/rc.d/
&lt;br&gt;&lt;br&gt;Produces the following:
&lt;br&gt;&lt;br&gt;WARNING: Ignoring old-style startup script /etc/rc.d/
&lt;br&gt;&lt;br&gt;I found the answer here:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://sourceforge.net/tracker/index.php?func=detail&amp;aid=2896643&amp;group_id=151951&amp;atid=782616&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/tracker/index.php?func=detail&amp;aid=2896643&amp;group_id=151951&amp;atid=782616&lt;/a&gt;&lt;br&gt;&lt;br&gt;At the moment I load vboxnetflt via /boot/loader.conf and I then load 
&lt;br&gt;vboxnetadp manually before I start virtualbox.
&lt;br&gt;&lt;br&gt;I would like a suggestion on how to load both modules automaticly!
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;/Leslie
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26881437&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26881437&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Loading-kernel-modules-for-virtualbox-via-script-tp26881437p26881437.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26872522</id>
	<title>Current problem reports assigned to freebsd-emulation@FreeBSD.org</title>
	<published>2009-12-21T03:06:52Z</published>
	<updated>2009-12-21T03:06:52Z</updated>
	<author>
		<name>FreeBSD bugmaster</name>
	</author>
	<content type="html">Note: to view an individual PR, use:
&lt;br&gt;&amp;nbsp; &lt;a href=&quot;http://www.freebsd.org/cgi/query-pr.cgi?pr=(number&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.freebsd.org/cgi/query-pr.cgi?pr=(number&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;The following is a listing of current problems submitted by FreeBSD users.
&lt;br&gt;These represent problem reports covering all versions including
&lt;br&gt;experimental development code and obsolete releases.
&lt;br&gt;&lt;br&gt;&lt;br&gt;S Tracker &amp;nbsp; &amp;nbsp; &amp;nbsp;Resp. &amp;nbsp; &amp;nbsp; &amp;nbsp;Description
&lt;br&gt;--------------------------------------------------------------------------------
&lt;br&gt;o kern/141439 &amp;nbsp;emulation &amp;nbsp;[linux] [patch] linux_exit_group kills group leader
&lt;br&gt;o kern/140156 &amp;nbsp;emulation &amp;nbsp;[linux] cdparanoia fails to read drive data
&lt;br&gt;o kern/139423 &amp;nbsp;emulation &amp;nbsp;[parallels] Networking does not work on amd64 guest on
&lt;br&gt;o kern/138944 &amp;nbsp;emulation &amp;nbsp;[parallels] [regression] Parallels no longer works in 
&lt;br&gt;o kern/138880 &amp;nbsp;emulation &amp;nbsp;[linux] munmap segfaults after linux_mmap2 stresstest
&lt;br&gt;o kern/138860 &amp;nbsp;emulation &amp;nbsp;[linux] linux_socketcall() causing buffer overflow
&lt;br&gt;f ports/137332 emulation &amp;nbsp;add caution messages to some adobe products
&lt;br&gt;s ports/136321 emulation &amp;nbsp;x11-toolkits/linux-pango: please update linux based po
&lt;br&gt;o ports/136229 emulation &amp;nbsp;[linux] emulators/linux_base-f10: certain linux apps l
&lt;br&gt;o ports/135337 emulation &amp;nbsp;[PATCH] emulators/linux_base-f10: incorrect bash usage
&lt;br&gt;o kern/133144 &amp;nbsp;emulation &amp;nbsp;[linux] linuxulator 2.6 crashes with nvidias libGL.so.
&lt;br&gt;o kern/130724 &amp;nbsp;emulation &amp;nbsp;[linprocfs] [patch] cpuinfo in linprocfs is dated, cau
&lt;br&gt;o kern/129169 &amp;nbsp;emulation &amp;nbsp;[linux] [patch] Linux Emulation ENOTCONN error using n
&lt;br&gt;o kern/126232 &amp;nbsp;emulation &amp;nbsp;[linux] Linux ioctl TCGETS (0x5401) always fails
&lt;br&gt;o kern/73777 &amp;nbsp; emulation &amp;nbsp;[linux] [patch] linux emulation: root dir special hand
&lt;br&gt;a kern/72920 &amp;nbsp; emulation &amp;nbsp;[linux]: path &amp;quot;prefixing&amp;quot; is not done on unix domain s
&lt;br&gt;o kern/56451 &amp;nbsp; emulation &amp;nbsp;[linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU
&lt;br&gt;o kern/41543 &amp;nbsp; emulation &amp;nbsp;[patch] [request] easier wine/w23 support
&lt;br&gt;o kern/39201 &amp;nbsp; emulation &amp;nbsp;[linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu
&lt;br&gt;o kern/29698 &amp;nbsp; emulation &amp;nbsp;[linux] [patch] linux ipcs doesn'work
&lt;br&gt;o kern/21463 &amp;nbsp; emulation &amp;nbsp;[linux] Linux compatability mode should not allow setu
&lt;br&gt;o kern/11165 &amp;nbsp; emulation &amp;nbsp;[ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999
&lt;br&gt;&lt;br&gt;22 problems total.
&lt;br&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26872522&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26872522&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Current-problem-reports-assigned-to-freebsd-emulation%40FreeBSD.org-tp26872522p26872522.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26870662</id>
	<title>FreeBSD ports that you maintain which are currently marked broken</title>
	<published>2009-12-20T23:28:17Z</published>
	<updated>2009-12-20T23:28:17Z</updated>
	<author>
		<name>linimon</name>
	</author>
	<content type="html">Dear FreeBSD port maintainer:
&lt;br&gt;&lt;br&gt;As part of an ongoing effort to reduce the number of problems in
&lt;br&gt;the FreeBSD ports system, we periodically notify users of ports
&lt;br&gt;that are marked as &amp;quot;broken&amp;quot; in their Makefiles. &amp;nbsp;In many cases
&lt;br&gt;these ports are failing to compile on some subset of the FreeBSD
&lt;br&gt;build environments. &amp;nbsp;The most common problem is that recent versions
&lt;br&gt;of -CURRENT include gcc4.2, which is much stricter than older versions.
&lt;br&gt;The next most common problem is that compiles succeed on the i386
&lt;br&gt;architecture (e.g. the common Intel PC), but fail on one or more
&lt;br&gt;of the other architectures due to assumptions about things such as
&lt;br&gt;size of various types, byte-alignment issues, and so forth.
&lt;br&gt;&lt;br&gt;In occasional cases we see that the same port may have different
&lt;br&gt;errors in different build environments. &amp;nbsp;The script that runs on the
&lt;br&gt;build cluster uses heuristics to try to 'guess' the error type to
&lt;br&gt;help you isolate problems, but it is only a rough guide.
&lt;br&gt;&lt;br&gt;One more note: on occasion, there are transient build errors seen
&lt;br&gt;on the build farm. &amp;nbsp;Unfortunately, there is not yet any way for this
&lt;br&gt;algorithm to tell the difference (humans are much, much better at
&lt;br&gt;this kind of thing.)
&lt;br&gt;&lt;br&gt;The errors are listed below. &amp;nbsp;In the case where the same problem
&lt;br&gt;exists on more than one build environment, the URL points to the
&lt;br&gt;latest errorlog for that type. &amp;nbsp;(By 'build environment' here we
&lt;br&gt;mean 'combination of 6.x/7.x/-current with target architecture'.)
&lt;br&gt;&lt;br&gt;(Note: the dates are included to help you to gauge whether or not
&lt;br&gt;the error still applies to the latest version. &amp;nbsp;The program
&lt;br&gt;that generates this report is not yet able to determine this
&lt;br&gt;automatically.)
&lt;br&gt;&lt;br&gt;portname: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; sysutils/linux-nero
&lt;br&gt;broken because: &amp;nbsp; &amp;nbsp; unfetchable
&lt;br&gt;build errors:
&lt;br&gt;&lt;a href=&quot;http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20091211210609/linux-nero-3.5.0.1.log&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.7.20091211210609/linux-nero-3.5.0.1.log&lt;/a&gt;&amp;nbsp;(_Dec__7_01:52:47_UTC_2009)
&lt;br&gt;overview: &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&amp;portname=linux-nero&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://portsmon.FreeBSD.org/portoverview.py?category=sysutils&amp;portname=linux-nero&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;If these errors are ones that you are already aware of, please
&lt;br&gt;accept our apologies and ignore this message. &amp;nbsp;On the other hand, if
&lt;br&gt;you no longer wish to maintain this port (or ports), please reply
&lt;br&gt;with a message stating that, and accept our thanks for your efforts
&lt;br&gt;in the past.
&lt;br&gt;&lt;br&gt;Every effort has been made to make sure that these error reports
&lt;br&gt;really do correspond to a port that you maintain. &amp;nbsp;However, due to
&lt;br&gt;the fact that this is an automated process, it may indeed generate
&lt;br&gt;false matches. &amp;nbsp;If one of these errors fits that description,
&lt;br&gt;please forward this email to the author of this software, Mark
&lt;br&gt;Linimon &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26870662&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;linimon@...&lt;/a&gt;&amp;gt;, so that he can attempt to fix the
&lt;br&gt;problem in the future.
&lt;br&gt;&lt;br&gt;Thanks for your efforts to help improve FreeBSD.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26870662&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26870662&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/FreeBSD-ports-that-you-maintain-which-are-currently-marked-broken-tp26870662p26870662.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26865794</id>
	<title>Re: ports/127018: Linuxulator incapable of using FreeBSD's LDAP  environment</title>
	<published>2009-12-20T10:10:06Z</published>
	<updated>2009-12-20T10:10:06Z</updated>
	<author>
		<name>Marcin Wisnicki-2</name>
	</author>
	<content type="html">The following reply was made to PR ports/127018; it has been noted by GNATS.
&lt;br&gt;&lt;br&gt;From: =?ISO-8859-2?Q?Marcin_Wi=B6nicki?= &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865794&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mwisnicki@...&lt;/a&gt;&amp;gt;
&lt;br&gt;To: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865794&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;bug-followup@...&lt;/a&gt;, &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865794&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ohartman@...&lt;/a&gt;
&lt;br&gt;Cc: &amp;nbsp;
&lt;br&gt;Subject: Re: ports/127018: Linuxulator incapable of using FreeBSD's LDAP 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; environment
&lt;br&gt;Date: Sun, 20 Dec 2009 19:05:49 +0100
&lt;br&gt;&lt;br&gt;&amp;nbsp;Just noticed this via mail to emulation@ and since I used to have LDAP
&lt;br&gt;&amp;nbsp;in the past I'd like to contribute some feedback.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;The underlying problem is that LDAP integration is done through
&lt;br&gt;&amp;nbsp;nsswitch (part of libc) and nss_ldap.so module (from ports). Linux has
&lt;br&gt;&amp;nbsp;the same mechanism however linux-compiled glibc will obviously fail to
&lt;br&gt;&amp;nbsp;load freebsd-native nss_ldap.so.
&lt;br&gt;&amp;nbsp;I assume that to get LDAP in linuxulator one will first need to
&lt;br&gt;&amp;nbsp;install linux version of nss_ldap and it's dependencies and then
&lt;br&gt;&amp;nbsp;configure nsswitch in /compat/linux/etc as he would on real linux
&lt;br&gt;&amp;nbsp;system. At this time however there are no ports for those libs.
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;nbsp;I believe that it's also possible to solve this problem in more
&lt;br&gt;&amp;nbsp;general way by writing some kind of nscd(8) proxy that would translate
&lt;br&gt;&amp;nbsp;between protocol used in freebsd and what is expected by glibc.
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865794&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26865794&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-ports-127018%3A-Linuxulator-incapable-of-using-FreeBSD%27s-LDAP--environment-tp26865794p26865794.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26863977</id>
	<title>Try to running Aladdin HASP SRM</title>
	<published>2009-12-20T06:12:58Z</published>
	<updated>2009-12-20T06:12:58Z</updated>
	<author>
		<name>Sergey-46</name>
	</author>
	<content type="html">Hello
&lt;br&gt;&lt;br&gt;I have USB Aladdin HASP SRM key and try to use it on FreeBSD 8.0 but no luck now:(
&lt;br&gt;What I do wrong?
&lt;br&gt;&lt;br&gt;Aladdin offers HASP SRM Run-time Installer Script (ftp://ftp.aladdin.com/pub/hasp/srm/Linux/HASP_SRM_LINUX_3.50_Run-time_Installer_script.tar.gz) for:
&lt;br&gt;- Linux SuSE ES 10 with Service Pack 1 (x86 and x86_64),
&lt;br&gt;- RedHat EL5 with Service Pack 1 (x86 and x86_64), and
&lt;br&gt;- Ubuntu Desktop 8.04 (x86 and x86_64).
&lt;br&gt;&lt;br&gt;I install emulators/linux_base-gentoo-stage3 because I wish to use ktrace.
&lt;br&gt;&lt;br&gt;Then I ran by hand as ordinary user:
&lt;br&gt;&amp;nbsp;1. aksusbd (support for HASP HL keys and low&amp;#8208;level access to HASP License Manager daemon) 
&lt;br&gt;Now I see:
&lt;br&gt;ps ax | grep aks
&lt;br&gt;32631 &amp;nbsp; 2 &amp;nbsp;S &amp;nbsp; &amp;nbsp; &amp;nbsp;0:00,00 2/aksusbd
&lt;br&gt;32632 &amp;nbsp; 2 &amp;nbsp;S &amp;nbsp; &amp;nbsp; &amp;nbsp;0:00,00 2/aksusbd
&lt;br&gt;32633 &amp;nbsp; 2 &amp;nbsp;S &amp;nbsp; &amp;nbsp; &amp;nbsp;0:00,00 2/aksusbd
&lt;br&gt;Resume: like of success
&lt;br&gt;&lt;br&gt;&amp;nbsp;2. winehasp (access for HASP HL keys to Windows applications running in Wine) 
&lt;br&gt;Now I see:
&lt;br&gt;ps ax | grep win
&lt;br&gt;32638 &amp;nbsp; 2 &amp;nbsp;I &amp;nbsp; &amp;nbsp; &amp;nbsp;0:00,00 2/winehasp
&lt;br&gt;Resume: like of success
&lt;br&gt;&lt;br&gt;&amp;nbsp;3. ktrace hasplmd -s (HASP License Manager daemon).
&lt;br&gt;Now I see:
&lt;br&gt;ps ax | grep hasp
&lt;br&gt;32638 &amp;nbsp; 2 &amp;nbsp;I &amp;nbsp; &amp;nbsp; &amp;nbsp;0:00,00 2/winehasp
&lt;br&gt;Resume: hasplmd not running. 
&lt;br&gt;One more test failed: netstat -an | grep 1947 found nothing instead of &amp;quot;Admin Control Center&amp;quot;. :(
&lt;br&gt;&lt;br&gt;ldd hasplmd
&lt;br&gt;hasplmd:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; libm.so.6 =&amp;gt; /lib/libm.so.6 (0x28067000)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; libpthread.so.0 =&amp;gt; /lib/libpthread.so.0 (0x2808e000)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; libdl.so.2 =&amp;gt; /lib/libdl.so.2 (0x280a5000)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; libc.so.6 =&amp;gt; /lib/libc.so.6 (0x280a9000)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; /lib/ld-linux.so.2 (0x28048000)
&lt;br&gt;&lt;br&gt;linux_kdump &amp;gt; hasp.dump
&lt;br&gt;&lt;br&gt;&amp;nbsp;32645 ktrace &amp;nbsp; RET &amp;nbsp; linux_brk 0
&lt;br&gt;&amp;nbsp;32645 ktrace &amp;nbsp; CALL &amp;nbsp;linux_olduname(0xbfbfed43,0xbfbfebfc,0xbfbfec10)
&lt;br&gt;&amp;nbsp;32645 ktrace &amp;nbsp; NAMI &amp;nbsp;&amp;quot;2/hasplmd&amp;quot;
&lt;br&gt;&amp;nbsp;32645 ktrace &amp;nbsp; NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/ld-linux.so.2&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_olduname 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_brk(0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_brk 135712768/0x816d000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_newuname(0xbfbfe9f0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_newuname 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_access(0x280601cb,0x4)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/etc/ld.so.preload&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/etc/ld.so.preload&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_access JUSTRETURN
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_open(0x280604b7,0,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/etc/ld.so.cache&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/etc/ld.so.cache&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_open 3
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_fstat64(0x3,0xbfbfe30c,0x28062fd4)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;UNKNOWN(8) &amp;nbsp; 32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_fstat64 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0,0x2a86,0x1,0x2,0x3,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671498240/0x28064000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x3)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_open(0x280660c1,0,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/libm.so.6&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/libm.so.6&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_open 3
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;read(0x3,0xbfbfe484,0x200)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;GIO &amp;nbsp; fd 3 read 512 bytes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;\^?ELF\^A\^A\^A\0\0\0\0\0\0\0\0\0\^C\0\^C\0\^A\0\0\0p4\0\0004\0\0\0000\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; B\^B\0\0\0\0\0004\0 \0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0(\0\^_\0\^^\0\^F\0\0\0004\0\0\0004\0\0\0004\0\0\0@\^A\0\0@\^A\0\0\^E\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\^D\0\0\0\^C\0\0\0\M-x\^]\^B\0\M-x\^]\^B\0\M-x\^]\^B\0\^S\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^S\0\0\0\^D\0\0\0\^A\0\0\0\^A\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\M-$&amp;lt;\^B\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M-$&amp;lt;\^B\0\^E\0\0\0\0\^P\0\0\^A\0\0\0\M-\&amp;gt;\^B\0\M-\N\^B\0\M-\N\^B\0`\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^A\0\0\M-$\^A\0\0\^F\0\0\0\0\^P\0\0\^B\0\0\0\M-p&amp;gt;\^B\0\M-pN\^B\0\M-pN\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^B\0\M-h\0\0\0\M-h\0\0\0\^F\0\0\0\^D\0\0\0\^D\0\0\0t\^A\0\0t\^A\0\0t\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^A\0\0 \0\0\0 \0\0\0\^D\0\0\0\^D\0\0\0P\M-etd\f\^^\^B\0\f\^^\^B\0\f\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^^\^B\0\^\\^D\0\0\^\\^D\0\0\^D\0\0\0\^D\0\0\0Q\M-etd\0\0\0\0\0\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\0\0\0\0\0\0\0\0\0\^F\0\0\0\^D\0\0\0R\M-etd\M-\&amp;gt;\^B\0\M-\N\^B\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M-\N\^B\0$\^A\0\0$\^A\0\0\^D\0\0\0\^A\0\0\0\M^@\^U\^De\0\0\0\0\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\^D\0\0\0\^D\0\0\0\^P\0\0\0\^A\0\0\0G\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; NU\0\0\0\0\0\^B\0\0\0\^F\0\0\0	\0\0\0\M^L\^B\0\0\^O\0\0\0@\0\0\0\v\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0%\M^P \M-E	\M^Dg\v\0\M-B\^P \^DiER\M^B\^P\M^@\240\0}\M^H\M-:\b\bI\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\0\0\^[\^D\M^A\0\0\0\M^ZU\^PA P \M^@\M^T\M^B\M^P\^Q@\M-z2\0\M-Da\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^T\0\b\^F\M-F\M^P\M^Z\f\M^G\M-@ \M-(\0 &amp;nbsp;\M^B\0\M^X\M^A\^DE\a\^E4a\^B\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\M-)C\^X\M-H \b\^S\^X&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; read 512/0x200
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_fstat64(0x3,0xbfbfe38c,0x28062fd4)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;UNKNOWN(8) &amp;nbsp; 32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_fstat64 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0,0x25080,0x5,0x802,0x3,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671510528/0x28067000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0x2808b000,0x2000,0x3,0x812,0x3,0x23)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671657984/0x2808b000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x3)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_open(0x2806594a,0,0x4f)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/libpthread.so.0&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/libpthread.so.0&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_open 3
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;read(0x3,0xbfbfe468,0x200)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;GIO &amp;nbsp; fd 3 read 512 bytes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;\^?ELF\^A\^A\^A\0\0\0\0\0\0\0\0\0\^C\0\^C\0\^A\0\0\0\M^PG\0\0004\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M^XL\^A\0\0\0\0\0004\0 \0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0(\0$\0!\0\^F\0\0\0004\0\0\0004\0\0\0004\0\0\0@\^A\0\0@\^A\0\0\^E\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\^D\0\0\0\^C\0\0\0\^T\M-y\0\0\^T\M-y\0\0\^T\M-y\0\0\^S\0\0\0\^S\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\^D\0\0\0\^A\0\0\0\^A\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0d$\^A\0d$\^A\0\^E\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\0\^P\0\0\^A\0\0\0\M-@-\^A\0\M-@=\^A\0\M-@=\^A\0|\^C\0\0 $\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^F\0\0\0\0\^P\0\0\^B\0\0\0\M-8.\^A\0\M-8&amp;gt;\^A\0\M-8&amp;gt;\^A\0\M-x\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M-x\0\0\0\^F\0\0\0\^D\0\0\0\^D\0\0\0t\^A\0\0t\^A\0\0t\^A\0\0 \0\0\0 \
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\^D\0\0\0\^D\0\0\0P\M-etd(\M-y\0\0(\M-y\0\0(\M-y\0\0l\^D\0\0l\^D\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\^D\0\0\0\^D\0\0\0Q\M-etd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^F\0\0\0\^D\0\0\0R\M-etd\M-@-\^A\0\M-@=\^A\0\M-@=\^A\0@\^B\0\0@\^B\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\^D\0\0\0\^A\0\0\0\M^@\^U\^De\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0(\0\0\^D\0\0\0\^D\0\0\0\^P\0\0\0\^A\0\0\0GNU\0\0\0\0\0\^B\0\0\0\^F\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0	\0\0\0\M-2\^A\0\0M\0\0\0@\0\0\0\v\0\0\0\^Y!\^B\M^Q\^A
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^P&amp;quot;@H \M-Y\^C\0I4\M^@\0\0@\0 \M^@\M^@\^QP`@@\^R\M^K\^B0D\0\0\^P\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^B\0\^A\r\0\M^D
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M-p\^AX\M-0\r\240\M^@\b $\M^D\^PB\M-&amp;quot;)m\bG\M^\V\^P\0\M^T \M^D$\b\0H(\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^A\M^R\^\\M-AB\240\M^P\^R\b\f \^B\^X`A\M-$&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; read 512/0x200
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_fstat64(0x3,0xbfbfe370,0x28062fd4)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;UNKNOWN(8) &amp;nbsp; 32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_fstat64 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0,0x1000,0x3,0x22,0xffffffff,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671666176/0x2808d000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0,0x161e0,0x5,0x802,0x3,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671670272/0x2808e000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0x280a1000,0x2000,0x3,0x812,0x3,0x12)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671748096/0x280a1000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0x280a3000,0x11e0,0x3,0x32,0xffffffff,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671756288/0x280a3000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x3)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_open(0x28066605,0,0x1e)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/libdl.so.2&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/libdl.so.2&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_open 3
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;read(0x3,0xbfbfe44c,0x200)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;GIO &amp;nbsp; fd 3 read 512 bytes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;\^?ELF\^A\^A\^A\0\0\0\0\0\0\0\0\0\^C\0\^C\0\^A\0\0\0p
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0004\0\0\0,!\0\0\0\0\0\0004\0 \0	\0(\0\^\\0\^[\0\^F\0\0\0004\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0004\0\0\0004\0\0\0 \^A\0\0 \^A\0\0\^E\0\0\0\^D\0\0\0\^C\0\0\0#\^Z\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0#\^Z\0\0#\^Z\0\0\^S\0\0\0\^S\0\0\0\^D\0\0\0\^A\0\0\0\^A\0\0\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\0\0\0\0\0\0\0\M-l\^[\0\0\M-l\^[\0\0\^E\0\0\0\0\^P\0\0\^A\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M-4\^^\0\0\M-4.\0\0\M-4.\0\0\M^X\^A\0\0\M-H\^A\0\0\^F\0\0\0\0\^P\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^B\0\0\0\M-P\^^\0\0\M-P.\0\0\M-P.\0\0\M-x\0\0\0\M-x\0\0\0\^F\0\0\0\^D\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\^D\0\0\0T\^A\0\0T\^A\0\0T\^A\0\0 \0\0\0 \0\0\0\^D\0\0\0\^D\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0Q\M-etd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\^F\0\0\0\^D\0\0\0R\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M-etd\M-4\^^\0\0\M-4.\0\0\M-4.\0\0L\^A\0\0L\^A\0\0\^D\0\0\0\^A\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M^@\^U\^De\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0(\0\0\^D\0\0\0\^D\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\^P\0\0\0\^A\0\0\0GNU\0\0\0\0\0\^B\0\0\0\^F\0\0\0	\0\0\0\^V\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\^Y\0\0\0\^D\0\0\0\a\0\0\0\M^X\0\^Q\0\0B\0\0\M^B\0`\b\M^S(\b\M-^\^Y\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\^Z\0\0\0\0\0\0\0\^[\0\0\0\^\\0\0\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\^^\0\0\0\0\0\0\0\0\0\0\0\^_\0\0\0!\0\0\0&amp;quot;\0\0\0\0\0\0\0\0\0\0\0#\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0%\0\0\0&amp;\0\0\0\0\0\0\0(\0\0\0\M^Q!\M-|\M-x\M^U\M-3_\^Y\^E\M-h\a\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M-y\^F\^B\^D\M-y\a\^B\^D\M-y&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; read 512/0x200
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_fstat64(0x3,0xbfbfe354,0x28062fd4)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;UNKNOWN(8) &amp;nbsp; 32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_fstat64 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0,0x307c,0x5,0x802,0x3,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671764480/0x280a5000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0x280a7000,0x2000,0x3,0x812,0x3,0x1)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671772672/0x280a7000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x3)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_open(0x2806682c,0,0x72)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/libc.so.6&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/lib/libc.so.6&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_open 3
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;read(0x3,0xbfbfe430,0x200)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;GIO &amp;nbsp; fd 3 read 512 bytes
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;\^?ELF\^A\^A\^A\0\0\0\0\0\0\0\0\0\^C\0\^C\0\^A\0\0\0@a\^A\0004\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^T\M-V\^R\0\0\0\0\0004\0 \0\v\0(\0B\0A\0\^F\0\0\0004\0\0\0004\0\0\000\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 4\0\0\0`\^A\0\0`\^A\0\0\^E\0\0\0\^D\0\0\0\^C\0\0\0\0n\^Q\0\0n\^Q\0\0n\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^Q\0\^S\0\0\0\^S\0\0\0\^D\0\0\0\^A\0\0\0\^A\0\0\0\0\0\0\0\0\0\0\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\240\M^_\^R\0\240\M^_\^R\0\^E\0\0\0\0\^P\0\0\^A\0\0\0\M-\\M-!\^R\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M-\\M-!\^R\0\M-\\M-!\^R\0\240'\0\0\M-tS\0\0\^F\0\0\0\0\^P\0\0\^B\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0|\M-=\^R\0|\M-=\^R\0|\M-=\^R\0\M-x\0\0\0\M-x\0\0\0\^F\0\0\0\^D\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^D\0\0\0\M^T\^A\0\0\M^T\^A\0\0\M^T\^A\0\0 \0\0\0 \0\0\0\^D\0\0\0\^D\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\a\0\0\0\M-\\M-!\^R\0\M-\\M-!\^R\0\M-\\M-!\^R\0\b\0\0\0@\0\0\0\^D\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\^D\0\0\0P\M-etd\^Tn\^Q\0\^Tn\^Q\0\^Tn\^Q\0\M^\)\0\0\M^\)\0\0\^D\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\^D\0\0\0Q\M-etd\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\^F\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\^D\0\0\0R\M-etd\M-\\M-!\^R\0\M-\\M-!\^R\0\M-\\M-!\^R\0$\^^\0\0$\^^\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\^D\0\0\0\^A\0\0\0\M^@\^U\^De\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0(\0\0\^D\0\0\0\^D\0\0\0\^P\0\0\0\^A\0\0\0GNU\0\0\0\0\0\^B\0\0\0\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \^F\0\0\0	\0\0\0\M-s\^C\0\0
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\0\0\0\^B\0\0\^N\0\0\0\2400\^PD\0\0\^B\^A\M^L\^C\M-f\M^PAE\M^H\0\M^D\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \0\b\0A\M^@\0@\M-@\M^@\0\f\^B\f\0\^A0\0\b@&amp;quot;\b\M-&amp;\^D\M^HH6l\240\^V0\0&amp;\
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; \M^D\M^@\M^N\^D\bB$\^B\f\M-&amp;\M-$&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; read 512/0x200
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_fstat64(0x3,0xbfbfe338,0x28062fd4)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;UNKNOWN(8) &amp;nbsp; 32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_fstat64 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0,0x12f5d0,0x5,0x802,0x3,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 671780864/0x280a9000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0x281d3000,0x3000,0x3,0x812,0x3,0x12a)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 673001472/0x281d3000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0x281d6000,0x25d0,0x3,0x32,0xffffffff,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 673013760/0x281d6000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x3)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0,0x1000,0x3,0x22,0xffffffff,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 673026048/0x281d9000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_set_thread_area(0xbfbfe888)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_set_thread_area 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mprotect(0x281d3000,0x2000,0x1)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mprotect 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mprotect(0x280a7000,0x1000,0x1)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mprotect 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mprotect(0x280a1000,0x1000,0x1)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mprotect 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mprotect(0x2808b000,0x1000,0x1)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mprotect 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mprotect(0x28062000,0x1000,0x1)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mprotect 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;munmap(0x28064000,0x2a86)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; munmap 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_set_tid_address(0x281d9708)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_set_tid_address 32645/0x7f85
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_set_robust_list(0x281d9710,0xc)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_set_robust_list 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_rt_sigaction(0x20,0xbfbfe84c,0,0x8)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_rt_sigaction 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_rt_sigaction(0x21,0xbfbfe84c,0,0x8)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_rt_sigaction 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_rt_sigprocmask(0x1,0xbfbfeb08,0,0x8)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_rt_sigprocmask 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_getrlimit(0x3,0xbfbfeb90)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_getrlimit 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_newuname(0xbfbfe904)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_newuname 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_gettid
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_gettid 32645/0x7f85
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_brk(0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_brk 135712768/0x816d000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_brk(0x818e000)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_brk 135712768/0x816d000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_mmap2(0,0x100000,0x3,0x22,0xffffffff,0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_mmap2 673030144/0x281da000
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_sys_futex(0x280a8070,0x1,0x7fffffff,0,0x8340bac,0xbfbfc300)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_sys_futex 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_getrlimit(0x7,0xbfbfea74)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_getrlimit 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x1)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x2)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x3)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close -1 errno 9 Bad file descriptor
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x4)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close -1 errno 9 Bad file descriptor
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x5)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close -1 errno 9 Bad file descriptor
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x6)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close -1 errno 9 Bad file descriptor
&lt;br&gt;&lt;br&gt;Next contuiously call close() with argument from 0x7 to 0x2b55.
&lt;br&gt;And always RET &amp;nbsp; close -1 errno 9 Bad file descriptor
&lt;br&gt;&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;close(0x2b56)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; close -1 errno 9 Bad file descriptor
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_open(0x815f2b2,0,0xffffffc8)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/dev/null&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/dev/null&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_open 0
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_open(0x815f2b2,0x1,0xffffffc8)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/compat/linux/dev/null&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;NAMI &amp;nbsp;&amp;quot;/dev/null&amp;quot;
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_open 1
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;dup(0x1)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; dup 2
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_clone(0x1200011,0,0,0,0x281d9708)
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;RET &amp;nbsp; linux_clone 32646/0x7f86
&lt;br&gt;&amp;nbsp;32645 hasplmd &amp;nbsp;CALL &amp;nbsp;linux_exit_group(0)
&lt;br&gt;&lt;br&gt;Bye. Serg
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26863977&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26863977&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Try-to-running-Aladdin-HASP-SRM-tp26863977p26863977.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26857146</id>
	<title>Re: ports/127018: Linuxulator incapable of using FreeBSD's LDAP environment</title>
	<published>2009-12-19T09:51:25Z</published>
	<updated>2009-12-19T09:51:25Z</updated>
	<author>
		<name>Pav Lucistnik</name>
	</author>
	<content type="html">Synopsis: Linuxulator incapable of using FreeBSD's LDAP environment
&lt;br&gt;&lt;br&gt;State-Changed-From-To: feedback-&amp;gt;closed
&lt;br&gt;State-Changed-By: pav
&lt;br&gt;State-Changed-When: Sat Dec 19 17:50:20 UTC 2009
&lt;br&gt;State-Changed-Why: 
&lt;br&gt;No activity for a year, feedback timeout, probably not ports related at all
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.freebsd.org/cgi/query-pr.cgi?pr=127018&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.freebsd.org/cgi/query-pr.cgi?pr=127018&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26857146&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26857146&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-ports-127018%3A-Linuxulator-incapable-of-using-FreeBSD%27s-LDAP-environment-tp26857146p26857146.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26854691</id>
	<title>Re: [WIP] wine/i386 on FreeBSD/amd64 (take 2)</title>
	<published>2009-12-19T04:32:56Z</published>
	<updated>2009-12-19T04:32:56Z</updated>
	<author>
		<name>David Bruce Naylor</name>
	</author>
	<content type="html">On Saturday 19 December 2009 00:19:41 Brian Hechinger wrote:
&lt;div class='shrinkable-quote'&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Fri, Dec 18, 2009 at 11:27:15PM +0200, David Naylor wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; (On FreeBSD/amd64)
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; # pkg_add wine-amd64-8-1.1.34,1.tbz
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; (package name changed)
&lt;br&gt;&amp;gt; &amp;gt; # pkg_add wine-amd64.8-1.1.34,1.tbz
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Will this have everything we need in order to run it, even with nvidia
&lt;br&gt;&amp;gt; &amp;nbsp;drivers? Since nvidia-driver doesn't have the latest BETA drivers in it, I
&lt;br&gt;&amp;gt; &amp;nbsp;can't really use that to install the drivers on amd64.
&lt;/div&gt;&lt;/div&gt;Yes it will. &amp;nbsp;I've missed some soft dependencies but that will be fixed soon. &amp;nbsp;
&lt;br&gt;If you grab the x86 version of the beta driver then all you need are:
&lt;br&gt;libGL.so.1
&lt;br&gt;libGLcore.so.1
&lt;br&gt;libnvidia-tls.so.1
&lt;br&gt;&lt;br&gt;And copy them into /usr/local/lib32
&lt;br&gt;&lt;br&gt;(To fix the soft dependencies copy across libXrender.so.1 and libfreetype.so.9 
&lt;br&gt;from i386 to /usr/local/lib32)
&lt;br&gt;&lt;br&gt;&amp;gt; &amp;gt; The above method still does work but now, if one installs nvidia-driver
&lt;br&gt;&amp;gt; &amp;gt; (of the correct version) before building wine under FreeBSD/i386 then the
&lt;br&gt;&amp;gt; &amp;gt; required libraries will be included (this makes the package unsuitable
&lt;br&gt;&amp;gt; &amp;gt; for any system without the correct nvidia drivers installed).
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Again, same thing. &amp;nbsp;The drivers I'm going to need on amd64 are not the ones
&lt;br&gt;&amp;gt; &amp;nbsp;that are going to be installed via nvidia-driver on i386, right?
&lt;br&gt;&lt;br&gt;Yes, the kld will complain about a version mismatch and not work. &amp;nbsp;See above. 
&lt;br&gt;&lt;br&gt;It will only grab the nvidia shared libraries if the nvidia driver is 
&lt;br&gt;installed before the package is built. &amp;nbsp;
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (203 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26854691/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-WIP--wine-i386-on-FreeBSD-amd64-tp26693852p26854691.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26850477</id>
	<title>Re: [WIP] wine/i386 on FreeBSD/amd64 (take 2)</title>
	<published>2009-12-18T14:19:41Z</published>
	<updated>2009-12-18T14:19:41Z</updated>
	<author>
		<name>wonko-2</name>
	</author>
	<content type="html">On Fri, Dec 18, 2009 at 11:27:15PM +0200, David Naylor wrote:
&lt;br&gt;&amp;gt; &amp;gt; (On FreeBSD/amd64)
&lt;br&gt;&amp;gt; &amp;gt; # pkg_add wine-amd64-8-1.1.34,1.tbz
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (package name changed)
&lt;br&gt;&amp;gt; # pkg_add wine-amd64.8-1.1.34,1.tbz
&lt;br&gt;&lt;br&gt;Will this have everything we need in order to run it, even with nvidia drivers?
&lt;br&gt;Since nvidia-driver doesn't have the latest BETA drivers in it, I can't really
&lt;br&gt;use that to install the drivers on amd64.
&lt;br&gt;&lt;br&gt;&amp;gt; The above method still does work but now, if one installs nvidia-driver (of 
&lt;br&gt;&amp;gt; the correct version) before building wine under FreeBSD/i386 then the required 
&lt;br&gt;&amp;gt; libraries will be included (this makes the package unsuitable for any system 
&lt;br&gt;&amp;gt; without the correct nvidia drivers installed). &amp;nbsp;
&lt;br&gt;&lt;br&gt;Again, same thing. &amp;nbsp;The drivers I'm going to need on amd64 are not the ones that
&lt;br&gt;are going to be installed via nvidia-driver on i386, right?
&lt;br&gt;&lt;br&gt;-brian
&lt;br&gt;-- 
&lt;br&gt;&amp;quot;Coding in C is like sending a 3 year old to do groceries. You gotta
&lt;br&gt;tell them exactly what you want or you'll end up with a cupboard full of
&lt;br&gt;pop tarts and pancake mix.&amp;quot; -- IRC User (&lt;a href=&quot;http://www.bash.org/?841435&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bash.org/?841435&lt;/a&gt;)
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26850477&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26850477&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-WIP--wine-i386-on-FreeBSD-amd64-tp26693852p26850477.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849951</id>
	<title>[WIP] wine/i386 on FreeBSD/amd64 (take 2)</title>
	<published>2009-12-18T13:27:15Z</published>
	<updated>2009-12-18T13:27:15Z</updated>
	<author>
		<name>David Bruce Naylor</name>
	</author>
	<content type="html">On Tuesday 08 December 2009 15:24:00 David Naylor wrote:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I have developed a port that allows wine to be installed as a package under
&lt;br&gt;&amp;gt; FreeBSD/amd64. &amp;nbsp;This avoids having a i386 chroot environment (and is much
&lt;br&gt;&amp;gt; easier to setup, once the package is built).
&lt;br&gt;&lt;br&gt;I've changes the name of the port (should be obvious what it is for and not 
&lt;br&gt;conflict when wine/amd64 arrives). &amp;nbsp;The port now also automagically determines 
&lt;br&gt;which third party shared libraries should be bundled with it. &amp;nbsp;(See below on 
&lt;br&gt;how to handle nvidia-driver). &amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;gt; To get this working apply the attached patch and build the emulators/wine-
&lt;br&gt;&amp;gt; amd64 port under FreeBSD/i386 then transfer that package to the amd64 host:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (On FreeBSD/i386)
&lt;br&gt;&amp;gt; # cd /usr/ports/emulators
&lt;br&gt;&amp;gt; # patch &amp;lt; /tmp/wine-amd64.diff
&lt;br&gt;&lt;br&gt;(patch name changed, fix arguments)
&lt;br&gt;# patch -sp0 &amp;lt; /tmp/wine-fbsd64.diff
&lt;br&gt;&lt;br&gt;&amp;gt; # cd wine-amd64
&lt;br&gt;&amp;gt; # make package clean
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; (On FreeBSD/amd64)
&lt;br&gt;&amp;gt; # pkg_add wine-amd64-8-1.1.34,1.tbz
&lt;br&gt;&lt;br&gt;(package name changed)
&lt;br&gt;# pkg_add wine-amd64.8-1.1.34,1.tbz
&lt;br&gt;&lt;br&gt;&amp;gt; I have such a package for FreeBSD-8 if anyone is willing to host it.
&lt;br&gt;&lt;br&gt;I'll update the patch when wine-1.1.35 gets into my ports. &amp;nbsp;
&lt;br&gt;&lt;br&gt;&amp;gt; There are a few TODO items (port options not supported). &amp;nbsp;Any
&lt;br&gt;&amp;gt; comments/suggestions are welcome.
&lt;br&gt;&lt;br&gt;1) Install from package on FreeBSD/amd64 (any suggestions on how to do that?)
&lt;br&gt;2) Which version of FreeBSD/amd64 supports FreeBSD/i386 well enough to run 
&lt;br&gt;wine?
&lt;br&gt;3) Any bugs reported?
&lt;br&gt;&lt;br&gt;&amp;gt; Word of warning: nvidia-driver breaks everything. &amp;nbsp;Make sure it is not
&lt;br&gt;&amp;gt; installed on both i386/amd64 systems. &amp;nbsp;If one really wants wine with
&lt;br&gt;&amp;gt; &amp;nbsp;nvidia- driver support then install the beta on both i386 and amd64 (very
&lt;br&gt;&amp;gt; &amp;nbsp;important it is the same version of the driver) and copy libGL.so.1,
&lt;br&gt;&amp;gt; &amp;nbsp;libGLcore.so.1 and libnvidia-tls.so.1 from i386 to $PREFIX/lib32 (on
&lt;br&gt;&amp;gt; &amp;nbsp;amd64).
&lt;br&gt;&lt;br&gt;The above method still does work but now, if one installs nvidia-driver (of 
&lt;br&gt;the correct version) before building wine under FreeBSD/i386 then the required 
&lt;br&gt;libraries will be included (this makes the package unsuitable for any system 
&lt;br&gt;without the correct nvidia drivers installed). &amp;nbsp;
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br&gt;P.S. I've included the shar archive as some people have not been able to apply 
&lt;br&gt;the patch cleanly
&lt;br&gt;&lt;br /&gt;&lt;tt&gt;[wine-fbsd64.diff]&lt;/tt&gt;&lt;br /&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;tt&gt;diff -uNr /usr/ports/emulators/wine/Makefile wine/Makefile
&lt;br&gt;--- /usr/ports/emulators/wine/Makefile	2009-12-08 08:27:51.000000000 +0200
&lt;br&gt;+++ wine/Makefile	2009-12-18 23:17:27.000000000 +0200
&lt;br&gt;@@ -30,12 +30,10 @@
&lt;br&gt;&amp;nbsp;		--without-sane --without-xcursor
&lt;br&gt;&amp;nbsp;CONFIGURE_ENV=	CPPFLAGS=&amp;quot;-I${LOCALBASE}/include&amp;quot; \
&lt;br&gt;&amp;nbsp;		LDFLAGS=&amp;quot;-L${LOCALBASE}/lib&amp;quot;
&lt;br&gt;-USE_LDCONFIG=	${PREFIX}/lib ${PREFIX}/lib/wine
&lt;br&gt;&amp;nbsp;MAKE_JOBS_SAFE=	yes
&lt;br&gt;&amp;nbsp;MAN1=		widl.1 wine.1 winebuild.1 winedbg.1 winedump.1 winegcc.1 \
&lt;br&gt;&amp;nbsp;		winemaker.1 wineprefixcreate.1 wineserver.1 wmc.1 wrc.1
&lt;br&gt;&amp;nbsp;MLINKS=		winegcc.1 wineg++.1
&lt;br&gt;-ONLY_FOR_ARCHS=	i386
&lt;br&gt;&amp;nbsp;USE_BISON=	build
&lt;br&gt;&amp;nbsp;USE_BZIP2=	yes
&lt;br&gt;&amp;nbsp;USE_GMAKE=	yes
&lt;br&gt;@@ -80,10 +78,33 @@
&lt;br&gt;&amp;nbsp;CONFIGURE_ARGS+=	--without-xslt
&lt;br&gt;&amp;nbsp;.endif
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+# TODO: when does FreeBSD/i386 work properly under FreeBSD/amd64?
&lt;br&gt;&amp;nbsp;.if ${OSVERSION} &amp;lt; 603000
&lt;br&gt;&amp;nbsp;IGNORE=		fails to properly work on versions of FreeBSD before 6.3
&lt;br&gt;&amp;nbsp;.endif
&lt;br&gt;&amp;nbsp;
&lt;br&gt;+.ifdef WINE_CROSS_BUILD
&lt;br&gt;+
&lt;br&gt;+CONFIGURE_ENV+=		MACHINE=i386 UNAME_m=i386 UNAME_p=i386
&lt;br&gt;+CONFLICTS=	wine-[0-9]*
&lt;br&gt;+ONLY_FOR_ARCHS=	i386 amd64
&lt;br&gt;+USE_LDCONFIG32=	${PREFIX}/lib32 ${PREFIX}/lib32/wine
&lt;br&gt;+WINELIBDIR=${PREFIX}/lib32
&lt;br&gt;+
&lt;br&gt;+PLIST_REINPLACE+=	winelib
&lt;br&gt;+PLIST_REINPLACE_WINELIB=s!lib/!lib32/!g
&lt;br&gt;+
&lt;br&gt;+ACTUAL-PACKAGE-DEPENDS=${DO_NADA}
&lt;br&gt;+
&lt;br&gt;+.else
&lt;br&gt;+
&lt;br&gt;+CONFLICTS=	wine-fbsd64.*
&lt;br&gt;+ONLY_FOR_ARCHS=	i386
&lt;br&gt;+USE_LDCONFIG=	${PREFIX}/lib ${PREFIX}/lib/wine
&lt;br&gt;+WINELIBDIR=${PREFIX}/lib
&lt;br&gt;+
&lt;br&gt;+.endif
&lt;br&gt;+
&lt;br&gt;&amp;nbsp;post-patch:
&lt;br&gt;&amp;nbsp;.if ${OSVERSION} &amp;lt; 700041
&lt;br&gt;&amp;nbsp;	${REINPLACE_CMD} 's/-lpthread/-lthr/g' ${WRKSRC}/configure
&lt;br&gt;@@ -99,8 +120,8 @@
&lt;br&gt;&amp;nbsp;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;${MAN1PREFIX}/man/fr.UTF-8/man1/wineserver.1
&lt;br&gt;&amp;nbsp;	@-${RMDIR} -p ${MAN1PREFIX}/man/de.UTF-8/man1 \
&lt;br&gt;&amp;nbsp;	 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;${MAN1PREFIX}/man/fr.UTF-8/man1
&lt;br&gt;-	${MV} -f ${PREFIX}/lib/libwine.so.1.0 ${PREFIX}/lib/libwine.so.1
&lt;br&gt;-	${LN} -sf libwine.so.1 ${PREFIX}/lib/libwine.so
&lt;br&gt;+	${MV} -f ${WINELIBDIR}/libwine.so.1.0 ${WINELIBDIR}/libwine.so.1
&lt;br&gt;+	${LN} -sf libwine.so.1 ${WINELIBDIR}/libwine.so
&lt;br&gt;&amp;nbsp;.if !defined(NOPORTDOCS)
&lt;br&gt;&amp;nbsp;	-@${MKDIR} ${DOCSDIR}
&lt;br&gt;&amp;nbsp;.for i in README ANNOUNCE AUTHORS LICENSE
&lt;br&gt;@@ -109,6 +130,23 @@
&lt;br&gt;&amp;nbsp;	@${INSTALL_DATA} ${WRKSRC}/programs/winedbg/README ${DOCSDIR}/README.winedbg
&lt;br&gt;&amp;nbsp;	@${INSTALL_DATA} ${WRKSRC}/tools/winedump/README ${DOCSDIR}/README.winedump
&lt;br&gt;&amp;nbsp;.endif
&lt;br&gt;+.ifdef WINE_CROSS_BUILD
&lt;br&gt;+	grep -v '[@%]' ${TMPPLIST} | sed &amp;quot;s!^!${PREFIX}/!g&amp;quot; | \
&lt;br&gt;+	xargs -n1 file -F' ' | grep ELF | cut -f1 -d' ' | \
&lt;br&gt;+	env LD_LIBRARY_PATH=${PREFIX}/lib32:${LD_LIBRARY_PATH} xargs ldd -f '%p\n' \
&lt;br&gt;+	| sort -u | grep -v '^\(/usr\)\?/lib' | grep -v &amp;quot;^${PREFIX}/lib32/libwine.so&amp;quot; \
&lt;br&gt;+	| grep -v &amp;quot;^${PREFIX}/lib32/wine&amp;quot; &amp;gt; ${WRKDIR}/winelibs.list
&lt;br&gt;+	for i in `cat ${WRKDIR}/winelibs.list` ; do \
&lt;br&gt;+		${INSTALL_DATA} $${i} ${PREFIX}/lib32/ ; \
&lt;br&gt;+		echo lib32/`basename $${i}` &amp;gt;&amp;gt; ${TMPPLIST} ; \
&lt;br&gt;+	done
&lt;br&gt;+	${INSTALL_SCRIPT} ${FILESDIR}/binbounce ${PREFIX}/bin/wine
&lt;br&gt;+	for i in `grep ^bin ${TMPPLIST} | xargs -n1 basename` ; do \
&lt;br&gt;+		[ &amp;quot;$${i}&amp;quot; = &amp;quot;wine&amp;quot; ] || ${LN} -sf wine ${PREFIX}/bin/$${i} ; \
&lt;br&gt;+		echo bin32/$${i} &amp;gt;&amp;gt; ${TMPPLIST} ; \
&lt;br&gt;+	done
&lt;br&gt;+	echo '@unexec rmdir %D/bin32 2&amp;gt;/dev/null || true' &amp;gt;&amp;gt; ${TMPPLIST}
&lt;br&gt;+.endif
&lt;br&gt;&amp;nbsp;	@${MKDIR} ${DESKTOPDIR}
&lt;br&gt;&amp;nbsp;	@${MV} ${DATADIR}/applications/wine.desktop ${DESKTOPDIR}/
&lt;br&gt;&amp;nbsp;	@${ECHO}
&lt;br&gt;diff -uNr /usr/ports/emulators/wine/files/binbounce wine/files/binbounce
&lt;br&gt;--- /usr/ports/emulators/wine/files/binbounce	1970-01-01 02:00:00.000000000 +0200
&lt;br&gt;+++ wine/files/binbounce	2009-12-01 13:54:52.000000000 +0200
&lt;br&gt;@@ -0,0 +1,15 @@
&lt;br&gt;+#!/bin/sh
&lt;br&gt;+
&lt;br&gt;+LOCALBASE=`dirname $0`/..
&lt;br&gt;+BINNAME=`basename $0`
&lt;br&gt;+
&lt;br&gt;+while [ $# -gt 0 ]
&lt;br&gt;+do
&lt;br&gt;+ &amp;nbsp;ARGS=&amp;quot;$ARGS \&amp;quot;$1\&amp;quot;&amp;quot;
&lt;br&gt;+ &amp;nbsp;shift
&lt;br&gt;+done
&lt;br&gt;+
&lt;br&gt;+
&lt;br&gt;+export LD_32_LIBRARY_PATH=$LOCALBASE/lib32:$LOCALBASE/lib32/wine
&lt;br&gt;+export PATH=$LOCALBASE/bin32:$PATH
&lt;br&gt;+eval exec $LOCALBASE/bin32/$BINNAME $ARGS
&lt;br&gt;diff -uNr /usr/ports/emulators/wine-fbsd64/ChangeLog wine-fbsd64/ChangeLog
&lt;br&gt;--- /usr/ports/emulators/wine-fbsd64/ChangeLog	1970-01-01 02:00:00.000000000 +0200
&lt;br&gt;+++ wine-fbsd64/ChangeLog	2009-12-18 23:16:58.000000000 +0200
&lt;br&gt;@@ -0,0 +1,9 @@
&lt;br&gt;+2009/12/18:
&lt;br&gt;+ * Rename to something with a little more sense (wine-amd64-[V] -&amp;gt; wine-fbsd64.[V])
&lt;br&gt;+ * Fix conflicts (wine conflicts with wine-fbsd64)
&lt;br&gt;+
&lt;br&gt;+2009/12/17:
&lt;br&gt;+ * Automatically determine libraries and binaries
&lt;br&gt;+
&lt;br&gt;+2009/12/08:
&lt;br&gt;+ * Initial implementation of WINE/i386 on FreeBSD/amd64 
&lt;br&gt;diff -uNr /usr/ports/emulators/wine-fbsd64/Makefile wine-fbsd64/Makefile
&lt;br&gt;--- /usr/ports/emulators/wine-fbsd64/Makefile	1970-01-01 02:00:00.000000000 +0200
&lt;br&gt;+++ wine-fbsd64/Makefile	2009-12-18 19:44:47.000000000 +0200
&lt;br&gt;@@ -0,0 +1,12 @@
&lt;br&gt;+PORTNAME=	wine
&lt;br&gt;+PKGNAMESUFFIX=	-fbsd64.${OSVERSION:C/([0-9]).*/\1/}
&lt;br&gt;+
&lt;br&gt;+WINE_CROSS_BUILD=yes
&lt;br&gt;+
&lt;br&gt;+MASTERDIR=	${.CURDIR}/../wine
&lt;br&gt;+
&lt;br&gt;+#.if ${ARCH} == &amp;quot;amd64&amp;quot;
&lt;br&gt;+# TODO: install from package (how?)
&lt;br&gt;+#.endif
&lt;br&gt;+
&lt;br&gt;+.include &amp;quot;${MASTERDIR}/Makefile&amp;quot;
&lt;br&gt;&lt;/tt&gt;&lt;hr align=&quot;left&quot; width=&quot;300&quot; /&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (203 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26849951/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-WIP--wine-i386-on-FreeBSD-amd64-tp26693852p26849951.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26833821</id>
	<title>Re: linux-f10-alsa-lib should be updated</title>
	<published>2009-12-17T11:45:29Z</published>
	<updated>2009-12-17T11:45:29Z</updated>
	<author>
		<name>Boris Samorodov</name>
	</author>
	<content type="html">Grzegorz Blach &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26833821&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;magik@...&lt;/a&gt;&amp;gt; writes:
&lt;br&gt;&lt;br&gt;&amp;gt; On fedora servers, curretly is only alsa-lib-1.0.21-2.fc10.i386.rpm,
&lt;br&gt;&amp;gt; there is no more alsa-lib-1.0.21-1.fc10.i386.rpm, so port should be
&lt;br&gt;&amp;gt; updated.
&lt;br&gt;&lt;br&gt;Fixed, thanks.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;WBR, bsam
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26833821&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26833821&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/linux-f10-alsa-lib-should-be-updated-tp26771982p26833821.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26829749</id>
	<title>VirtualBox: killing DMA</title>
	<published>2009-12-17T07:29:03Z</published>
	<updated>2009-12-17T07:29:03Z</updated>
	<author>
		<name>David Bruce Naylor</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I am having problems where network I/O on a FreeBSD guest within VirtualBox 
&lt;br&gt;ends up killing the host. &amp;nbsp;Here is my setup:
&lt;br&gt;&lt;br&gt;Host: FreeBSD 8 RC2 /amd64
&lt;br&gt;Guest: FreeBSD-current (~week old) /i386
&lt;br&gt;VirtualBox: virtualbox-3.0.51.r22902_2 (bridged to my dc0)
&lt;br&gt;&lt;br&gt;I've tried multiple configurations all resulting in the same problem. &amp;nbsp;The 
&lt;br&gt;most conservative configuration:
&lt;br&gt;&lt;br&gt;Machine: VT disabled
&lt;br&gt;Host: hw.ata.ata_dma=0, hw.ata.atapi_dma=0 (safe mode didn't work)
&lt;br&gt;Guest: safe mode
&lt;br&gt;VirtualBox: VT and APIC disabled
&lt;br&gt;&lt;br&gt;I can cause the problem by doing (in the guest):
&lt;br&gt;&lt;br&gt;# mount -t smbfs //server/tmp /mnt
&lt;br&gt;# dd if=/mnt/big_file of=/tmp bs=1k
&lt;br&gt;&lt;br&gt;The error messages on the host are:
&lt;br&gt;ad8: FAILED - load data
&lt;br&gt;ad8: setting up DMA failed
&lt;br&gt;g_vfs_done(): ad8s1d[WRITE(offset=65536, length=2048)]error = 5
&lt;br&gt;...
&lt;br&gt;(many g_vfs_done messages, with different partition, offset and length)
&lt;br&gt;...
&lt;br&gt;panic: initiate_write_inodeblock_ufs2: already started
&lt;br&gt;&lt;br&gt;If I disable the network interface (from VirtualBox for the guest) then I 
&lt;br&gt;cannot produce the above. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;&lt;br&gt;David
&lt;br&gt;&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;signature.asc&lt;/strong&gt; (203 bytes) &lt;a href=&quot;http://old.nabble.com/attachment/26829749/0/signature.asc&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/VirtualBox%3A-killing-DMA-tp26829749p26829749.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26829094</id>
	<title>Re: Wine on FreeBSD/amd64</title>
	<published>2009-12-17T06:47:39Z</published>
	<updated>2009-12-17T06:47:39Z</updated>
	<author>
		<name>wonko-2</name>
	</author>
	<content type="html">On Wed, Dec 16, 2009 at 10:57:56PM +0000, Sam Fourman Jr. wrote:
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; i could only get the alias to work if i changed by shell to bash so
&lt;br&gt;&amp;gt; now I use this in my ~/.bashrc
&lt;br&gt;&lt;br&gt;I get the same exact error with bash. So I must be missing something else.
&lt;br&gt;&lt;br&gt;-brian
&lt;br&gt;-- 
&lt;br&gt;&amp;quot;Coding in C is like sending a 3 year old to do groceries. You gotta
&lt;br&gt;tell them exactly what you want or you'll end up with a cupboard full of
&lt;br&gt;pop tarts and pancake mix.&amp;quot; -- IRC User (&lt;a href=&quot;http://www.bash.org/?841435&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bash.org/?841435&lt;/a&gt;)
&lt;br&gt;_______________________________________________
&lt;br&gt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26829094&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation@...&lt;/a&gt; mailing list
&lt;br&gt;&lt;a href=&quot;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://lists.freebsd.org/mailman/listinfo/freebsd-emulation&lt;/a&gt;&lt;br&gt;To unsubscribe, send any mail to &amp;quot;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26829094&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;freebsd-emulation-unsubscribe@...&lt;/a&gt;&amp;quot;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Wine-on-FreeBSD-amd64-tp26818775p26829094.html" />
</entry>

</feed>
