How to install no-ip update client on Linux Mint?

How to install no-ip.com update client noip2 on Linux Mint 17?

First, install the noip2 client:

sudo su -
cd /usr/local/src
wget http://www.no-ip.com/client/linux/noip-duc-linux.tar.gz
tar xzf noip-duc-linux.tar.gz
cd no-ip-2.1.9-1
make
make install

Then, generate the configuration file

noip2 -C

Last, make noip2 daemon run at reboot

crontab -e

Add this line to crontab:

@reboot /usr/local/bin/noip2

I’ve followed the instructions right up to ‘make install’ but then get the error:

gcc -Wall -g -Dlinux -DPREFIX=”/usr/local” noip2.c -o noip2
noip2.c:136:19: fatal error: stdio.h: No such file or directory
#include <stdio.h>

               ^

compilation terminated.
make: *** [noip2] Error 1

I’m new to Linux running Linux Mint 17.1 Rebecca.
If you have a solution I’d appreciate the help.

Thanks.


You system may not have some packages, you may try to install them by

sudo apt-get install libc-dev g++ build-essential

Similar Posts

  • Cannot connect QEMU guest os with vncviewer

    The question is as follows. harry@debian:~/workshop1/qemu_test/version1/test$ qemu-system-x86_64 -hda qcow2.img -cdrom domU-x86_64-FS.img -boot d -m 1024 VNC server running on `::1:5900′ harry@debian:~/workshop1/qemu_test/version1/test$ vncviewer 127.0.0.1:1 vncviewer: ConnectToTcpAddr: connect: Connection refused Unable to connect to VNC server Solution (add -vnc parameter for qemu-system-x86_64): harry@debian:~/workshop1/qemu_test/version1/test$ qemu-system-x86_64 -hda qcow2.img -cdrom domU-x86_64-FS.img -boot d -m 1024 -vnc 127.0.0.1:2 harry@debian:~/workshop1/qemu_test/version1/test$ vncviewer 127.0.0.1:2…

  • SetProxy: 一个设置IE代理的命令行小工具

    IE的代理设置用起来并不方便,我自己而言就要经常更改代理服务器,相信很多人有跟我相同的需要。使用C++编写了一个小程序SetProxy调用Win32 API来设置代理服务器IP,用起来方便多了。 编译后为一个可运行console程序,将它放在\windows\system32目录下,使用时只要运行 SetProxy IP:port 就可以把IP设置好,如果要关闭代理,只需运行 SetProxy “” 命令行中运行,界面较土,但用着方便。可以考虑设置几个快捷方式在桌面或者工具栏,点击即设置代理,其它方式发挥想象。 程序下载地址. 源代码也放在这里,希望有需要的人可以用得上 ;) 源代码下载地址. 这是一份有些年头的代码, 如果你在较新的编译器下编译这个项目, 请先做[[setproxy-一个设置ie代理的小工具#comment-995|这里所述的小修改]]. — Eric on Apr. 9, 2014. Read more: Making Emacs Start Up Faster Profiling Vim to Find Out Which Plugin Makes Vim Slow Handling Sparse Files on Linux Spring Shell Technology For Java development Vim Tutorial for Beginners: vimtutor…

3 Comments

Leave a Reply

Your email address will not be published. Required fields are marked *