Hi,
I am a total newbie to Linux, and have muddled my way through installing ipkg sucessfully using the tutorial. However, I am not able to auto-mount on startup.
I can mount to a file using command :
mount -o loop /tmp/harddisk/core.aes /opt
But I cannot get it to mount at boot.
The post-boot file I am using is as below:
#!/bin/sh
# wait for /opt to mount
mount -o loop /tmp/harddisk/core.aes /opt
i=0
while [ $i -le 30 ]
do
if [ -d /opt/etc ]
then
break
fi
sleep 1
i=`expr $i + 1`
done
# Activate swap
swapon /tmp/harddisk/swap.aes
# Run all active services - active means starts with S
/opt/etc/init.d/rc.unslung
Which is from the tutorial, but modified with the "Mount" code that I know works when typed into PuTTY.
Can anyone please help me - cos at the mo I've got a WL-HDD that I can't use proprtly with either of my windows computers

Thanks in advance!!
Mike