Xrhstaras wrote:
> The booting process stops at the line mounting root ufs /dev/md0
>
> (Starting with the option for no acpi )
>
>
>
We really need more info to be able to help you...
Is this booting off from the CD? What version of FreeBSD?
Any specific reason you are booting without ACPI?
gffds fsdff wrote:
Is there a way, when booting, to have an application launch?
Ex:
exec /usr/servers/bots/zDSBot3/zDSBot3 &
Where would I add this line, if possible? If not, would it be possible
to be made in the next version?
Thanks,
- A Guy
Just get your bot into the FreeBSD core
system, a
Yes there is just such a place
Your launch script should look like this.
File name some-name.sh
#!/bin/sh
exec /usr/servers/bots/zDSBot3/zDSBot3 &
put it in /usr/local/etc/rc.d/
The permission on this script file must be read, write, exec for
owner root.
Chmod 700 /usr/local/etc/rc.d/some-n
On Thursday 25 December 2003 00:25, gffds fsdff wrote:
> Is there a way, when booting, to have an application launch?
> Ex:
> exec /usr/servers/bots/zDSBot3/zDSBot3 &
Have a look at /usr/local/etc/rc.d
All scripts that are executable and end in ".sh" in that directory get
executed at boot-time. Yo
>
> Is there a way, when booting, to have an application launch?
>
> Ex:
> exec /usr/servers/bots/zDSBot3/zDSBot3 &
>
> Where would I add this line, if possible? If not, would it be possible to be
> made in the next version?
See man rc(8).
jerry
>
> Thanks,
>
> - A Guy
>
_