linux下安装花生壳


参考来源:

http://blog.sina.com.cn/s/blog_6c9d65a10101anp0.html#cmt_2231599

http://service.oray.com/question/116.html

一、下载

http://www.oray.com/peanuthull/download_linux.php


解压:

phddns-2.0.5.19225.tar.gz
tar zxvf phddns-2.0.5.19225.tar.gz


二.配置编译环境(如已配置过可以忽略)

sudo apt-get install gcc  
sudo apt-get install g++
sudo apt-get install autoconf
sudo apt-get install automake
sudo apt-get install build-essential


三.编译安装

[root@localhost phddns-2.0.2.16556]# aclocal
[root@localhost phddns-2.0.2.16556]# autoconf
[root@localhost phddns-2.0.2.16556]# automake
[root@localhost phddns-2.0.2.16556]# ./configure
[root@localhost phddns-2.0.2.16556]# make
[root@localhost phddns-2.0.2.16556]# cd src

注意:aclocal的时候可能会提示configure.ini 文件名不对,需要的是configure.ac,这时候只需要将名字该一下就可一继续了

mv configure.ini configure.ac

到src目录,执行

cp phddns /usr/bin/

  运行:/usr/bin/phddns

  Please input service address(press ENTER use phservice2.oray.net): #直接回车;

  Please input username(press ENTER use ):#输入用户名;

  之后输入密码即可。                         

  这是会在/etc/生成: phlinux.conf配置文件

  配置开机启动:

  sudo vim /etc/rc.local

  添加一句:

  /usr/bin/phddns -c /etc/phlinux.conf -d  

  #-d 表示后台进程

  #-c 运行配置文件

done


你可能感兴趣的:(linux下安装花生壳)