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.
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.





Reply With Quote