树莓派实现花生壳客户端

made by Rk

本文由浙江大学《嵌入式系统》课程提供强力支持。

感谢翁恺老师 @翁恺BA5AG

/*************************************************************/


参考资料:http://service.oray.com/question/116.html


为了方便,我直接通过sudo su进入了superuser模式。

1、安装依赖包

apt-get install autoconf automake


2、下载phddns

wget http://download.oray.com/peanuthull/phddns-2.0.2.16556.tar.gz

3、解压phddns:

tar zxvf phddns-2.0.2.16556.tar.gz
树莓派实现花生壳客户端_第1张图片
依次输入以下命令编译安装:

cd phddns-2.0.2.16556
aclocal
autoconf
automake
./configure
make

4、配置:

需要在http://www.oray.com进行注册。

cd src
./phddns
输入服务器地址,如无特殊情况可使用默认值
Enter server address(press ENTER use phlinux3.oray.net):

输入您的Oray帐号名称
Enter your Oray account:

对应的Oray帐号密码
Password:

选择帮定的网卡,如无特殊,默认即可
Network interface(s):
eth0:192.168.141.18
lo:127.0.0.1
Choose one(default eth0):

选择日志保存到哪个文件
Log to use(default /var/log/phddns.log):

保存配置文件,选择yes则直接保存到/etc/phlinux.conf,输入other可以指定文件
Save to configuration file (/etc/phlinux.conf)?(yes/no/other):

接下来程序将已交互模式开始运行
192.168.141.18
NIC bind success
OnStatusChanged okConnecting
OnStatusChanged okDomainListed
OnDomainRegistered skyvense22.gicp.net
OnStatusChanged okDomainsRegistered
UserType: 0
看到上面这些就表示登录成功,这个时候可以按ctrl+c先退出程序




5、将phddns拷贝到bin文件夹以便程序快速执行:

cp phddns /usr/bin/

6、以后台模式启动花生壳并检查运行情况:

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


7、将花生壳加到系统启动时运行:

nano /etc/rc.local

在末尾加上:

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

树莓派实现花生壳客户端_第2张图片


你可能感兴趣的:(树莓派实现花生壳客户端)