Hello.
To install No-IP, download the package from the official website, extract the content, compile, and install it
sudo make sudo make install
During the installation, you will be asked which network card to use (in case of a Wi-Fi card as well), to enter the email address and password of your account, and for which host you want to update the IP address.
To start it
sudo /usr/local/bin/noip2
To have it start automatically, create a script in /etc/init.d/
sudo nano /etc/init.d/scriptname
with this content:
case "$1" in start) echo "Start NoIP" /usr/local/bin/noip2 ;; stop) echo "Stop NoIP" killall noip2 ;; *) echo "Usage:"
echo "/etc/init.d/noip {start/stop}" exit 1 ;; esac exit 0
Make the script executable
sudo chmod 755 /etc/init.d/scriptname
To manually start the script and therefore the program
sudo /etc/init.d/scriptname start
To stop it
sudo /etc/init.d/scriptname stop
To use it at login (and therefore start the program automatically)
sudo update-rc.d scriptname defaults
To remove the automatic startup
sudo update-rc.d -f scriptname remove
Bye!
! :) !