thank you very much for that tutorial!
but I have 3 questions about the post-boot file.
1 -> can somebody explain what actually this code does ? :
Code:
#Wait for /opt to mount
mount /dev/discs/disc0/part1 /opt
i=0
while [ $i -le 30 ]
do
if [ -d /opt/etc ]
then
break
fi
sleep 1
i=`expr $i + 1`
done
2->and this ?
Code:
# Run all active services - active means starts with S
/opt/etc/init.d/rc.unslung
my partition of my harddrive is mounted in /opt
so I guess the directory "init.d" does not exist ?
and the file "rc.unslung" does not exist?
3-> how can we check that EVERYTHING that is in the post-boot file has been executed correctly?
Thanks for your precious help!