Quote (cbagger01 @ Jan. 22 2006,22:58) |
Does adding: mount /mnt/hda1 (or equivalent device location) to your /opt/bootlocal.sh help? |
Code Sample |
/dev/hdaX /share/foo ext3 defaults 0 0 |
Quote (cbagger01 @ Jan. 23 2006,12:20) |
KNOPPIX/DSL does not automatically mount all partitions listed in /etc/fstab My advice is if you want better timing, include all functions in your /opt/bootlocal.sh In other words: mount /mnt/hda1 ... pause ... start samba services ... pause ... call the open source perl script & You will probably need to place the call to the script as a background process by adding an "&" character at the end of the line or otherwise your /opt/bootlocal.sh will never finish executing until after your perl script is complete. |