VirtualBox error if kernel module loader in /boot/loader.conf (WAS Re: Loading kernel modules for virtualbox via script)

Leslie Jensen leslie at eskk.nu
Tue Dec 22 23:47:33 UTC 2009



>
> Sorry for my rush on the previous post. Here is a better script:
> ----------------------------------------------------------
> #!/bin/sh
> #
> # $FreeBSD: src/etc/rc.d/vbox,v 1.0 2009/12/22 20:20:06 mlobo Exp $
> #
>
> # PROVIDE: vbox
> # REQUIRE: LOGIN
> # KEYWORD: nojail
>
> . /etc/rc.subr
>
> name="vbox"
> start_cmd="${name}_start"
> stop_cmd=":"
>
> vboxm_start()
> {
>          /sbin/kldload vboxnetflt
>          /sbin/kldload vboxnetadp
> }
>
> vbox_start()
> {
> 	if checkyesno vbox_enable; then
> 		echo ' VirtualBox modules'
> 		vboxm_start
> 	fi
> }
>
> load_rc_config $name
> run_rc_command "$1"
>
> -------------------------------------------------------
>
> You have to place vbox_enable="YES" on /etc/rc.conf

Thank you Mario.

This works fine, module loaded and VirtualBox VM starts with no error :-)

/Les


More information about the freebsd-emulation mailing list