I had CCX running beautifully on my new linux server, sharing directories streaming data the whole bit....
Then one day I had a power surge knock it out and now I get squat.
Well actually no matter what I tell it to share when I launch the relax test client, which used to read it beautifully, I get one folder with "..."
Specs:
AMD 2000
2x250GB HD
Vector Linux 4.0 no gui
This is my ccx init.d script
| CODE |
#!/bin/sh # Begin /etc/init.d/
# # Include the functions declared in the /etc/rc.d/functions file source /etc/rc.d/functions
# path to binary ROOT="/usr/sbin" # name of binary to run APP="ccxstream" #runtime options OPT="-f -F /var/run/ccxstream.pid -r /mnt/raid/ -S movies=/mnt/raid/movies -S music=/mnt/raid/music -S pics=/mnt/raid/pics -S tv=/mnt/raid/tv -S DVArchive=/mnt/raid/DVArchive" #server name SERVER="CCX Steam"
case "$1" in start) echo -n "Starting $SERVER........." loadproc $ROOT/$APP $OPT ;;
stop) echo -n "Stopping $SERVER........." killproc $ROOT/$APP ;;
reload) echo -n "Reloading $SERVER........" reloadproc $ROOT/$APP ;;
restart) $0 stop /bin/sleep 1 $0 start ;;
status) statusproc $APP ;;
*) echo "Usage: $0 {start|stop|reload|restart|status}" exit 1 ;;
esac
# End /etc/init.d/
|
Any help in this matter would be great thx <