Re: The booting process stops at the line mounting root ufs /dev/md0

2008-12-24 Thread Manolis Kiagias
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? What

Re: The Booting Process

2003-12-24 Thread Jerry McAllister
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

Re: The Booting Process

2003-12-24 Thread Daan Vreeken [PA4DAN]
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. You

RE: The Booting Process

2003-12-24 Thread fbsd_user
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

Re: The Booting Process

2003-12-24 Thread Kevin D. Kinsey, DaleCo, S.P.
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,