2006-01-01から1年間の記事一覧

Xbox Live

MTUでエラーhttp://support.microsoft.com/default.aspx?scid=kb%3Bja%3B908874Xbox Live が正常に機能するには、次のポートを使用できる必要があります。 • UDP 88 • UDP 3074 • TCP 3074 →このポートをフィルタリングしない設定

IPスプーフィング攻撃

http://www.rtpro.yamaha.co.jp/RT/FAQ/IP-Filter/network-security-filter.html スプーフィングip filter 10 reject 10.0.0.0/8 * * * * ip filter 20 reject * 10.0.0.0/8 * * * IPスプーフィング攻撃である「始点IPアドレスがクラスAのプライベートアドレ…

減色ツール Yukari

http://omoikane.my-sv.net/soft.htm きれいに減色できる。コマンドラインありディザリング

Subclipse

cvsプラグインとほぼ同様の使用感

ランレベル

http://www.atmarkit.co.jp/flinux/rensai/linuxtips/156whatrunlv.html 0 シャットダウン(システムの停止) 1 シングルユーザーモード(rootのみ) 2 ネットワークなしのマルチユーザーモード 3 通常のマルチユーザーモード(テキストログイン) 4 未使用 …

chkconfig

/sbin/chkconfig --level 235 postfix on/sbin/chkconfig --level 2 sendmail off /sbin/chkconfig --level 3 sendmail off /sbin/chkconfig --level 4 sendmail off /sbin/chkconfig --level 5 sendmail off chkconfig --list chkconfig --add■参考chkconfig…

perl エスケープ ¥

perl 超・基礎講座 http://homepage1.nifty.com/typhoon/at-cgi/perl_c1.html 注意する文字列 スクリプト 結果 $hello = "はじめてのCGI@nifty"; print $hello; Literal @nifty now requires backslash at C:\temp\copal.pl line 1, within string Execution…

java gc オプション

チューニングのためのJavaVM講座(後編) http://www.atmarkit.co.jp/fjava/rensai3/javavm02/javavm02_2.html java gc オプション -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:+PrintHeapAtGC -XX:+PrintHeapAtGC 出力例 [ParNew 159652K->143718K(255…

qmail メールアドレスのユーザの割り当て

qmail メールアドレスのユーザの割り当て http://www.big.or.jp/~mio/it-old/qm/ref/qm_ref_qmail-users_5.html/var/qmail/users/assignより明確なワイルドカード指定は、より不明確な指定より優先します。また、単純な指定は、どんなワイルドカード指定より…

vlan

http://ja.wikipedia.org/wiki/VLANレイヤ3スイッチ IP層http://www.atmarkit.co.jp/fwin2k/network/tcpip009/tcpip02.htmlネットワークの物理的な配線方法を変えずに、自由に論理的なネットワーク(ブロードキャスト・ドメイン)を構築することができるhttp…

BTS

kagemai 状態の変更がリプライをつけることでしかできないのが×→mantisをいれてみる参考URL http://www.alles.or.jp/~sogabe/mantis/PHP 4.06以上 MySQL 3.23.2以上 (他のデータベースのサポートも2.0?で計画されています) Webサーバ (ApacheやIISなど)

ntpd

ntpdはサーバでありクライアント自動起動の設定 # /sbin/chkconfig --list ntpd ntpd 0:off 1:off 2:on 3:on 4:on 5:on 6:offvi /etc/ntp.conf# -- CLIENT NETWORK ------- restrict 192.168.3.0 mask 255.255.255.0 nomodify notrap# --- OUR TIMESERVERS -…

Excel Diff

Excel Diff http://www.suntrap-systems.com/これでcvsと連携できるとかなり使えるかも

Ant cvs log

cygwinのcvsだとログインの部分で失敗するJun 5 23:34:38 xxx cvs: login refused for /xxx/xxx/xxx/xxx^Mwincvs日本語版のcvs.exeを使用するとうまくいった

最大n件

grep -m 1 -e foo

OR条件

grep - (ひ)メモ -eを複数書くとORになるんすね。 $ cat grep -e foo -e bar > 1 foo aiueo > 2 bar kakikukeko > 3 baz sasisuseso > 4 qux tatituteto > EOF 1 foo aiueo 2 bar kakikukeko

パターンに一致しない

UNIXコマンド - grep -v パターンに一致しない行を表示する 絞込む場合

- で始まるパターン

- で始まるパターンをgrepする場合は-eオプションを使う grep -e '---- ' [ファイル名]