Differenze

Queste sono le differenze tra la revisione selezionata e la versione attuale della pagina.

Link a questa pagina di confronto

Entrambe le parti precedenti la revisioneRevisione precedente
Prossima revisione
Revisione precedente
installazione_zoneminder_1.24_su_ubuntu_9.04 [2009/04/28 11:52] marcoinstallazione_zoneminder_1.24_su_ubuntu_9.04 [2014/07/03 14:57] (versione attuale) – modifica esterna 127.0.0.1
Linea 73: Linea 73:
   make install   make install
  
 +===== Post Install  =====
 +
 +==== Install cambozola.jar ====
 +
 +  cd /usr/src
 +
 +  wget http://www.charliemouse.com:8080/code/cambozola/cambozola-latest.tar.gz
 +
 +  tar -xzvf cambozola-latest.tar.gz
 +
 +  cp cambozola-0.70/dist/cambozola.jar /var/www
 +
 +==== Remove existing index.html  ====
 +
 +  rm /var/www/index.html
 +
 +==== Make sure ZoneMinder starts automatically  ====
 +
 +  nano -w /etc/init.d/zm
 +
 +
 +  #!/bin/sh
 +  # description: Control ZoneMinder as a Service
 +  # chkconfig: 2345 99 99
 +  
 +  # Source function library.
 +  #. /etc/rc.d/init.d/functions
 +  
 +  prog=ZoneMinder
 +  ZM_PATH_BIN="/usr/local/bin"
 +  command="$ZM_PATH_BIN/zmpkg.pl"
 +  
 +  start() {
 +          echo -n "Starting $prog: "
 +        $command start
 +        RETVAL=$?
 +        [ $RETVAL = 0 ] && echo success
 +        [ $RETVAL != 0 ] && echo failure
 +        return $RETVAL
 +  }
 +  stop() {
 +        echo -n "Stopping $prog: "
 +        $command stop
 +        RETVAL=$?
 +        [ $RETVAL = 0 ] && echo success
 +        [ $RETVAL != 0 ] && echo failure
 +  }
 +  status() {
 +        result=`$command status`
 +        if [ "$result" = "running" ]; then
 +                echo "ZoneMinder is running"
 +                RETVAL=0
 +        else
 +                echo "ZoneMinder is stopped"
 +                RETVAL=1
 +        fi
 +  }
 +  
 +  case "$1" in
 +  'start')
 +        start
 +        ;;
 +  'stop')
 +        stop
 +        ;;
 +  'restart')
 +        stop
 +        start
 +        ;;
 +  'status')
 +        status
 +        ;;
 +  *)
 +        echo "Usage: $0 { start | stop | restart | status }"
 +        RETVAL=1
 +        ;;
 +  esac
 +  exit $RETVAL
 +
 +Rendiamo /etc/init.d/zm eseguibile: 
 +
 +  chmod 755 /etc/init.d/zm
 +
 +Usiamo "sysvconfig" per configurare ZM
 +
 +**riavviamo il sistema**