ASAHIネットがDS-Lite対応したので、 自宅の適当なLinuxルーターにて設定しようとして詰まったAFTR取得に関するメモ。
Linuxルーターを使ってる人向けのニッチなものだけど、情報として残しておく。
ASAHIネットがDS-Lite対応したので、 自宅の適当なLinuxルーターにて設定しようとして詰まったAFTR取得に関するメモ。
Linuxルーターを使ってる人向けのニッチなものだけど、情報として残しておく。
#!/bin/bash | |
# chkconfig: 2345 90 60 | |
### BEGIN INIT INFO | |
# Provides: rps | |
# Required-Start: $local_fs $remote_fs $network $syslog | |
# Required-Stop: $local_fs $remote_fs $network $syslog | |
# Default-Start: 2 3 4 5 | |
# Default-Stop: 0 1 6 | |
# Short-Description: enable rps config for ubuntu | |
# Description: enabele rps which is a kernel tweak for network performance |
<?php | |
/** | |
* PHP Deep Copy | |
* @version 3.1.1: | |
* _zval_id_accurate now receives its zval pool instead of having it static. | |
* if is_ref and zval_id are available | |
* in PHP core, we will use them. | |
* otherwise, we will use PHP based implementations of these | |
* functions. | |
* |
#!/bin/bash | |
export THEOS=/opt/theos | |
# clone theos.git | |
cd /opt | |
git clone git://github.com/DHowett/theos.git | |
# clone iphoneheaders.git | |
cd $THEOS | |
mv include include.bak |