> my problem is very basic, but i do not find a solution:
>
> I am using the init script from http://web.infoave.net/~dsill/lwq.html
>
> I created a link in rc3.d. But when starting the system the error : Could
> not found such file or directory occurs. It's when the system tries to
load
> S80qmail. But the file is correctly linked. And i do not see any errors
in
> the file. Where is my mistake???
Well, try:
cat /etc/rc.d/rc[runlevel]/S80qmail
from the command line, chances are that it will display the file just
fine, telling you that it is in fact linked correctly. Then, let's look at
the pertinant lines from the script:
case "$1" in
start)
echo -n "Starting qmail: svscan"
cd /var/qmail/supervise
Does "/var/qmail/supervise" exists?
env - PATH="$PATH" svscan &
echo $! > /var/run/svscan.pid
does /var/run exist?
You can see the strategy here, that should at least help you find the
source of the error, and then it should be much easier to remedy.
steve