up

インストール と 設定

送信

” noip-duc-linux.tar.gz ” を 送る

$ scp noip-duc-linux.tar.gz fdopstm@192.168.24.9:/home/fdopstm/
Password: 
noip-duc-linux.tar.gz                         100%  131KB 131.0KB/s   00:00 

動いているのか?

以下で確認

$ ssh -l fdopstm 192.168.24.9
Password: 
$ su -
Password: 
# ps ax | grep no-ip | grep -v grep

実際は 動いているのです

# ps ax | grep noip | grep -v grep
  312 ?        S      0:00 /usr/local/bin/noip2

”noip”で 探さないと いけないのです、 まあそれはそれで

No-IP Linux DUC が インストールされてる 確認

古いかもしれないが インストールされている 筈なんですが?

# ls /usr/local/bin/ | grep noip
noip2*
# ls /usr/local/etc/ | grep no-ip
no-ip2.conf

インストールされています

退避

現在のもの 退避させます

# cd /usr/local/bin/
# mv noip2 noip2_v_2.1.6 
# cd /usr/local/etc/
# mv no-ip2.conf no-ip2.conf_v_2.1.6

展開

送られてきたものを 解凍 (チン、 展開 )します。

# cp /home/fdopstm/noip-duc-linux.tar.gz .
# tar zxvf noip-duc-linux.tar.gz 
./._noip-2.1.9-1
noip-2.1.9-1/
noip-2.1.9-1/._binaries
noip-2.1.9-1/binaries/
noip-2.1.9-1/binaries/._noip2-i686
noip-2.1.9-1/binaries/noip2-i686
noip-2.1.9-1/binaries/._noip2-x86_64
noip-2.1.9-1/binaries/noip2-x86_64
noip-2.1.9-1/._COPYING
noip-2.1.9-1/COPYING
noip-2.1.9-1/._debian.noip2.sh
noip-2.1.9-1/debian.noip2.sh
noip-2.1.9-1/._gentoo.noip2.sh
noip-2.1.9-1/gentoo.noip2.sh
noip-2.1.9-1/._LEEME.PRIMERO
noip-2.1.9-1/LEEME.PRIMERO
noip-2.1.9-1/._LIESMICH.ERST.deutsch
noip-2.1.9-1/LIESMICH.ERST.deutsch
noip-2.1.9-1/._LISEZMOI.ENPREMIER
noip-2.1.9-1/LISEZMOI.ENPREMIER
noip-2.1.9-1/._mac.osx.startup
noip-2.1.9-1/mac.osx.startup
noip-2.1.9-1/._Makefile
noip-2.1.9-1/Makefile
noip-2.1.9-1/._noip2.c
noip-2.1.9-1/noip2.c
noip-2.1.9-1/._README.FIRST
noip-2.1.9-1/README.FIRST
noip-2.1.9-1/._README.FIRST-SWE
noip-2.1.9-1/README.FIRST-SWE
noip-2.1.9-1/._README.FIRST.FRANCAIS
noip-2.1.9-1/README.FIRST.FRANCAIS
noip-2.1.9-1/._README.FIRST.ITALIANO
noip-2.1.9-1/README.FIRST.ITALIANO
noip-2.1.9-1/._README.FIRST.JAPANESE
noip-2.1.9-1/README.FIRST.JAPANESE
noip-2.1.9-1/._README.FIRST.pt_BR
noip-2.1.9-1/README.FIRST.pt_BR
noip-2.1.9-1/._README.FIRST_PT
noip-2.1.9-1/README.FIRST_PT
noip-2.1.9-1/._redhat.noip.sh
noip-2.1.9-1/redhat.noip.sh
# cd noip-2.1.9-1/

make

”make”作成しませう

# make
gcc -Wall -g -Dlinux -DPREFIX=\"/usr/local\" noip2.c -o noip2 

make install と設定

最後に 設定を 含めて

# make install
# make install
if [ ! -d /usr/local/bin ]; then mkdir -p /usr/local/bin;fi
if [ ! -d /usr/local/etc ]; then mkdir -p /usr/local/etc;fi
cp noip2 /usr/local/bin/noip2
/usr/local/bin/noip2 -C -c /tmp/no-ip2.conf

Auto configuration for Linux client of no-ip.com.

Please enter the login/email string for no-ip.com  
Please enter the login/email string for no-ip.com  non-sumi@excite.co.jp
Please enter the password for user 'non-sumi@excite.co.jp'  
Please enter the password for user 'non-sumi@excite.co.jp'  ************

Only one host [nyanta.no-ip.info] is registered to this account.
It will be used.
Please enter an update interval:[30]  
Do you wish to run something at successful update?[N] (y/N)  N

New configuration file '/tmp/no-ip2.conf' created.

mv /tmp/no-ip2.conf /usr/local/etc/no-ip2.conf

これで 終わったのですが 後 起動関連

自動起動

計算機 起動時に 動かすように しておきます

# cd /etc/rc.d/
# ls /etc/rc.d/ | grep noip
rc.noip2*
# grep noip2  rc.local 
if [ -x /etc/rc.d/rc.noip2 ]; then
    /etc/rc.d/rc.noip2 start
# ps ax | grep noip
  312 ?        S      0:00 /usr/local/bin/noip2
# kill 312
# ps ax | grep noip
# shutdown -r now

にゃんたろう 拝!

2008年12月15日 (月) 21:52:30 JST 作成


up

Copyright © 2004.-2008. nyantarou All Rights Reserved.