2010年12月20日月曜日

ubuntuにUT-VPNをインストールメモ

UT-VPN
http://utvpn.tsukuba.ac.jp/ja/


utvpn-src-unix-v101-7101-public-2010.06.27.tar.gz
をダウンロード,解凍
./configureでLinux,32bitを選択
make
エラーが出る.
In file included from src/Mayaqua/Cfg.c:90: 
./src/Mayaqua/Mayaqua.h:219:31: error: readline/readline.h: No such file or directory

./src/Mayaqua/Mayaqua.h:220:30: error: readline/history.h: No such file or directory 

Mayaqua.hからreadline.hとhistory.hをコメントアウト
(コメントアウトしていいのかは不明,今のとこちゃんと?動いてるのでこれでいいやという感じ)
libreadline-devをインストールしてないから上のエラーがでるので,先にインストールする.

sslとreadlineのライブラリがないと怒られるので
apt-get install libssl-dev libreadline-dev

これでmakeは通るはず
そのあとmake install

起動スクリプトの作成
http://www.softether.co.jp/jp/vpn2/manual/web/7-3.aspx
ここのを参考にデーモンのパスを変更
/etc/init.d/vpnserverへ


#!/bin/sh
# chkconfig: 2345 99 01
# description: PacketiX VPN Server 2.0
DAEMON=/usr/bin/utvpnserver/
LOCK=/var/lock/subsys/vpnserver
test -x $DAEMON || exit 0
case "$1" in
start)
$DAEMON start
touch $LOCK
;;
stop)
$DAEMON stop
rm $LOCK
;;
restart)
$DAEMON stop
sleep 3
$DAEMON start
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit 0


/var/lock/subsysディレクトリを作成
必要な/etc/rc*.d/にリンクを作成
これで電源入れたときに自動起動してくれるはず

起動したら後はwindowで設定可能
ExeOnlyってのをダウンロードすれば管理ツールのみ含まれてるはず

参考サイト
http://catalina.exblog.jp/11503500/
http://a-p-memo.blogspot.com/2010/06/ubuntuut-vpn.html



2010年5月24日月曜日

サンシャイン牧場:作物,動物データ20100524

なんとなく更新.
自動化プログラムはこちらー>http://nichts1007.blogspot.com/2009/11/blog-post.html

畜産データ
http://spreadsheets.google.com/pub?key=tSFXeK031Yvzmt-3Sjhv1Gw&single=true&gid=0&output=html


畑データ
http://spreadsheets.google.com/pub?key=tyY6VTQfSUtsC6veaGCXqEg&output=html

2010年4月25日日曜日

ZFSインストールメモ

cents5.4でzfs-fuseのインストールメモ
http://www.itmedia.co.jp/enterprise/articles/0806/27/news052.html

wget http://download.berlios.de/zfs-fuse/zfs-fuse-0.5.0.tar.bz2

bzip2 -dc zfs-fuse-0.5.0.tar.bz2 | tar xvf -


tar zxvf scons-1.3.0.tar.gz
cd scons-1.3.0
python setup.py install

yum install gcc
 yum install libaio-devel
yum -y install zlib-devel
yum install fuse fuse-libs fuse-devel

cd zfs-fuse-0.5.0/src
scons
scons install
zfs-fuse