Ich lass meinen Homeserver bei BOINC mit rechnen und will das bei jedem Systemstart BOINC auch automatisch geladen wird. Dafür habe ich nen Script gefunden, dass aber noch nicht 100% meine Bedürfnisse abdeckt.
Code: Alles auswählen
#!/bin/sh
# /etc/init.d/boinc_client
# Start/stop/restart
test -x /home/BOINC/boinc || exit 0
case "$1" in
start)
echo "Starting BOINC."
cd "/home/BOINC" && exec ./boinc --allow_remote_gui_rpc --deamon &
;;
stop)
echo "Stopping BOINC."
killall boinc
;;
restart)
killproc boinc
sleep 2
cd "/home/BOINC" && exec ./boinc --allow_remote_gui_rpc --deamon &
;;
*)
echo "Usage: /etc/init.d/boinc_client {start|stop|restart}"
exit 2
esac
exit 0
Kann mir wer helfen?
MfG und danke schonmal
» blade