Quote Originally Posted by hal2k1 View Post
The parameter 180 in the rc.local file means 180*5 = 900 seconds = 15 minutes, does it not?
Yes, it's 15 minutes. It's hard to tell sometimes if the HDD is spinning or not. I find the best way is by feel or by putting my ear on it.

Quote Originally Posted by hal2k1 View Post
I'm keen to try at least the ctorrent_1.3.4-dnh1-1_mipsel.ipk package from the openmss project, but I'm not sure how to proceed on that front.
To test whether or not the packages worked, I did the steps below. Don't take them too literally, I'm recalling them from memory, but they should help guide you in the right direction.

1. Unpack the .ipk file with ar -x on a linux box
2. Copy the data.tgz file to /shares/MYVOLUME1/MYSHARE1
3. Unpack the data.tgz file (tar xvzf data.tgz)
4. Add opt/bin to your path
export PATH=/shares/MYVOLUME1/MYSHARE1/opt/bin:${PATH}
5. Add opt/lib to your LD_LIBRARY_PATH
export LD_LIBRARY_PATH=${LD_LIBRARY_PATH}:/shares/MYVOLUME1/MYSHARE1/opt/lib
6. Run your binary

Steps 4 and 5 will have to be repeated every time you login. This is annoying, so I plan to integrate these steps into my next image.

- K.C.