Page 1 of 1

disablew bw monitor

Posted: Mon Jan 27, 2020 3:21 pm
by SirSWE
I'm using wndr3700 on gargoyle 1.11.
I putted these commands
/etc/init.d/bwmon_gargoyle stop
/etc/init.d/bwmon_gargoyle disable
in
rc.local
saved and rebooted and still dosn't work. Whats wrong?

Re: disablew bw monitor

Posted: Mon Jan 27, 2020 4:21 pm
by RomanHK
In practice, you should just run the second command directly from cmd and restart the router:

Code: Select all

/etc/init.d/bwmon_gargoyle disable && reboot -f
... and the commands you have before exit0? It should be as follows:

Code: Select all

# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.
/etc/init.d/bwmon_gargoyle stop
/etc/init.d/bwmon_gargoyle disable
exit 0

Re: disablew bw monitor

Posted: Mon Jan 27, 2020 5:19 pm
by SirSWE
Ok cool, I have to edit the exit 0 at the end. But shall i run the first command you mentioned in putty or a reboot is enough?

Re: disablew bw monitor

Posted: Tue Jan 28, 2020 1:01 am
by RomanHK
SirSWE wrote:But shall i run the first command you mentioned in putty or a reboot is enough?
This command will make the service not start when the router starts and the && will reboot the router.