Monitorare la banda con BitmeterOS: differenze tra le versioni

mNessun oggetto della modifica
Riga 10: Riga 10:
<pre>
<pre>
# dpkg -i bitmeteros_0.7.3-amd64.deb
# dpkg -i bitmeteros_0.7.3-amd64.deb
</pre>
=== Correzioni agli script in /etc/init.d ===
Gli script <tt>bitmeter</tt> e <tt>bitmeterweb</tt> presenti in <tt>/etc/init.d</tt> non hanno la corretta definizione dei parametri LSB e generano degli warning ogni volta che viene eseguito <tt>update-rc</tt>. Occorre aprirli e inserire all'inizio del file le seguenti righe:
* <tt>'''/etc/init.d/bitmeter'''</tt>:
<pre>
#!/bin/sh
# chkconfig: 235 99 10
# description: Start or stop the Bitmeter server
#
### BEGIN INIT INFO
# Provides: bitmeter
# Required-Start: $network $syslog $munin
# Required-Stop: $network $munin
# Default-Start: 2 3 5
# Default-Stop: 0 1 6
# Description: Start or stop the Bitmeter server
### END INIT INFO
</pre>
* <tt>'''/etc/init.d/bitmeter'''</tt>:
#!/bin/sh
# chkconfig: 235 99 10
# description: Start or stop the Bitmeter web interface
#
### BEGIN INIT INFO
# Provides: bitmeter
# Required-Start: $network $syslog $munin $bitmeter
# Required-Stop: $network $munin
# Default-Start: 2 3 5
# Default-Stop: 0 1 6
# Description: Start or stop the Bitmeter web interface
### END INIT INFO
</pre>
</pre>