NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
InterClaw
May 19, 2016Aspirant
Prevent CrashPlan service from starting automatically on reboot
When you reboot the NAS, CrashPlan is set to start its service, right? It will do so even if I manually stopped it with "./CrashPlanEngine stop" before rebooting, correct? How do I prevent it fro...
- May 19, 2016
If disable isn't available, then I'd either try chmod or break the symlink. You should be able to create a new symlink later on.
StephenB
May 19, 2016Guru - Experienced User
I think update-rc.d crashplan disable should work, using update-rc.d crashplan enable to reverse.
Alternatively you could try chmod -x /etc/init.d/crashplan, using chmod +x /etc/init.d/crashplan to reverse.
InterClaw
May 19, 2016Aspirant
Running your first suggestion, I got this result:
usage: update-rc.d [-n] [-f] <basename> remove update-rc.d [-n] <basename> defaults [NN | sNN kNN] update-rc.d [-n] <basename> start|stop NN runlvl [runlvl] [...] . -n: not really -f: force
So I tried this:
update-rc.d crashplan remove
... and then it said this:
update-rc.d: /etc/init.d/crashplan exists during rc.d purge (use -f to force)
Not sure if I should do this. What do you think Stephen? Maybe something should be changed in /etc/init.d/crashplan instead? It looks like this:
#!/bin/sh
# Linux Standard Base comments
### BEGIN INIT INFO
# Provides: CrashPlanEngine
# Required-Start: $local_fs $network $remote_fs
# Required-Stop: $local_fs $network $remote_fs
# Should-Start:
# Should-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: CrashPlan Engine
# Description: CrashPlan backup service engine
### END INIT INFO
#############################################################
# Init script for CrashPlanEngine
#############################################################
# Defaults
SCRIPTNAME=/usr/local/crashplan/bin/CrashPlanEngine
case "$1" in
start)
$SCRIPTNAME start
;;
stop)
$SCRIPTNAME stop
;;
restart)
$SCRIPTNAME restart
;;
force-reload)
$SCRIPTNAME force-reload
;;
status)
$SCRIPTNAME status
;;
*)
echo "Usage: $0 <start|stop|restart|force-reload|status>" >&2
exit 3
;;
esac
exit 0
Related Content
NETGEAR Academy
Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!