Eu usei o sysvinit
guia de Jonas Friedmann .
- Faça o download e descompacte o DUC No-IP:
wget https://www.noip.com/client/linux/noip-duc-linux.tar.gz
etar -xf noip-duc-linux.tar.gz --exclude='._*'
(exclui dotfiles do Mac) - Crie e instale:
cd noip-x.y
(onde xy é a versão)
make
(erros aqui podem significar que você está perdendo pacotes de compilação)
sudo make install
-
Crie o arquivo
/etc/init.d/noip
com estes conteúdos:#!/bin/sh ### BEGIN INIT INFO # Provides: noip # Required-Start: $local_fs $network $syslog # Required-Stop: $local_fs $network $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: no-ip DUC # Description: Update DNS for dynamic IP on noip.com ### END INIT INFO NAME="noip" PATH="/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin" APPDIR="/" APPBIN="/usr/local/bin/noip2" PIDFILE="/var/run/${NAME}-customservice.pid" # Include functions set -e . /lib/lsb/init-functions start() { printf "Starting '$NAME'... " start-stop-daemon --start --background --make-pidfile --pidfile "$PIDFILE" --chdir "$APPDIR" --exec "$APPBIN" || true printf "done\n" } #We need this function to ensure the whole process tree will be killed killtree() { local _pid=$1 local _sig=${2-TERM} for _child in $(ps -o pid --no-headers --ppid ${_pid}); do killtree ${_child} ${_sig} done kill -${_sig} ${_pid} } stop() { printf "Stopping '$NAME'... " [ -z 'cat "$PIDFILE" 2>/dev/null' ] || \ while test -d /proc/$(cat "$PIDFILE"); do killtree $(cat "$PIDFILE") 15 sleep 0.5 done [ -z 'cat "$PIDFILE" 2>/dev/null' ] || rm "$PIDFILE" printf "done\n" } status() { "$APPBIN" -S } configure() { "$APPBIN" -C } case "$1" in start) start ;; stop) stop ;; restart) stop start ;; status) status ;; configure) configure ;; *) echo "Usage: $NAME {start|stop|restart|status|configure}" >&2 exit 1 ;; esac exit 0
(usei
sudo vim /etc/init.d/noip
.) - Torne-o executável:
sudo chmod a+x /etc/init.d/noip
- Ativar:
sudo update-rc.d noip defaults
- Configure:
sudo service noip configure
- Iniciar:
sudo service noip start
- Verifique:
sudo service noip status
O feedback é bem-vindo.